| | |
| | | // 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; |
| | | |
| | |
| | | |
| | | // 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 |