Fix sender-verify callout to not use trigger-message SIZE
[exim.git] / test / confs / 0095
1 # Exim test configuration 0095
2
3 ERT=
4 QWM=
5
6 .include DIR/aux-var/std_conf_prefix
7
8 primary_hostname = myhost.test.ex
9
10 # ----- Main settings -----
11
12 ERT
13
14 # ----- Routers -----
15
16 begin routers
17
18 usery:
19 driver = accept
20 local_parts = usery
21 retry_use_local_part
22 transport = appendfile2
23
24 userz:
25 driver = accept
26 local_parts = userz
27 retry_use_local_part
28 transport = appendfile3
29
30 localuser:
31 driver = accept
32 local_parts = userx
33 transport = appendfile
34
35
36 # ----- Transports -----
37
38 begin transports
39
40 appendfile:
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
48 appendfile2:
49 driver = appendfile
50 file = DIR/test-mail/$local_part
51 quota = $h_quota
52 quota_warn_threshold = $h_threshold
53 user = CALLER
54
55 appendfile3:
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
66 begin retry
67
68 * * F,5d,1d
69
70
71 # End