summaryrefslogtreecommitdiff
path: root/config
diff options
context:
space:
mode:
authorAleksander Machniak <alec@alec.pl>2012-08-20 09:32:25 +0200
committerAleksander Machniak <alec@alec.pl>2012-08-20 09:32:25 +0200
commitae7027de029e28fdd3894efe919b6171b2b11eab (patch)
treed2a83feb13621c5122d671dc9827ae3e2b38b0b3 /config
parentc8f35a17e645ec7328557846b976e38432c9a062 (diff)
Added session_path config option and unified cookies settings in javascript
Diffstat (limited to 'config')
-rw-r--r--config/main.inc.php.dist7
1 files changed, 5 insertions, 2 deletions
diff --git a/config/main.inc.php.dist b/config/main.inc.php.dist
index 1e9c1fdcd..8d615f3b0 100644
--- a/config/main.inc.php.dist
+++ b/config/main.inc.php.dist
@@ -241,12 +241,15 @@ $rcmail_config['display_version'] = false;
// must be greater than 'keep_alive'/60
$rcmail_config['session_lifetime'] = 10;
-// session domain: .example.org
+// Session domain: .example.org
$rcmail_config['session_domain'] = '';
-// session name. Default: 'roundcube_sessid'
+// Session name. Default: 'roundcube_sessid'
$rcmail_config['session_name'] = null;
+// Session path. Defaults to PHP session.cookie_path setting.
+$rcmail_config['session_path'] = null;
+
// Backend to use for session storage. Can either be 'db' (default) or 'memcache'
// If set to memcache, a list of servers need to be specified in 'memcache_hosts'
// Make sure the Memcache extension (http://pecl.php.net/package/memcache) version >= 2.0.0 is installed