[Web] Fix Autodiscover issue with Outlook 2019, fixes #2300
commit
96c2b92455
|
@ -8,10 +8,10 @@ if(file_exists('inc/vars.local.inc.php')) {
|
|||
$autodiscover_config = array_merge($default_autodiscover_config, $autodiscover_config);
|
||||
|
||||
header('Content-type: application/json');
|
||||
if ($_GET['Protocol'] == 'ActiveSync') {
|
||||
if (strtolower($_GET['Protocol']) == 'activesync') {
|
||||
echo '{"Protocol":"ActiveSync","Url":"' . $autodiscover_config['activesync']['url'] . '"}';
|
||||
}
|
||||
elseif ($_GET['Protocol'] == 'AutodiscoverV1') {
|
||||
elseif (strtolower($_GET['Protocol']) == 'autodiscoverv1') {
|
||||
echo '{"Protocol":"AutodiscoverV1","Url":"https://' . $_SERVER['HTTP_HOST'] . '/Autodiscover/Autodiscover.xml"}';
|
||||
}
|
||||
else {
|
||||
|
|
Loading…
Reference in New Issue