DKIM: Allow the DKIM ACL to override verification results. Bug 2186
[exim.git] / test / confs / 0556
1 # Exim test configuration 0556
2
3 ACL_MAIL=accept
4 ACL_RCPT=accept
5 ACL_PREDATA=accept
6 PAH=127.0.0.1
7
8 .include DIR/aux-var/std_conf_prefix
9
10 primary_hostname = myhost.test.ex
11
12 # ----- Main settings -----
13
14 acl_smtp_predata = ACL_PREDATA
15 acl_smtp_mail = ACL_MAIL
16 acl_smtp_rcpt = ACL_RCPT
17 pipelining_advertise_hosts = PAH
18
19 queue_only
20
21 # ----- ACL -----
22
23 begin ACL
24
25 check_predata:
26 accept delay = 2s
27
28 check_mail:
29 accept delay = 2s
30
31 check_rcpt:
32 accept delay = 2s
33
34 # End