Truncate delay when peer closes connection. Bug 348
[exim.git] / test / confs / 0095
1 # Exim test configuration 0095
2
3 ERT=
4 QWM=
5
6 exim_path = EXIM_PATH
7 host_lookup_order = bydns
8 primary_hostname = myhost.test.ex
9 spool_directory = DIR/spool
10 log_file_path = DIR/spool/log/%slog
11 gecos_pattern = ""
12 gecos_name = CALLER_NAME
13
14 # ----- Main settings -----
15
16 ERT
17
18 # ----- Routers -----
19
20 begin routers
21
22 usery:
23 driver = accept
24 local_parts = usery
25 retry_use_local_part
26 transport = appendfile2
27
28 userz:
29 driver = accept
30 local_parts = userz
31 retry_use_local_part
32 transport = appendfile3
33
34 localuser:
35 driver = accept
36 local_parts = userx
37 transport = appendfile
38
39
40 # ----- Transports -----
41
42 begin transports
43
44 appendfile:
45 driver = appendfile
46 file = DIR/test-mail/$local_part
47 quota = $h_quota
48 quota_warn_threshold = $h_threshold
49 QWM
50 user = CALLER
51
52 appendfile2:
53 driver = appendfile
54 file = DIR/test-mail/$local_part
55 quota = $h_quota
56 quota_warn_threshold = $h_threshold
57 user = CALLER
58
59 appendfile3:
60 driver = appendfile
61 file = DIR/test-mail/$local_part${if eq{$sender_address}{}{.bounce}}
62 quota_warn_threshold = $h_threshold
63 user = CALLER
64 headers_add = X:aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
65
66
67 # ----- Retry -----
68
69
70 begin retry
71
72 * * F,5d,1d
73
74
75 # End