Allow relative file names in .include lines (Closes 1971)
[exim.git] / test / confs / 0152
1 # Exim test configuration 0152
2
3 .include DIR/aux-var/std_conf_prefix
4
5
6 # ----- Main settings -----
7
8 domainlist local_domains = test.ex
9 qualify_domain = test.ex
10
11 local_from_prefix = page+ : *-
12 local_from_suffix = =* : &page
13
14
15 # ----- Routers -----
16
17 begin routers
18
19 all:
20 driver = accept
21 retry_use_local_part
22 transport = appendfile
23
24
25 # ----- Transports -----
26
27 begin transports
28
29 appendfile:
30 driver = appendfile
31 file = DIR/test-mail/$local_part
32 user = CALLER
33
34
35 # End