Logging: pipelining log_selector
[exim.git] / test / confs / 0218
CommitLineData
afda344b
PH
1# Exim test configuration 0218
2
d4dc049f
JH
3.include DIR/aux-var/std_conf_prefix
4
afda344b 5primary_hostname = myhost.test.ex
afda344b
PH
6
7# ----- Main settings -----
8
9log_selector = \
7c576fca
JH
10 +sender_on_delivery \
11 +pipelining
afda344b
PH
12ignore_bounce_errors_after = 0s
13qualify_domain = test.ex
14queue_run_in_order
15queue_only
16
17
cb46fd2b
JH
18# ----- ACLs ----
19
20begin acl
21
22expand_check:
23 accept message = ACL
24
afda344b
PH
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 = :
cb46fd2b 36 debug_print = R: $router_name (${acl {expand_check}})
afda344b
PH
37
38client:
39 driver = accept
40 retry_use_local_part
41 transport = send_to_server
cb46fd2b 42 debug_print = R: $router_name (${acl {expand_check}})
afda344b
PH
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
cb46fd2b 55 debug_print = T: $transport_name (${acl {expand_check}})
afda344b
PH
56
57
58# ----- Retry -----
59
60
61begin retry
62
63* * F,5d,10s
64
65
66# End