From 76333c0a7c681ba4c927ca3cc17b98dfcb55b06c Mon Sep 17 00:00:00 2001 From: niten Date: Mon, 2 Oct 2023 13:16:34 -0700 Subject: [PATCH] Permit in the end --- postfix.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/postfix.nix b/postfix.nix index 8562850..805a186 100644 --- a/postfix.nix +++ b/postfix.nix @@ -248,7 +248,7 @@ in { "permit_sasl_authenticated" ] ++ (map (blacklist: "reject_rbl_client ${blacklist}") cfg.blacklist.dns) - ++ [ "permit_mynetworks" "reject_unauth_destination" ]; + ++ [ "permit_mynetworks" "reject_unauth_destination" "permit" ]; recipient-restrictions = [ "check_recipient_access ${mappedFile "reject_recipients"}" @@ -264,7 +264,7 @@ in { "check_policy_service unix:private/policy-spf" ] ++ (map (blacklist: "reject_rbl_client ${blacklist}") cfg.blacklist.dns) - ++ [ "permit_mynetworks" "reject_unauth_destination" ]; + ++ [ "permit_mynetworks" "reject_unauth_destination" "permit" ]; client-restrictions = [ "permit_sasl_authenticated" "permit_mynetworks" "reject" ];