diff options
author | Thomas Bruederli <thomas@roundcube.net> | 2014-08-07 17:06:16 +0200 |
---|---|---|
committer | Thomas Bruederli <thomas@roundcube.net> | 2014-08-07 17:06:16 +0200 |
commit | 561f5e0a22a16ab39d9bc8b9e4e2cdbd6abaa954 (patch) | |
tree | b1c00a1e74f22b98495ac05293bd8ebe8c5a85a9 /config/defaults.inc.php | |
parent | f954922c03e30bfe06b60f35336f9274fa45ee4e (diff) |
Describe new config options
Diffstat (limited to 'config/defaults.inc.php')
-rw-r--r-- | config/defaults.inc.php | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/config/defaults.inc.php b/config/defaults.inc.php index 625d4ea80..b5a6d422a 100644 --- a/config/defaults.inc.php +++ b/config/defaults.inc.php @@ -66,6 +66,10 @@ $config['log_driver'] = 'file'; // (read http://php.net/manual/en/function.date.php for all format characters) $config['log_date_format'] = 'd-M-Y H:i:s O'; +// length of the session ID to prepend each log line with +// set to 0 to avoid session IDs being logged. +$config['log_session_id'] = 8; + // Syslog ident string to use, if using the 'syslog' log driver. $config['syslog_id'] = 'roundcube'; @@ -181,6 +185,10 @@ $config['imap_force_ns'] = false; // Note: Because the list is cached, re-login is required after change. $config['imap_disabled_caps'] = array(); +// Log IMAP session identifers after each IMAP login. +// This is used to relate IMAP session with Roundcube user sessions +$config['imap_log_session'] = false; + // Type of IMAP indexes cache. Supported values: 'db', 'apc' and 'memcache'. $config['imap_cache'] = null; |