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 tls_advertise_hosts =
12
13 # ----- Main settings -----
14
15 qualify_domain = test.ex
16 queue_run_in_order
17
18 # ----- Transports -----
19
20 begin transports
21
22 t1:
23   driver = appendfile
24   file = DIR/test-mail/$local_part
25   user = CALLER
26   envelope_to_add
27   return_path_add
28
29 # ----- Routers -----
30
31 begin routers
32
33 r1:
34   driver = redirect
35   skip_syntax_errors
36   local_parts = ^list
37   syntax_errors_to = postmaster@test.ex
38   file = DIR/aux-fixed/TESTNUM.$local_part
39
40 r1a:
41   driver = redirect
42   skip_syntax_errors
43   local_parts = ^nmlist
44   syntax_errors_to = postmaster@test.ex
45   file = DIR/aux-fixed/TESTNUM.$local_part
46   no_more
47
48 r2:
49   driver = redirect
50   skip_syntax_errors
51   local_parts = ^filter
52   syntax_errors_to = postmaster@test.ex
53   syntax_errors_text = "There's an error in your filter file.\n\
54                         The file has been ignored."
55   file = DIR/aux-fixed/TESTNUM.$local_part
56   allow_filter
57   router_home_directory = DIR
58   user = CALLER
59
60 r3:
61   driver = accept
62   transport = t1
63
64 # ----- Retry -----
65
66 begin retry
67
68 *                *   F,5d,5m
69
70 # End