ansible/roles/roundcube/templates/local.php.j2

13 lines
263 B
Django/Jinja

<?php
$config["domain"] = "{{ mail_domain }}";
$config["product_name"] = "foo.sh - Webmail";
$config["plugins"] = array(
"database_attachments",
);
$config['database_attachments_cache'] = 'db';
$config['database_attachments_cache_ttl'] = 12 * 60 * 60;
?>