string.c: do not interpret '\\' before '\0' (CVE-2019-15846)
[exim.git] / test / confs / 0095
... / ...
CommitLineData
1# Exim test configuration 0095
2
3ERT=
4QWM=
5
6.include DIR/aux-var/std_conf_prefix
7
8primary_hostname = myhost.test.ex
9
10# ----- Main settings -----
11
12ERT
13
14# ----- Routers -----
15
16begin routers
17
18usery:
19 driver = accept
20 local_parts = usery
21 retry_use_local_part
22 transport = appendfile2
23
24userz:
25 driver = accept
26 local_parts = userz
27 retry_use_local_part
28 transport = appendfile3
29
30localuser:
31 driver = accept
32 local_parts = userx
33 transport = appendfile
34
35
36# ----- Transports -----
37
38begin transports
39
40appendfile:
41 driver = appendfile
42 file = DIR/test-mail/$local_part
43 quota = $h_quota
44 quota_warn_threshold = $h_threshold
45 QWM
46 user = CALLER
47
48appendfile2:
49 driver = appendfile
50 file = DIR/test-mail/$local_part
51 quota = $h_quota
52 quota_warn_threshold = $h_threshold
53 user = CALLER
54
55appendfile3:
56 driver = appendfile
57 file = DIR/test-mail/$local_part${if eq{$sender_address}{}{.bounce}}
58 quota_warn_threshold = $h_threshold
59 user = CALLER
60 headers_add = X:aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
61
62
63# ----- Retry -----
64
65
66begin retry
67
68* * F,5d,1d
69
70
71# End