Truncate delay when peer closes connection. Bug 348
[exim.git] / test / confs / 0321
CommitLineData
afda344b
PH
1# Exim test configuration 0321
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
12qualify_domain = test.ex
13
14
15# ----- Routers -----
16
17begin routers
18
19r1:
20 condition = ${if eq {$received_protocol}{scanned-ok} {0}{1}}
21 senders = ! :
22 driver = accept
23 transport = pipe
24
25r2:
26 driver = accept
27 transport = local_delivery
28
29
30# ----- Transports -----
31
32begin transports
33
34pipe:
35 driver = pipe
36 command = /non/exist/command -f <$sender_address> -d $pipe_addresses
37 message_prefix =
38 message_suffix =
39 check_string =
40 escape_string =
41 return_output = false
42 return_path_add = false
43 user = CALLER
44 path = /bin:/sbin:/usr/bin:/usr/sbin
45 current_directory = /
46
47local_delivery:
48 driver = appendfile
49 file = DIR/test-mail/$local_part
50 user = CALLER
51
52
53# ----- Retry -----
54
55begin retry
56
57* * F,5d,1d
58
59
60# End