]> git.donarmstrong.com Git - roundcube.git/blob - plugins/redundant_attachments/config.inc.php.dist
Imported Upstream version 0.6+dfsg
[roundcube.git] / plugins / redundant_attachments / config.inc.php.dist
1 <?php
2
3 // By default this plugin stores attachments in filesystem
4 // and copies them into sql database.
5 // In environments with replicated database it is possible
6 // to use memcache as a fallback when write-master is unavailable.
7 $rcmail_config['redundant_attachments_memcache'] = false;
8
9 // When memcache is used, attachment data expires after
10 // specied TTL time in seconds (max.2592000). Default is 12 hours.
11 $rcmail_config['redundant_attachments_memcache_ttl'] = 12 * 60 * 60;
12
13 ?>