diff options
author | Thomas Bruederli <thomas@roundcube.net> | 2013-08-15 20:12:25 +0200 |
---|---|---|
committer | Thomas Bruederli <thomas@roundcube.net> | 2013-08-15 20:12:25 +0200 |
commit | 8d2963a4bf916d047cb0aebd825588a5e20b838f (patch) | |
tree | 6c582156f0f249a727c5edef0ad506df1636ac98 /config | |
parent | c380ac4e03fcd7439cee3829688152796a871636 (diff) |
Make session auth cookie name configurable
Diffstat (limited to 'config')
-rw-r--r-- | config/defaults.inc.php | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/config/defaults.inc.php b/config/defaults.inc.php index eedb816e2..f48827eb9 100644 --- a/config/defaults.inc.php +++ b/config/defaults.inc.php @@ -294,6 +294,9 @@ $config['session_domain'] = ''; // Session name. Default: 'roundcube_sessid' $config['session_name'] = null; +// Session authentication cookie name. Default: 'roundcube_sessauth' +$config['session_auth_name'] = null; + // Session path. Defaults to PHP session.cookie_path setting. $config['session_path'] = null; |