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