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