testsuite: abstract out common conf settings
[exim.git] / test / confs / 0309
1 # Exim test configuration 0309
2
3 .include DIR/aux-var/std_conf_prefix
4
5 primary_hostname = myhost.test.ex
6
7 # ----- Main settings -----
8
9 domainlist      local_domains = test.ex : *.test.ex
10
11
12 # ----- Routers -----
13
14 begin routers
15
16 bounce:
17   driver = accept
18   senders = :
19   transport = bounce
20
21 all:
22   driver = accept
23   transport = local_delivery
24
25
26 # ----- Transports -----
27
28 begin transports
29
30 local_delivery:
31   driver = appendfile
32   file = DIR/test-mail/$local_part
33   message_size_limit = $local_part
34   user = CALLER
35
36 bounce:
37   driver = appendfile
38   file = DIR/test-mail/$local_part
39   user = CALLER
40
41
42 # End