roundcube/rootfs/etc/confd/templates/config.inc.php.tmpl

26 lines
659 B
Cheetah
Raw Normal View History

2016-07-13 15:07:43 +00:00
<?php
$config = array();
$config['db_dsnw'] = '{{getenv "DATABASEDSN"}}';
$config['log_driver'] = 'syslog';
$config['default_host'] = '{{getenv "IMAPHOST"}}';
$config['smtp_server'] = '{{getenv "SMTPHOST"}}';
$config['smtp_port'] = 587;
$config['smtp_user'] = '%u';
$config['smtp_pass'] = '%p';
$config['use_https'] = true;
$config['des_key'] = '{{getenv "KEY"}}';
$config['cipher_method'] = '{{getenv "CIPHERMETHOD"}}';
$config['mail_domain'] = '%t';
$config['password_charset'] = 'UTF-8';
$config['plugins'] = array('managesieve', 'password', 'archive', 'zipdownload');
$config['spellcheck_engine'] = 'pspell';
$config['default_charset'] = 'UTF-8';