Testsuite: output changes resulting
[exim.git] / test / confs / 0218
... / ...
CommitLineData
1# Exim test configuration 0218
2
3.include DIR/aux-var/std_conf_prefix
4
5primary_hostname = myhost.test.ex
6
7# ----- Main settings -----
8
9log_selector = \
10 +sender_on_delivery \
11 +pipelining
12ignore_bounce_errors_after = 0s
13qualify_domain = test.ex
14queue_run_in_order
15queue_only
16
17
18# ----- ACLs ----
19
20begin acl
21
22expand_check:
23 accept message = ACL
24
25# ----- Routers -----
26
27begin routers
28
29bounce:
30 driver = redirect
31 allow_defer
32 allow_fail
33 data = :fail: just discard
34 retry_use_local_part
35 senders = :
36 debug_print = R: $router_name (${acl {expand_check}})
37
38client:
39 driver = accept
40 retry_use_local_part
41 transport = send_to_server
42 debug_print = R: $router_name (${acl {expand_check}})
43
44
45# ----- Transports -----
46
47begin transports
48
49send_to_server:
50 driver = smtp
51 allow_localhost
52 command_timeout = 1s
53 hosts = 127.0.0.1
54 port = PORT_S
55 hosts_try_fastopen = :
56 debug_print = T: $transport_name (${acl {expand_check}})
57
58
59# ----- Retry -----
60
61
62begin retry
63
64* * F,5d,10s
65
66
67# End