From 8a2ddcdf300a66f59770b81e1caafbbb35d49fec Mon Sep 17 00:00:00 2001 From: kaiyou Date: Sat, 21 Oct 2017 15:54:09 +0200 Subject: [PATCH] Fix a typo in the nginx config --- nginx/conf/nginx.conf | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/nginx/conf/nginx.conf b/nginx/conf/nginx.conf index 446c039f..dbb82e56 100644 --- a/nginx/conf/nginx.conf +++ b/nginx/conf/nginx.conf @@ -43,7 +43,7 @@ http { # Actual logic {% if TLS_ERROR %} location / { - return 403 + return 403; } {% else %} {% if WEBMAIL != 'none' %} @@ -90,7 +90,7 @@ mail { server { listen 25; - {% if TLS_FLAVOR != 'notls' %} + {% if TLS %} starttls on; {% endif %} protocol smtp;