Logging: pipelining log_selector
[exim.git] / test / confs / 0218
1 # Exim test configuration 0218
2
3 .include DIR/aux-var/std_conf_prefix
4
5 primary_hostname = myhost.test.ex
6
7 # ----- Main settings -----
8
9 log_selector =  \
10               +sender_on_delivery \
11               +pipelining
12 ignore_bounce_errors_after = 0s
13 qualify_domain = test.ex
14 queue_run_in_order
15 queue_only
16
17
18 # ----- ACLs ----
19
20 begin acl
21
22 expand_check:
23   accept message = ACL
24
25 # ----- Routers -----
26
27 begin routers
28
29 bounce:
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
38 client:
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
47 begin transports
48
49 send_to_server:
50   driver = smtp
51   allow_localhost
52   command_timeout = 1s
53   hosts = 127.0.0.1
54   port = PORT_S
55   debug_print = T: $transport_name  (${acl {expand_check}})
56
57
58 # ----- Retry -----
59
60
61 begin retry
62
63 * * F,5d,10s
64
65
66 # End