12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788 |
- <?php
-
-
-
- $config = array();
-
-
-
-
-
-
-
- $config['db_dsnw'] = 'sqlite:////data/roundcube/sqlite.db?mode=0664';
-
-
-
-
-
-
-
-
-
-
-
- $config['default_host'] = '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'] = '';
-
-
- $config['product_name'] = 'Roundcube Webmail';
-
-
-
-
-
- $config['des_key'] = 'fwef42cna12wefew9fewfmac';
-
-
- $config['plugins'] = array(
- 'archive',
- 'zipdownload',
- 'managesieve',
- 'carddav',
- );
-
-
- $config['skin'] = 'larry';
|