testsuite: abstract out common conf settings
[exim.git] / test / confs / 0266
1 # Exim test configuration 0266
2
3 .include DIR/aux-var/std_conf_prefix
4
5 primary_hostname = myhost.test.ex
6
7 # ----- Main settings -----
8
9 qualify_domain = test.ex
10 queue_run_in_order
11
12 # ----- Transports -----
13
14 begin transports
15
16 t1:
17   driver = appendfile
18   file = DIR/test-mail/$local_part
19   user = CALLER
20   envelope_to_add
21   return_path_add
22
23 # ----- Routers -----
24
25 begin routers
26
27 r1:
28   driver = redirect
29   skip_syntax_errors
30   local_parts = ^list
31   syntax_errors_to = postmaster@test.ex
32   file = DIR/aux-fixed/TESTNUM.$local_part
33
34 r1a:
35   driver = redirect
36   skip_syntax_errors
37   local_parts = ^nmlist
38   syntax_errors_to = postmaster@test.ex
39   file = DIR/aux-fixed/TESTNUM.$local_part
40   no_more
41
42 r2:
43   driver = redirect
44   skip_syntax_errors
45   local_parts = ^filter
46   syntax_errors_to = postmaster@test.ex
47   syntax_errors_text = "There's an error in your filter file.\n\
48                         The file has been ignored."
49   file = DIR/aux-fixed/TESTNUM.$local_part
50   allow_filter
51   router_home_directory = DIR
52   user = CALLER
53
54 r3:
55   driver = accept
56   transport = t1
57
58 # ----- Retry -----
59
60 begin retry
61
62 *                *   F,5d,5m
63
64 # End