Allow relative file names in .include lines (Closes 1971)
[exim.git] / test / confs / 0380
1 # Exim test configuration 0380
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
10
11
12 # ----- Routers -----
13
14 begin routers
15
16 # This isn't part of this test per se; it's just a check for a bug
17 # that got fixed (crashing when debugging a forced fail in address_data).
18 # The router will always decline.
19
20 r0:
21 driver = accept
22 address_data = ${if eq {a}{b}{x}fail}
23 transport = t1
24
25 r1:
26 driver = redirect
27 local_parts = aaaa
28 file = DIR/non-exist/$local_part
29
30 r2:
31 driver = redirect
32 local_parts = bbbb
33 ignore_enotdir
34 file = DIR/non-exist/$local_part
35
36 r3:
37 driver = accept
38 transport = t1
39
40 # ----- Transports -----
41
42 begin transports
43
44 t1:
45 driver = appendfile
46 file = DIR/test-mail/$local_part
47 user = CALLER
48
49
50 # ----- Retry -----
51
52 begin retry
53
54 * * F,5d,10s
55
56
57 # End