DKIM: Allow the DKIM ACL to override verification results. Bug 2186
[exim.git] / test / confs / 0130
CommitLineData
afda344b
PH
1# Exim test configuration 0130
2
d4dc049f
JH
3.include DIR/aux-var/std_conf_prefix
4
afda344b
PH
5
6# ----- Main settings -----
7
8
9acl_smtp_rcpt = check_recipient
10
11domainlist local_domains = test.ex
12hostlist relay_hosts = V4NET.0.0.0
13qualify_domain = test.ex
14
15
16# ----- ACL -----
17
18begin acl
19
20check_recipient:
21 deny message = unrouteable address
22 !verify = recipient
23 accept domains = +local_domains
24 accept hosts = +relay_hosts
25 deny message = relay not permitted
26
27
28# ----- Routers -----
29
30begin routers
31
32islocal:
33 driver = manualroute
34 domains = ! +local_domains
35 route_list = "* localhost byname"
36 transport = smtp
37 no_more
38
39
40# ----- Transports -----
41
42begin transports
43
44smtp:
45 driver = smtp
46
47
48# ----- Retry -----
49
50
51begin retry
52
53* * F,1d,15m
54
55
56# End