summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorJeremy Harris <jgh146exb@wizmail.org>2020-05-12 22:20:24 +0100
committerJeremy Harris <jgh146exb@wizmail.org>2020-05-12 22:20:24 +0100
commit599fc3c68f5e942c1d662012053ecfc6ea26bd49 (patch)
treed7624c25046924a0e376d63f526c7b2fa2d0de9a /src
parent8ca559c846f149eda900c581cc4c0ce0cacb89c2 (diff)
Docs: set message after conditions in ACL verb wherever possible
Diffstat (limited to 'src')
-rw-r--r--src/src/configure.default8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/src/configure.default b/src/src/configure.default
index b758c8950..729cdc392 100644
--- a/src/src/configure.default
+++ b/src/src/configure.default
@@ -507,8 +507,8 @@ acl_check_rcpt:
# examples of how you can get Exim to perform a DNS black list lookup at this
# point. The first one denies, whereas the second just warns.
#
- # deny message = rejected because $sender_host_address is in a black list at $dnslist_domain\n$dnslist_text
- # dnslists = black.list.example
+ # deny dnslists = black.list.example
+ # message = rejected because $sender_host_address is in a black list at $dnslist_domain\n$dnslist_text
#
# warn dnslists = black.list.example
# add_header = X-Warning: $sender_host_address is in a black list at $dnslist_domain
@@ -578,9 +578,9 @@ acl_check_data:
# Deny if the message contains an overlong line. Per the standards
# we should never receive one such via SMTP.
#
- deny message = maximum allowed line length is 998 octets, \
+ deny condition = ${if > {$max_received_linelength}{998}}
+ message = maximum allowed line length is 998 octets, \
got $max_received_linelength
- condition = ${if > {$max_received_linelength}{998}}
# Deny if the headers contain badly-formed addresses.
#