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