Add autodiscover and autoconfig

This commit is contained in:
andryyy
2016-12-21 12:16:05 +01:00
parent 036d547415
commit 49e09d3ca0
5 changed files with 85 additions and 4 deletions

View File

@@ -5,17 +5,17 @@ $config = array(
'useEASforOutlook' => 'yes',
'autodiscoverType' => 'activesync',
'imap' => array(
'server' => 'MAILCOW_HOST.MAILCOW_DOMAIN',
'server' => $mailcow_hostname,
'port' => '993',
'ssl' => 'on',
),
'smtp' => array(
'server' => 'MAILCOW_HOST.MAILCOW_DOMAIN',
'server' => $mailcow_hostname,
'port' => '465',
'ssl' => 'on'
),
'activesync' => array(
'url' => 'https://MAILCOW_HOST.MAILCOW_DOMAIN/Microsoft-Server-ActiveSync'
'url' => 'https://' . $mailcow_hostname . '/Microsoft-Server-ActiveSync'
)
);
// If useEASforOutlook == no, the autodiscoverType option will be replaced to imap.