diff options
author | root | 2017-03-29 16:24:29 +0200 |
---|---|---|
committer | root | 2017-03-29 16:24:29 +0200 |
commit | 2fd288ecfa99495e73a984320f7ce752fd8fcf05 (patch) | |
tree | 0a1025cad7325a5964ac3f96b3350f573dc4af02 | |
parent | 331920130ed209be03c6dbd06b90ba34a6a4817b (diff) | |
download | exim-2fd288ecfa99495e73a984320f7ce752fd8fcf05.tar.gz |
Fix ACLs selection
-rw-r--r-- | conf.d/010_main.conf | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/conf.d/010_main.conf b/conf.d/010_main.conf index 29ff01a..f13b30c 100644 --- a/conf.d/010_main.conf +++ b/conf.d/010_main.conf | |||
@@ -68,10 +68,10 @@ hostlist relay_from_hosts = localhost | |||
68 | # manual for details. The lists above are used in the access control lists for | 68 | # manual for details. The lists above are used in the access control lists for |
69 | # checking incoming messages. The names of these ACLs are defined here: | 69 | # checking incoming messages. The names of these ACLs are defined here: |
70 | 70 | ||
71 | acl_smtp_rcpt = ${if ={587}{$interface_port} {acl_mua_rcpt} {acl_mta_rcpt} | 71 | acl_smtp_rcpt = ${if ={587}{$interface_port} {acl_mua_rcpt} {acl_mta_rcpt}} |
72 | acl_smtp_mail = ${if ={587}{$interface_port} {acl_mua_mail} {accept} | 72 | acl_smtp_mail = ${if ={587}{$interface_port} {acl_mua_mail} {accept}} |
73 | acl_smtp_data = ${if ={587}{$interface_port} {acl_mua_data} {acl_mta_data} | 73 | acl_smtp_data = ${if ={587}{$interface_port} {acl_mua_data} {acl_mta_data}} |
74 | acl_smtp_dkim = acl_check_dkim | 74 | acl_smtp_dkim = acl_mta_dkim |
75 | 75 | ||
76 | # You should not change those settings until you understand how ACLs work. | 76 | # You should not change those settings until you understand how ACLs work. |
77 | 77 | ||