Browse Source

[SOGo] Disable autodiscover-json for EAS when disabled

andryyy 5 years ago
parent
commit
3d48620980
1 changed files with 1 additions and 1 deletions
  1. 1 1
      data/web/autodiscover-json.php

+ 1 - 1
data/web/autodiscover-json.php

@@ -8,7 +8,7 @@ if(file_exists('inc/vars.local.inc.php')) {
 $autodiscover_config = array_merge($default_autodiscover_config, $autodiscover_config);
 $autodiscover_config = array_merge($default_autodiscover_config, $autodiscover_config);
 
 
 header('Content-type: application/json');
 header('Content-type: application/json');
-if (strtolower($_GET['Protocol']) == 'activesync') {
+if (strtolower($_GET['Protocol']) == 'activesync' && getenv('SKIP_SOGO') != "y") {
   echo '{"Protocol":"ActiveSync","Url":"' . $autodiscover_config['activesync']['url'] . '"}';
   echo '{"Protocol":"ActiveSync","Url":"' . $autodiscover_config['activesync']['url'] . '"}';
 }
 }
 elseif (strtolower($_GET['Protocol']) == 'autodiscoverv1') {
 elseif (strtolower($_GET['Protocol']) == 'autodiscoverv1') {