DKIM: Allow the DKIM ACL to override verification results. Bug 2186
[exim.git] / test / confs / 0044
CommitLineData
afda344b
PH
1# Exim test configuration 0044
2
d4dc049f
JH
3.include DIR/aux-var/std_conf_prefix
4
afda344b
PH
5
6# ----- Main settings -----
7
8domainlist local_domains = exim.test.ex
9
10acl_smtp_rcpt = check_recipient
11qualify_domain = exim.test.ex
12
13
14# ------ ACL ------
15
16begin acl
17
18check_recipient:
19 accept hosts = :
20 accept recipients = postmaster@exim.test.ex
21 accept senders = myfriend@*
22 deny message = host is listed in $dnslist_domain
23 dnslists = rbl.test.ex
24 require verify = sender
25 deny message = unrouteable address
26 !verify = recipient
27 accept domains = +local_domains
28 accept domains = +relay_domains
29 deny message = relay not permitted
30
31
32# ----- Routers -----
33
34begin routers
35
36localuser:
37 driver = accept
38 local_parts = userx
39 transport = local_delivery
40
41
42# ----- Transports -----
43
44begin transports
45
46local_delivery:
47 driver = appendfile
48 delivery_date_add
49 envelope_to_add
50 file = DIR/test-mail/$local_part
51 return_path_add
52 user = CALLER
53
54# End