From 7ec842d0b4e2adef671e57f97eea22d64693242a Mon Sep 17 00:00:00 2001 From: Viktor Barzin Date: Tue, 9 May 2023 17:56:25 +0000 Subject: [PATCH] disable sasl on mailserver as it is not working [ci skip] --- modules/kubernetes/mailserver/variables.tf | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/modules/kubernetes/mailserver/variables.tf b/modules/kubernetes/mailserver/variables.tf index 229dbeb8..14754105 100644 --- a/modules/kubernetes/mailserver/variables.tf +++ b/modules/kubernetes/mailserver/variables.tf @@ -67,12 +67,13 @@ postscreen_greet_action = enforce postscreen_bare_newline_action = enforce # SASL -smtpd_sasl_auth_enable = yes -smtpd_sasl_path = /var/spool/postfix/private/auth -smtpd_sasl_type = dovecot -smtpd_sasl_security_options = noanonymous -smtpd_sasl_local_domain = $mydomain -broken_sasl_auth_clients = yes +smtpd_sasl_auth_enable = no +#smtpd_sasl_auth_enable = yes +#smtpd_sasl_path = /var/spool/postfix/private/auth +#smtpd_sasl_type = dovecot +#smtpd_sasl_security_options = noanonymous +#smtpd_sasl_local_domain = $mydomain +#broken_sasl_auth_clients = yes # SMTP configuration smtp_sasl_auth_enable = yes