taint: allow appendfile create_file option to specify a de-tainting safe path
[exim.git] / test / confs / 0289
1 # Exim test configuration 0289
2
3 .include DIR/aux-var/std_conf_prefix
4
5 trusted_users = CALLER
6 primary_hostname = myhost.test.ex
7
8 # ----- Main settings -----
9
10 acl_smtp_rcpt = accept
11 recipients_max = 1
12
13
14 # ------ Routers ------
15
16 begin routers
17
18 r1:
19   driver = accept
20   transport = local_delivery
21
22
23 # ------ Transports ------
24
25 begin transports
26
27 local_delivery:
28   driver = appendfile
29   file = DIR/test-mail/$local_part
30   create_file = DIR/test-mail
31   user = CALLER
32
33
34 # End