Testsuite: stabilize output sequence for 2x35/6
[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
11ignore_bounce_errors_after = 0s
12qualify_domain = test.ex
13queue_run_in_order
14queue_only
15
16
17# ----- ACLs ----
18
19begin acl
20
21expand_check:
22 accept message = ACL
23
24# ----- Routers -----
25
26begin routers
27
28bounce:
29 driver = redirect
30 allow_defer
31 allow_fail
32 data = :fail: just discard
33 retry_use_local_part
34 senders = :
35 debug_print = R: $router_name (${acl {expand_check}})
36
37client:
38 driver = accept
39 retry_use_local_part
40 transport = send_to_server
41 debug_print = R: $router_name (${acl {expand_check}})
42
43
44# ----- Transports -----
45
46begin transports
47
48send_to_server:
49 driver = smtp
50 allow_localhost
51 command_timeout = 1s
52 hosts = 127.0.0.1
53 port = PORT_S
54 debug_print = T: $transport_name (${acl {expand_check}})
55
56
57# ----- Retry -----
58
59
60begin retry
61
62* * F,5d,10s
63
64
65# End