From 293553c9ed805291f095260c224183902fee3e4c Mon Sep 17 00:00:00 2001 From: niten Date: Wed, 7 Feb 2024 13:33:24 -0800 Subject: [PATCH] Don't reject on unknown hostname... --- postfix.nix | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/postfix.nix b/postfix.nix index cafa14a..1f63bba 100644 --- a/postfix.nix +++ b/postfix.nix @@ -239,7 +239,6 @@ in { "reject_sender_login_mismatch" "reject_non_fqdn_sender" "permit_sasl_authenticated" - "reject_unknown_sender_domain" "permit_mynetworks" ] ++ (map (blacklist: "reject_rbl_client ${blacklist}") cfg.blacklist.dns) ++ [ "permit" ]; @@ -275,14 +274,14 @@ in { "permit_mynetworks" "reject_invalid_hostname" "reject_non_fqdn_helo_hostname" - "reject_unknown_helo_hostname" + # "reject_unknown_helo_hostname" ] ++ (map (blacklist: "reject_rbl_client ${blacklist}") cfg.blacklist.dns) ++ [ "permit" ]; outgoing-helo-restrictions = [ "permit_mynetworks" "reject_invalid_hostname" - "reject_unknown_helo_hostname" + # "reject_unknown_helo_hostname" "permit" ];