Testsuite: move dsearch-dependent testcase
[exim.git] / test / confs / 0299
CommitLineData
37ff4e03 1# Exim test configuration 0299
afda344b 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 = +delivery_size
10remote_max_parallel = 1
11
12
13# ------ Routers ------
14
15begin routers
16
17r1:
18 driver = accept
19 domains = test.ex
20 transport = t1
21
22r2:
23 driver = accept
24 transport = t2
25
26
27# ------ Transports ------
28
29begin transports
30
31t1:
32 driver = appendfile
0d2e392e 33 file = DIR/test-mail/${bless:$local_part}
afda344b
PH
34 user = CALLER
35 shadow_transport = t3
36
37t2:
38 driver = smtp
39 hosts = 127.0.0.1
40 port = PORT_S
277b9979 41 hosts_try_fastopen = :
afda344b
PH
42 allow_localhost
43 max_rcpt = 2
44
45t3:
46 driver = appendfile
47 file = /dev/null
48 user = CALLER
49
50# End