Merge pull request #507 from mildred/parametrize-hosts

roundcube: fix host parametrization
master
kaiyou 6 years ago committed by GitHub
commit 8ec31df139
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -18,16 +18,19 @@ $config['plugins'] = array(
'enigma'
);
$front = getenv('FRONT_ADDRESS') ? getenv('FRONT_ADDRESS') : 'front';
$imap = getenv('IMAP_ADDRESS') ? getenv('IMAP_ADDRESS') : 'imap';
// Mail servers
$config['default_host'] = getenv('FRONT_ADDRESS') || 'front';
$config['default_host'] = $front;
$config['default_port'] = 10143;
$config['smtp_server'] = getenv('FRONT_ADDRESS') || 'front';
$config['smtp_server'] = $front;
$config['smtp_port'] = 10025;
$config['smtp_user'] = '%u';
$config['smtp_pass'] = '%p';
// Sieve script management
$config['managesieve_host'] = getenv('IMAP_ADDRESS') || 'imap';
$config['managesieve_host'] = $imap;
$config['managesieve_usetls'] = false;
// We access the IMAP and SMTP servers locally with internal names, SSL

Loading…
Cancel
Save