| | |
| | | // For possible values see installer or http://php.net/manual/en/function.openlog.php |
| | | $config['syslog_facility'] = LOG_USER; |
| | | |
| | | // Activate this option if logs should be written to per-user directories. |
| | | // Data will only be logged if a directry <log_dir>/<username>/ exists and is writable. |
| | | $config['per_user_logging'] = false; |
| | | |
| | | // Log sent messages to <log_dir>/sendmail or to syslog |
| | | $config['smtp_log'] = true; |
| | | |
| | |
| | | // 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'] = ''; |
| | |
| | | |
| | | // 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 |
| | |
| | | |
| | | // Enables display of email address with name instead of a name (and address in title) |
| | | $config['message_show_email'] = false; |
| | | |
| | | // Default behavior of Reply-All button: |
| | | // 0 - Reply-All always |
| | | // 1 - Reply-List if mailing list is detected |
| | | $config['reply_all_mode'] = 0; |