Rename the webmails directory

This commit is contained in:
kaiyou
2017-11-04 18:48:22 +01:00
parent edbea372e9
commit f22194d78b
9 changed files with 0 additions and 0 deletions

View File

@@ -0,0 +1,45 @@
<?php
$config = array();
// Generals
$config['db_dsnw'] = 'sqlite:////data/roundcube.db';
$config['des_key'] = getenv('SECRET_KEY');
$config['identities_level'] = 3;
$config['reply_all_mode'] = 1;
// List of active plugins (in plugins/ directory)
$config['plugins'] = array(
'archive',
'zipdownload',
'markasjunk',
'managesieve'
);
// Mail servers
$config['default_host'] = 'front';
$config['default_port'] = 10143;
$config['smtp_server'] = 'front';
$config['smtp_port'] = 10025;
$config['smtp_user'] = '%u';
$config['smtp_pass'] = '%p';
// Sieve script management
$config['managesieve_host'] = 'imap';
$config['managesieve_usetls'] = true;
// We access the IMAP and SMTP servers locally with internal names, SSL
// will obviously fail but this sounds better than allowing insecure login
// from the outter world
$ssl_no_check = array(
'ssl' => array(
'verify_peer' => false,
'verify_peer_name' => false,
),
);
$config['imap_conn_options'] = $ssl_no_check;
$config['smtp_conn_options'] = $ssl_no_check;
$config['managesieve_conn_options'] = $ssl_no_check;
// skin name: folder from skins/
$config['skin'] = 'larry';