From 2e254b4b5e37dc3cbbbe09d9dbc77f3c2a213de5 Mon Sep 17 00:00:00 2001 From: Martin Weinelt Date: Wed, 7 May 2025 02:52:28 +0200 Subject: [PATCH] postfix: adjust comments around smtpd_recipient_restrictions --- mail-server/postfix.nix | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/mail-server/postfix.nix b/mail-server/postfix.nix index d14e6d3..11a304d 100644 --- a/mail-server/postfix.nix +++ b/mail-server/postfix.nix @@ -258,10 +258,11 @@ in "check_sender_access ${mappedFile "reject_senders"}" ]; - # quota checking smtpd_recipient_restrictions = [ + # reject selected recipients "check_recipient_access ${mappedFile "denied_recipients"}" "check_recipient_access ${mappedFile "reject_recipients"}" + # quota checking "check_policy_service inet:localhost:12340" ];