Truncate delay when peer closes connection. Bug 348
[exim.git] / test / confs / 5000
CommitLineData
afda344b
PH
1# Exim test configuration 5000
2
3exim_path = EXIM_PATH
4host_lookup_order = bydns
5primary_hostname = myhost.test.ex
afda344b
PH
6spool_directory = DIR/spool
7log_file_path = DIR/spool/log/%slog
8gecos_pattern = ""
9gecos_name = CALLER_NAME
10
11# ----- Main settings -----
12
13
14# ----- Routers -----
15
16begin routers
17
18localuser:
19 driver = accept
20 local_parts = userx
21 transport = $h_maildir:appendfile
22
23
24# ----- Transports -----
25
26begin transports
27
28maildir_appendfile:
29 driver = appendfile
30 directory = DIR/test-mail
31 maildir_format
32 quota = 10K
33 user = CALLER
34
35maildir_tagged_appendfile:
36 driver = appendfile
37 directory = DIR/test-mail
38 envelope_to_add
39 maildir_format
40 maildir_tag = ${expand:$h_tag:}
41 message_prefix =
42 quota = 20K
43 quota_size_regex = S=(\d+)$
44 message_suffix =
45 user = CALLER
46
47maildir_taggedX_appendfile:
48 driver = appendfile
49 directory = DIR/test-mail
50 envelope_to_add
51 maildir_format
52 maildir_tag = ${expand:$h_tag:}
53 message_prefix =
54 quota = 20K
55 quota_size_regex = ,S=(\d+):
56 message_suffix =
57 user = CALLER
58
59
60# ----- Retry -----
61
62
63begin retry
64
65* * F,5d,1d
66
67
68# End