diff options
author | Aleksander Machniak <alec@alec.pl> | 2014-06-16 12:40:27 +0200 |
---|---|---|
committer | Aleksander Machniak <alec@alec.pl> | 2014-06-16 14:15:54 +0200 |
commit | 702ce09f892f8d9de45e69b3ef042ebea749576a (patch) | |
tree | 9bc194cbfe927a0627cf926b53e64c08393911c6 /config | |
parent | ee83a48d04ee033c1430e2c1e8feb03641916509 (diff) |
Add notes about messages_cache setting requirements (#1489946)
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 cdddb4319..3a892cea3 100644 --- a/config/defaults.inc.php +++ b/config/defaults.inc.php @@ -173,6 +173,9 @@ $config['imap_auth_pw'] = null; $config['imap_cache'] = null; // Enables messages cache. Only 'db' cache is supported. +// This requires an IMAP server that supports QRESYNC and CONDSTORE +// extensions (RFC7162). See synchronize() in program/lib/Roundcube/rcube_imap_cache.php +// for further info, or if you experience syncing problems. $config['messages_cache'] = false; // Lifetime of IMAP indexes cache. Possible units: s, m, h, d, w |