diff options
author | Aleksander Machniak <alec@alec.pl> | 2013-05-29 10:50:02 (GMT) |
---|---|---|
committer | Aleksander Machniak <alec@alec.pl> | 2013-05-29 10:50:02 (GMT) |
commit | abb7ec1a168ac313c45c14a8bbd1477206bd8d71 (patch) | |
tree | 71c33a9ef5f05b1466266f9aef1a8dd6f1a24ca5 /config | |
parent | ad9b5530aad39c81d7f978acf192382930e75462 (diff) | |
download | iRony-abb7ec1a168ac313c45c14a8bbd1477206bd8d71.tar.gz |
Replace CacheAPC with rcube_cache_shared (Bug #1894)
Improve login process, do not require kolab_auth plugin
Diffstat (limited to 'config')
-rw-r--r-- | config/dav.inc.php.sample | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/config/dav.inc.php.sample b/config/dav.inc.php.sample index 59cb765..4c43fc3 100644 --- a/config/dav.inc.php.sample +++ b/config/dav.inc.php.sample @@ -33,3 +33,12 @@ $rcmail_config['kolab_dav_debug'] = false; // User agent string written to kolab storage MIME messages $rcmail_config['useragent'] = 'Kolab DAV Server libkolab/' . RCUBE_VERSION; +// Roundcube plugins. Not all are supported here. +$rcmail_config['kolabdav_plugins'] = array('kolab_auth'); + +// Type of Auth cache. Supported values: 'db', 'apc' and 'memcache'. +// Note: This is only for username canonification map. +$rcmail_config['kolabdav_auth_cache'] = 'apc'; + +// lifetime of the Auth cache, possible units: s, m, h, d, w +$rcmail_config['kolabdav_auth_cache_ttl'] = '1h'; |