Truncate delay when peer closes connection. Bug 348
[exim.git] / test / confs / 0110
CommitLineData
afda344b
PH
1# Exim test configuration 0110
2
3exim_path = EXIM_PATH
4host_lookup_order = bydns
afda344b
PH
5spool_directory = DIR/spool
6log_file_path = DIR/spool/log/%slog
7gecos_pattern = ""
8gecos_name = CALLER_NAME
9
10# ----- Main settings -----
11
12acl_smtp_rcpt = check_recipient
13acl_smtp_data = check_message
14
15domainlist local_domains = test.ex
16qualify_domain = test.ex
17
18
19# ----- Routers -----
20
21begin routers
22
23deliver:
24 driver = accept
25 condition = ${if eq{$original_local_part}{second}{yes}{no}}
26 retry_use_local_part
27 transport = appendfile
28
29first:
30 driver = redirect
31 allow_defer
32 data = ${lookup{$local_part}lsearch{DIR/aux-fixed/TESTNUM.alias}}
33 forbid_file
34 forbid_pipe
35 one_time
36 retry_use_local_part
37
38second:
39 driver = redirect
40 allow_defer
41 data = ${lookup{$local_part}lsearch{DIR/aux-fixed/TESTNUM.alias}}
42 retry_use_local_part
43
44
45# ----- Transports -----
46
47begin transports
48
49appendfile:
50 driver = appendfile
51 file = DIR/test-mail/$local_part
52 user = CALLER
53
54
55# ----- Retry -----
56
57
58begin retry
59
60* * F,5d,1d
61
62
63# End