Testsuite: move dsearch-dependent testcase
[exim.git] / test / confs / 0531
CommitLineData
75def545
PH
1# Exim test configuration 0531
2
d4dc049f
JH
3.include DIR/aux-var/std_conf_prefix
4
75def545 5primary_hostname = myhost.test.ex
75def545
PH
6
7# ----- Main settings -----
8
9domainlist local_domains = test.ex : *.test.ex
10log_selector = +sender_on_delivery
11
12
13# ----- Routers -----
14
15begin routers
16
17bounces:
18 driver = accept
19 senders = :
20 transport = t1
21
22smartuser:
23 driver = accept
24 retry_use_local_part
25 transport = lmtp
26
27
28# ----- Transports -----
29
30begin transports
31
32t1:
33 driver = appendfile
0d2e392e 34 file = DIR/test-mail/${bless:$local_part}
75def545
PH
35 user = CALLER
36
37lmtp:
38 driver = smtp
39 allow_localhost
40 hosts = 127.0.0.1
41 port = PORT_S
277b9979 42 hosts_try_fastopen = :
75def545
PH
43 protocol = LMTP
44
45
46# ----- Retry -----
47
48
49begin retry
50
51retry.test.ex * F,1s,1s
52
53
54# End