Track tainted data and refuse to expand it
[exim.git] / test / confs / 5000
1 # Exim test configuration 5000
2
3 .include DIR/aux-var/std_conf_prefix
4
5 OPT =
6
7 primary_hostname = myhost.test.ex
8
9 # ----- Main settings -----
10
11
12 # ----- Routers -----
13
14 begin routers
15
16 localuser:
17   driver = accept
18   local_parts = userx
19   transport = VALUE
20
21
22 # ----- Transports -----
23
24 begin transports
25
26 maildir_appendfile:
27   driver = appendfile
28   directory = DIR/test-mail
29   maildir_format
30   quota = 10K
31   user = CALLER
32
33 maildir_tagged_appendfile:
34   driver = appendfile
35   directory = DIR/test-mail
36   envelope_to_add
37   maildir_format
38   maildir_tag = OPT
39   message_prefix =
40   quota = 20K
41   quota_size_regex = S=(\d+)$
42   message_suffix =
43   user = CALLER
44
45 maildir_taggedX_appendfile:
46   driver = appendfile
47   directory = DIR/test-mail
48   envelope_to_add
49   maildir_format
50   maildir_tag = OPT
51   message_prefix =
52   quota = 20K
53   quota_size_regex = ,S=(\d+):
54   message_suffix =
55   user = CALLER
56
57
58 # ----- Retry -----
59
60
61 begin retry
62
63 * * F,5d,1d
64
65
66 # End