Files
roundcubemail/plugins/database_attachments/config.inc.php.dist
Aleksander Machniak f0398c87d9 Use rcube_cache class to store attachments in database.
Add options to configure TTL and cache type.
2013-06-13 14:16:00 +02:00

13 lines
376 B
Plaintext

<?php
// By default this plugin stores attachments in filesystem
// and copies them into sql database.
// You can change it to use 'memcache' or 'apc'.
$rcmail_config['database_attachments_cache'] = 'db';
// Attachment data expires after specied TTL time in seconds (max.2592000).
// Default is 12 hours.
$rcmail_config['database_attachments_cache_ttl'] = 12 * 60 * 60;
?>