Testsuite: fix 0903
[exim.git] / test / confs / 0309
CommitLineData
afda344b
PH
1# Exim test configuration 0309
2
4fab92fb
HSHR
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 : *.test.ex
10
11
12# ----- Routers -----
13
14begin routers
15
16bounce:
17 driver = accept
18 senders = :
19 transport = bounce
20
21all:
22 driver = accept
23 transport = local_delivery
24
25
26# ----- Transports -----
27
28begin transports
29
30local_delivery:
31 driver = appendfile
32 file = DIR/test-mail/$local_part
33 message_size_limit = $local_part
34 user = CALLER
35
36bounce:
37 driver = appendfile
38 file = DIR/test-mail/$local_part
39 user = CALLER
40
41
42# End