testsuite: abstract out common conf settings
[exim.git] / test / confs / 0271
1 # Exim test configuration 0271
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
11 # ----- Transports -----
12
13 begin transports
14
15 t1:
16   driver = appendfile
17   file = DIR/test-mail/$local_part
18   user = CALLER
19
20 # ----- Routers -----
21
22 begin routers
23
24 r1:
25   driver = accept
26   local_part_prefix = pre-
27   require_files = /non/exist
28   transport = t1
29
30 r2:
31   driver = accept
32   local_part_suffix = -post
33   require_files = /non/exist
34   transport = t1
35
36 r3:
37   driver = accept
38   local_parts = pre-x : x-post
39   transport = t1
40
41 # ----- Retry -----
42
43 begin retry
44
45 *                *   F,5d,5m
46
47 # End