Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/roundcube/roundcubemail.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAleksander Machniak <alec@alec.pl>2019-05-26 12:50:33 +0300
committerAleksander Machniak <alec@alec.pl>2019-05-26 12:50:33 +0300
commitfdac30e54429cf31ebecda784ed2fe8935c23626 (patch)
tree017ae0d9c25b57f4b74567c8a5183ec41a281fd7 /plugins
parent2a25f1778bd0cf96a08cb655fe5af335ca55767b (diff)
Support PECL memcached extension as a session and cache storage driver (experimental)
Diffstat (limited to 'plugins')
-rw-r--r--plugins/database_attachments/config.inc.php.dist4
-rw-r--r--plugins/redundant_attachments/config.inc.php.dist4
2 files changed, 2 insertions, 6 deletions
diff --git a/plugins/database_attachments/config.inc.php.dist b/plugins/database_attachments/config.inc.php.dist
index b4464343c..2686bd091 100644
--- a/plugins/database_attachments/config.inc.php.dist
+++ b/plugins/database_attachments/config.inc.php.dist
@@ -2,7 +2,7 @@
// By default this plugin stores attachments in filesystem
// and copies them into sql database.
-// You can change it to use 'memcache', 'redis' or 'apc'.
+// You can change it to use 'memcache', 'memcached', 'redis' or 'apc'.
// -----------------------------------------------------------
// WARNING: Remember to set max_allowed_packet in database or
// config to match with expected max attachment size.
@@ -12,5 +12,3 @@ $config['database_attachments_cache'] = 'db';
// Attachment data expires after specied TTL time in seconds (max.2592000).
// Default is 12 hours.
$config['database_attachments_cache_ttl'] = 12 * 60 * 60;
-
-?>
diff --git a/plugins/redundant_attachments/config.inc.php.dist b/plugins/redundant_attachments/config.inc.php.dist
index b66d304c4..a8d0426ee 100644
--- a/plugins/redundant_attachments/config.inc.php.dist
+++ b/plugins/redundant_attachments/config.inc.php.dist
@@ -7,12 +7,10 @@
// WARNING: Remember to also set memcache_max_allowed_packet or redis_max_allowed_packet
// in config to match with expected maximum attachment size.
// -------------------------------------------------------------------------------------
-// This option can be set to 'memcache' or 'redis'.
+// This option can be set to 'memcache', 'memcached' or 'redis'.
// Don't forget to set redis_*/memcache_* options in Roundcube config file.
$config['redundant_attachments_fallback'] = false;
// Attachment data expires after specified TTL time in seconds (max.2592000).
// Default is 12 hours.
$config['redundant_attachments_cache_ttl'] = 12 * 60 * 60;
-
-?>