Logging: pipelining log_selector
[exim.git] / test / confs / 0216
1 # Exim test configuration 0216
2
3 SERVER=
4
5 .include DIR/aux-var/std_conf_prefix
6
7 primary_hostname = myhost.test.ex
8 log_selector = +pipelining
9
10
11 # ----- Main settings -----
12
13 acl_smtp_rcpt = accept
14 queue_only
15 queue_run_in_order
16
17
18 # ----- Routers -----
19
20 begin routers
21
22 client:
23 driver = accept
24 condition = ${if eq {SERVER}{server}{no}{yes}}
25 retry_use_local_part
26 transport = send_to_server
27
28
29 # ----- Transports -----
30
31 begin transports
32
33 send_to_server:
34 driver = smtp
35 allow_localhost
36 hosts = 127.0.0.1
37 port = PORT_D
38 max_rcpt = 0
39
40
41 # ----- Retry -----
42
43
44 begin retry
45
46 * * F,5d,10s
47
48
49 # End