fix path check

master
Marcel Hofer 2019-02-27 23:16:23 +01:00
parent fa80d66d6c
commit 965577c5d8
1 changed files with 2 additions and 2 deletions

View File

@ -57,8 +57,8 @@ elseif (isset($_GET['login'])) {
}
// do not check for admin-login / sogo-sso for EAS and DAV requests, SOGo can check auth itself if no authorization header is set
elseif (
strcasecmp(substr($_SERVER['HTTP_X_ORIGINAL_URI'], 0, 28), "/Microsoft-Server-ActiveSync") == 0 &&
strcasecmp(substr($_SERVER['HTTP_X_ORIGINAL_URI'], 0, 9), "/SOGo/dav") == 0
strcasecmp(substr($_SERVER['HTTP_X_ORIGINAL_URI'], 0, 28), "/Microsoft-Server-ActiveSync") !== 0 &&
strcasecmp(substr($_SERVER['HTTP_X_ORIGINAL_URI'], 0, 9), "/SOGo/dav") !== 0
) {
// this is an nginx auth_request call, we check for existing sogo-sso session variables
session_start();