Testsuite: remove unused acl option from testcase
[exim.git] / test / confs / 0218
CommitLineData
afda344b
PH
1# Exim test configuration 0218
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
13log_selector = \
14 +sender_on_delivery
15ignore_bounce_errors_after = 0s
16qualify_domain = test.ex
17queue_run_in_order
18queue_only
19
20
cb46fd2b
JH
21# ----- ACLs ----
22
23begin acl
24
25expand_check:
26 accept message = ACL
27
afda344b
PH
28# ----- Routers -----
29
30begin routers
31
32bounce:
33 driver = redirect
34 allow_defer
35 allow_fail
36 data = :fail: just discard
37 retry_use_local_part
38 senders = :
cb46fd2b 39 debug_print = R: $router_name (${acl {expand_check}})
afda344b
PH
40
41client:
42 driver = accept
43 retry_use_local_part
44 transport = send_to_server
cb46fd2b 45 debug_print = R: $router_name (${acl {expand_check}})
afda344b
PH
46
47
48# ----- Transports -----
49
50begin transports
51
52send_to_server:
53 driver = smtp
54 allow_localhost
55 command_timeout = 1s
56 hosts = 127.0.0.1
57 port = PORT_S
cb46fd2b 58 debug_print = T: $transport_name (${acl {expand_check}})
afda344b
PH
59
60
61# ----- Retry -----
62
63
64begin retry
65
66* * F,5d,10s
67
68
69# End