summaryrefslogtreecommitdiff
path: root/config
diff options
context:
space:
mode:
authorThomas Bruederli <thomas@roundcube.net>2013-06-05 09:10:08 +0200
committerThomas Bruederli <thomas@roundcube.net>2013-06-05 09:10:08 +0200
commit42de33c7dee0dc48e54d317eefd4dac18c317e42 (patch)
treecb2c793151edcbddb1229f5b09d8c75a1d3768c4 /config
parent9749da9fcc149266323df7dd2b8fb9406e37ca1b (diff)
Add option to use PHP's native session save handlers
Diffstat (limited to 'config')
-rw-r--r--config/main.inc.php.dist5
1 files changed, 3 insertions, 2 deletions
diff --git a/config/main.inc.php.dist b/config/main.inc.php.dist
index 898d96bf3..709e5cdac 100644
--- a/config/main.inc.php.dist
+++ b/config/main.inc.php.dist
@@ -254,9 +254,10 @@ $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'
+// Backend to use for session storage. Can either be 'db' (default), 'memcache' or 'php'
+// 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
+// Setting this value to 'php' will use the default session save handler configured in PHP
$rcmail_config['session_storage'] = 'db';
// Use these hosts for accessing memcached