forked from pool/roundcubemail
a329948fc3
roundcubemail-config_dir.patch to avoid additional roundtrip times with each submission OBS-URL: https://build.opensuse.org/package/show/server:php:applications/roundcubemail?expand=0&rev=146
14 lines
555 B
Diff
14 lines
555 B
Diff
Index: roundcubemail-1.4.8/program/include/iniset.php
|
|
===================================================================
|
|
--- roundcubemail-1.4.8.orig/program/include/iniset.php
|
|
+++ roundcubemail-1.4.8/program/include/iniset.php
|
|
@@ -28,7 +28,7 @@ if (!defined('INSTALL_PATH')) {
|
|
}
|
|
|
|
if (!defined('RCMAIL_CONFIG_DIR')) {
|
|
- define('RCMAIL_CONFIG_DIR', getenv('ROUNDCUBE_CONFIG_DIR') ?: (INSTALL_PATH . 'config'));
|
|
+ define('RCMAIL_CONFIG_DIR', getenv('ROUNDCUBE_CONFIG_DIR') ?: '/etc/roundcubemail');
|
|
}
|
|
|
|
if (!defined('RCUBE_LOCALIZATION_DIR')) {
|