Testsuite: remove unused acl option from testcase
[exim.git] / test / confs / 0565
1 # Exim test configuration 0565
2
3 exim_path = EXIM_PATH
4 host_lookup_order = bydns
5 primary_hostname = myhost.test.ex
6 spool_directory = DIR/spool
7 log_file_path = DIR/spool/log/%slog
8 gecos_pattern = ""
9 gecos_name = CALLER_NAME
10
11 # ----- Main settings -----
12
13 acl_smtp_rcpt = accept
14
15
16 # ----- Routers -----
17
18 begin routers
19
20 hdronly_dnslookup:
21 domains = test.ex
22 driver = manualroute
23 route_data = 127.0.0.1
24 self = send
25 transport = remote_smtp_hdrs
26
27 dnslookup:
28 driver = manualroute
29 route_data = 127.0.0.1
30 self = send
31 transport = remote_smtp
32
33
34 # ----- Transports -----
35
36 begin transports
37
38 remote_smtp:
39 driver = smtp
40 port = PORT_S
41 allow_localhost
42
43 remote_smtp_hdrs:
44 driver = smtp
45 port = PORT_S
46 allow_localhost
47 headers_only
48
49 # End