diff options
Diffstat (limited to 'config/defaults.inc.php')
-rw-r--r-- | config/defaults.inc.php | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/config/defaults.inc.php b/config/defaults.inc.php index ab0e188bd..b4c0206ca 100644 --- a/config/defaults.inc.php +++ b/config/defaults.inc.php @@ -252,6 +252,10 @@ $config['enable_installer'] = false; // don't allow these settings to be overriden by the user $config['dont_override'] = array(); +// define which settings should be listed under the 'advanced' block +// which is hidden by default +$config['advanced_prefs'] = array(); + // provide an URL where a user can get support for this Roundcube installation // PLEASE DO NOT LINK TO THE ROUNDCUBE.NET WEBSITE HERE! $config['support_url'] = ''; @@ -272,10 +276,10 @@ $config['user_aliases'] = false; // use this folder to store log files (must be writeable for apache user) // This is used by the 'file' log driver. -$config['log_dir'] = 'logs/'; +$config['log_dir'] = RCUBE_INSTALL_PATH . 'logs/'; // use this folder to store temp files (must be writeable for apache user) -$config['temp_dir'] = 'temp/'; +$config['temp_dir'] = RCUBE_INSTALL_PATH . 'temp/'; // expire files in temp_dir after 48 hours // possible units: s, m, h, d, w |