123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687 |
- <?php
-
-
-
- $config = array();
-
-
- include_once("/etc/roundcube/debian-db-roundcube.php");
-
-
-
-
-
-
-
-
-
-
-
- $config['default_host'] = array("ssl://{{ webmail_domain }}:993");
-
-
-
-
-
-
-
-
-
-
-
- $config['smtp_server'] = 'tls://{{ webmail_domain }}';
-
-
-
- $config['smtp_port'] = 587;
-
-
-
- $config['smtp_user'] = '%u';
-
-
-
- $config['smtp_pass'] = '%p';
-
-
-
- $config['support_url'] = 'https://www.{{ domain }}';
-
-
- $config['product_name'] = 'Webmail {{ domain }}';
-
-
-
-
-
- $config['des_key'] = '{{ lookup('password', secret + '/' + 'roundcube_des_key length=24') }}';
-
-
-
- $config['plugins'] = array(
- 'zipdownload',
- 'managesieve'
- );
-
-
- $config['skin'] = 'larry';
-
-
-
-
- $config['enable_spellcheck'] = false;
|