Testsuite: stabilize disk space/inode munging
[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
9
10 # ----- Main settings -----
11
12 acl_smtp_rcpt = accept
13 queue_only
14 queue_run_in_order
15
16
17 # ----- Routers -----
18
19 begin routers
20
21 client:
22 driver = accept
23 condition = ${if eq {SERVER}{server}{no}{yes}}
24 retry_use_local_part
25 transport = send_to_server
26
27
28 # ----- Transports -----
29
30 begin transports
31
32 send_to_server:
33 driver = smtp
34 allow_localhost
35 hosts = 127.0.0.1
36 port = PORT_D
37 max_rcpt = 0
38
39
40 # ----- Retry -----
41
42
43 begin retry
44
45 * * F,5d,10s
46
47
48 # End