summaryrefslogtreecommitdiffstats
path: root/mail-server
diff options
context:
space:
mode:
authorAntoine Eiche <lewo@abesis.fr>2020-04-25 23:33:01 +0200
committerAntoine Eiche <lewo@abesis.fr>2020-05-08 20:43:46 +0200
commit41219cc690e69d5dbdb028e755fdca95c837e23a (patch)
tree0e2d59b9e90c49fc199819085c95d84c71ab74d0 /mail-server
parentd47e4ead88043615c76c275879d38004c91cd264 (diff)
Rename rejectMessage to sendOnlyRejectMessage
Diffstat (limited to 'mail-server')
-rw-r--r--mail-server/postfix.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/mail-server/postfix.nix b/mail-server/postfix.nix
index 00c62c5..dff0d60 100644
--- a/mail-server/postfix.nix
+++ b/mail-server/postfix.nix
@@ -52,7 +52,7 @@ let
# denied_recipients_postfix :: [ String ]
denied_recipients_postfix = (map
- (acct: "${acct.name} REJECT ${acct.rejectMessage}")
+ (acct: "${acct.name} REJECT ${acct.sendOnlyRejectMessage}")
(lib.filter (acct: acct.sendOnly) (lib.attrValues cfg.loginAccounts)));
denied_recipients_file = builtins.toFile "denied_recipients" (lib.concatStringsSep "\n" denied_recipients_postfix);