Use compressed form of ipv6 in $sender_host_address under -bh. Bug 3027
[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   hosts_try_fastopen =  :
43   connect_timeout = 1s
44   hosts_max_try = HOSTS_MAX_TRY
45
46
47 # ----- Retry -----
48
49 begin retry
50
51 *                *  F,2s,1s
52
53 # End