Testsuite: remove unused acl option from testcase
[exim.git] / test / confs / 0227
CommitLineData
afda344b
PH
1# Exim test configuration 0227
2
3exim_path = EXIM_PATH
4host_lookup_order = bydns
5primary_hostname = myhost.test.ex
afda344b
PH
6spool_directory = DIR/spool
7log_file_path = DIR/spool/log/%slog
8gecos_pattern = ""
9gecos_name = CALLER_NAME
10
11# ----- Main settings -----
12
13domainlist local_domains = test.ex
14
15acl_smtp_rcpt = check_recipient
16acl_smtp_data = check_data
17
18
19# ----- ACL -----
20
21begin acl
22
23check_recipient:
24 warn senders = ^uncheckable2@
25 control = no_multiline_responses
26 accept hosts = V4NET.0.0.4
27 deny hosts = V4NET.0.0.1
28 !verify = sender/callout=no_cache
29 deny hosts = V4NET.0.0.3
afda344b
PH
30 !verify = recipient/callout=no_cache
31 deny hosts = V4NET.0.0.5
afda344b
PH
32 !verify = sender/callout=no_cache/check_postmaster
33 require verify = sender
34 accept domains = +local_domains
35 deny message = relay not permitted
36
37check_data:
38 deny hosts = V4NET.0.0.4
39 !verify = header_sender/callout=no_cache
2a47f028 40 accept
afda344b
PH
41
42
43# ----- Routers -----
44
45begin routers
46
47mxt3:
48 driver = dnslookup
49 domains = mxt3.test.ex
50 self = send
51 transport = smtp
52
53localhost1:
54 driver = manualroute
55 domains = localhost1
56 route_list = * 127.0.0.1 byname
57 self = send
58 transport = smtp
59 no_more
60
61lmtp:
62 driver = manualroute
63 domains = remote.lmtp
64 route_list = * 127.0.0.1
65 transport = lmtp
66 self = send
67
68all:
69 driver = manualroute
70 domains = ! +local_domains
71 route_list = * "127.0.0.1 : HOSTIPV4" byname
72 self = send
73 transport = smtp
74 no_more
75
76
77# ----- Transports -----
78
79begin transports
80
81smtp:
82 driver = smtp
83 port = PORT_S
84
85lmtp:
86 driver = smtp
87 port = PORT_S
88 protocol = lmtp
89
90
91# ----- Retry -----
92
93begin retry
94
95* * F,5d,10s
96
97
98# End