Browse Source

[SOGo] Disable EAS when SKIP_SOGO=y

andryyy 5 years ago
parent
commit
d931083e0e
1 changed files with 5 additions and 0 deletions
  1. 5 0
      data/conf/nginx/templates/sogo_eas.template.sh

+ 5 - 0
data/conf/nginx/templates/sogo_eas.template.sh

@@ -0,0 +1,5 @@
+if printf "%s\n" "${SKIP_SOGO}" | grep -E '^([yY][eE][sS]|[yY])+$' >/dev/null; then
+  echo "return 410;"
+else
+  echo "proxy_pass http://${IPV4_NETWORK}.248:20000/SOGo/Microsoft-Server-ActiveSync;"
+fi