git://git.exim.org
/
users
/
heiko
/
exim.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
Fix "-bP smtp_receive_timeout". Bug 2384
[users/heiko/exim.git]
/
test
/
confs
/
0455
1
# Exim test configuration 0455
2
3
HOSTS_MAX_TRY=4
4
5
.include DIR/aux-var/std_conf_prefix
6
7
8
# ----- Main settings -----
9
10
acl_not_smtp = non
11
12
ignore_bounce_errors_after = 0s
13
qualify_domain = test.ex
14
disable_ipv6
15
16
17
# ----- ACLs -----
18
19
begin acl
20
21
non:
22
warn senders = :
23
control = queue_only
24
accept
25
26
27
# ----- Routers -----
28
29
begin routers
30
31
r1:
32
driver = dnslookup
33
transport = smtp
34
35
36
# ----- Transports -----
37
38
begin transports
39
40
smtp:
41
driver = smtp
42
connect_timeout = 1s
43
hosts_max_try = HOSTS_MAX_TRY
44
45
46
# ----- Retry -----
47
48
begin retry
49
50
* * F,2s,1s
51
52
# End