taint: allow appendfile create_file option to specify a de-tainting safe path
[exim.git] / test / confs / 0032
1 # Exim test configuration 0032
2
3 .include DIR/aux-var/std_conf_prefix
4
5 primary_hostname = myhost.ex
6
7
8 # ----- Main settings -----
9
10 dsn_from = MailProgram <xyz@some.where>
11
12
13 # ----- Routers -----
14
15 begin routers
16
17 localuser:
18   driver = accept
19   check_local_user
20   transport = local_delivery
21
22 others:
23   driver = dnslookup
24   transport = smtp
25   self = fail
26
27
28 # ----- Transports -----
29
30 begin transports
31
32 local_delivery:
33   driver = appendfile
34   delivery_date_add
35   envelope_to_add
36   file = DIR/test-mail/$local_part
37   create_file = DIR/test-mail
38   return_path_add
39
40 smtp:
41   driver = smtp
42   hosts_try_fastopen =  :
43
44
45 # End