Testsuite: move dsearch-dependent testcase
[exim.git] / test / confs / 0205
CommitLineData
afda344b
PH
1# Exim test configuration 0205
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
9domainlist local_domains = test.ex : \
10 testhack.test.ex : \
11 testhack2.test.ex
12
13percent_hack_domains = testhack.test.ex : \
14 testhack2.test.ex
15
16
17# ----- Routers -----
18
19begin routers
20
21fail_remote_domains:
22 driver = redirect
23 domains = ! +local_domains
24 allow_fail
25 data = :fail: unrouteable mail domain "$domain"
26
27redirect:
28 driver = redirect
29 local_parts = redirect
30 errors_to = postmaster@test.ex
31 data = redirected%test.ex@testhack.test.ex
32 address_data = $address_data-redirect
33
34local_domains:
35 driver = accept
36 transport = local_delivery
37
38
39# ----- Transports -----
40
41begin transports
42
43local_delivery:
44 driver = appendfile
0d2e392e 45 file = DIR/test-mail/${bless:$local_part}
afda344b
PH
46 user = CALLER
47 headers_add = Address-Data: >$address_data<
48
49
50# End