Truncate delay when peer closes connection. Bug 348
[exim.git] / test / confs / 0266
CommitLineData
afda344b
PH
1# Exim test configuration 0266
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
13qualify_domain = test.ex
14queue_run_in_order
15
16# ----- Transports -----
17
18begin transports
19
20t1:
21 driver = appendfile
22 file = DIR/test-mail/$local_part
23 user = CALLER
24 envelope_to_add
25 return_path_add
26
27# ----- Routers -----
28
29begin routers
30
31r1:
32 driver = redirect
33 skip_syntax_errors
34 local_parts = ^list
35 syntax_errors_to = postmaster@test.ex
36 file = DIR/aux-fixed/TESTNUM.$local_part
37
38r1a:
39 driver = redirect
40 skip_syntax_errors
41 local_parts = ^nmlist
42 syntax_errors_to = postmaster@test.ex
43 file = DIR/aux-fixed/TESTNUM.$local_part
44 no_more
45
46r2:
47 driver = redirect
48 skip_syntax_errors
49 local_parts = ^filter
50 syntax_errors_to = postmaster@test.ex
51 syntax_errors_text = "There's an error in your filter file.\n\
52 The file has been ignored."
53 file = DIR/aux-fixed/TESTNUM.$local_part
54 allow_filter
55 router_home_directory = DIR
56 user = CALLER
57
58r3:
59 driver = accept
60 transport = t1
61
62# ----- Retry -----
63
64begin retry
65
66* * F,5d,5m
67
68# End