DKIM: Allow the DKIM ACL to override verification results. Bug 2186
[exim.git] / test / confs / 0495
CommitLineData
afda344b
PH
1# Exim test configuration 0495
2
d4dc049f
JH
3.include DIR/aux-var/std_conf_prefix
4
afda344b 5primary_hostname = myhost.test.ex
afda344b
PH
6
7# ----- Main settings -----
8
9acl_smtp_rcpt = check_rcpt
10mua_wrapper = TRUE
11trusted_users = CALLER
12
13# These settings should be ignored
14
15queue_only
16queue_smtp_domains = *
17deliver_drop_privilege = FALSE
18remote_max_parallel = 5
19
20
21# ----- ACL -----
22
23begin acl
24
25# The controls will be ignored
26
27check_rcpt:
28 accept control = queue_only
29 control = freeze
30
31
32# ----- Routers -----
33
34begin routers
35
36r1:
37 driver = redirect
38 data = ${lookup{$local_part}lsearch{DIR/aux-fixed/TESTNUM.alias}}
39 file_transport = t3
40 allow_fail
41 allow_defer
42
43r2:
44 driver = accept
45 local_parts = otherhost
46 transport = t2
47
48r3:
49 driver = accept
50 local_parts = ^badport
51 transport = t4
52
53r9:
54 driver = accept
55 transport = t1
56 headers_add = ${if eq{$local_part}{addheader}{Added: text}}
57
58
59# ----- Transports -----
60
61begin transports
62
63t1:
64 driver = smtp
65 hosts = 127.0.0.1 : HOSTIPV4
66 port = PORT_S
67 allow_localhost
68 command_timeout = 1s
69
70t2:
71 driver = smtp
72 hosts = V4NET.9.8.7
73 port = PORT_S
74
75t3:
76 driver = appendfile
77 file = DIR/test-mail/$local_part
78 user = CALLER
79
80t4:
81 driver = smtp
82 hosts = V4NET.10.10.10
83 port = nonexistent
84
85# End