mirror of
https://github.com/roundcube/roundcubemail.git
synced 2026-02-24 19:41:19 +01:00
* fix phpstan "Implicit array creation" in plugin config files * update minimal "roundcube/plugin-installer" version
17 lines
648 B
Plaintext
17 lines
648 B
Plaintext
<?php
|
|
|
|
$config = [];
|
|
|
|
// By default this plugin stores attachments in filesystem
|
|
// and copies them into sql database.
|
|
// 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.
|
|
// -----------------------------------------------------------
|
|
$config['database_attachments_cache'] = 'db';
|
|
|
|
// Attachment data expires after specified TTL time in seconds (max.2592000).
|
|
// Default is 12 hours.
|
|
$config['database_attachments_cache_ttl'] = 12 * 60 * 60;
|