1
0
mirror of https://github.com/mailcow/mailcow-dockerized.git synced 2025-01-10 04:18:10 +02:00

Update autodiscover.php

This commit is contained in:
André Peters 2017-02-13 07:52:12 +01:00 committed by GitHub
parent a6c6e34fe9
commit 7668f82566

View File

@ -1,4 +1,5 @@
<?php
ini_set('error_reporting', '0');
$config = array(
'useEASforOutlook' => 'yes',
'autodiscoverType' => 'activesync',
@ -25,7 +26,9 @@ if ($config['useEASforOutlook'] == 'no') {
}
}
require_once 'inc/vars.inc.php';
include_once 'inc/vars.local.inc.php';
if(file_exists('inc/vars.local.inc.php')) {
include_once 'inc/vars.local.inc.php';
}
require_once 'inc/functions.inc.php';
$dsn = "$database_type:host=$database_host;dbname=$database_name";