Truncate delay when peer closes connection. Bug 348
[exim.git] / test / confs / 0455
CommitLineData
afda344b
PH
1# Exim test configuration 0455
2
3HOSTS_MAX_TRY=4
4
5exim_path = EXIM_PATH
6host_lookup_order = bydns
afda344b
PH
7spool_directory = DIR/spool
8log_file_path = DIR/spool/log/%slog
9gecos_pattern = ""
10gecos_name = CALLER_NAME
11
12# ----- Main settings -----
13
14acl_not_smtp = non
15
16ignore_bounce_errors_after = 0s
17qualify_domain = test.ex
f3d7df6c 18disable_ipv6
afda344b
PH
19
20
21# ----- ACLs -----
22
23begin acl
24
25non:
26 warn senders = :
27 control = queue_only
28 accept
29
30
31# ----- Routers -----
32
33begin routers
34
35r1:
36 driver = dnslookup
37 transport = smtp
38
39
40# ----- Transports -----
41
42begin transports
43
44smtp:
45 driver = smtp
46 connect_timeout = 1s
47 hosts_max_try = HOSTS_MAX_TRY
48
49
50# ----- Retry -----
51
52begin retry
53
54* * F,2s,1s
55
56# End