Allow relative file names in .include lines (Closes 1971)
[exim.git] / test / confs / 0456
1 # Exim test configuration 0456
2
3 HOSTS_MAX_TRY=4
4
5 .include DIR/aux-var/std_conf_prefix
6
7
8 # ----- Main settings -----
9
10 ignore_bounce_errors_after = 0s
11 qualify_domain = test.ex
12
13 # ----- Routers -----
14
15 begin routers
16
17 test_bus_error:
18 driver = redirect
19 local_parts = test-bus-error
20 errors_to = owner-bus-error@localhost
21 data = postmaster@localhost
22
23 accept:
24 driver = accept
25 transport = t1
26
27 # ----- Transports -----
28
29 begin transports
30
31 t1:
32 driver = appendfile
33 file = DIR/test-mail/$local_part
34 user = CALLER
35
36 # ----- Retry -----
37
38 begin retry
39
40 * * F,4s,1s
41
42 # End