DKIM: Allow the DKIM ACL to override verification results. Bug 2186
[exim.git] / test / confs / 0145
1 # Exim test configuration 0145
2
3 .include DIR/aux-var/std_conf_prefix
4
5 qualify_domain = test.ex
6 primary_hostname = myhost.test.ex
7
8 # ----- Main settings -----
9
10 acl_smtp_rcpt = check_recipient
11
12
13 # ------ ACL ------
14
15 begin acl
16
17 check_recipient:
18 require verify = sender
19 require verify = recipient
20
21
22 # ----- Routers -----
23
24 begin routers
25
26 domainlist:
27 driver = dnslookup
28 transport = smtp
29 no_more
30
31
32 # ----- Transports -----
33
34 begin transports
35
36 smtp:
37 driver = smtp
38
39
40 # ----- Retry -----
41
42
43 begin retry
44
45 * * F,1h,10m
46
47
48 # End