From ddf8cbde6880be2ac79e959b8c14bbccb7d9320b Mon Sep 17 00:00:00 2001 From: niten Date: Tue, 26 Sep 2023 15:07:22 -0700 Subject: [PATCH] submission options must be str --- postfix.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/postfix.nix b/postfix.nix index 2e49427..4c2733f 100644 --- a/postfix.nix +++ b/postfix.nix @@ -436,7 +436,7 @@ in { submissionOptions = let makeRestrictionsList = concatStringsSep ","; in { - smtpd_helo_required = true; + smtpd_helo_required = "yes"; smtpd_tls_security_level = "encrypt"; smtpd_sasl_auth_enable = "yes"; smtpd_sasl_type = "dovecot";