Use compressed form of ipv6 in $sender_host_address under -bh. Bug 3027
[exim.git] / test / confs / 0342
1 # Exim test configuration 0342
2
3 .include DIR/aux-var/std_conf_prefix
4
5 primary_hostname = myhost.test.ex
6
7 # ----- Main settings -----
8
9 acl_smtp_rcpt = check_rcpt
10
11
12 # ----- ACLs -----
13
14 begin acl
15
16 check_rcpt:
17   deny   message = unverifiable
18         !verify  = recipient
19   accept
20
21
22 # ----- Routers -----
23
24 begin routers
25
26 dnslookup:
27   driver = dnslookup
28   transport = remote_smtp
29   widen_domains = test.ex
30
31
32 # ----- Transports -----
33
34 begin transports
35
36 remote_smtp:
37   driver = smtp
38   hosts_try_fastopen =  :
39
40
41 # ----- Retry -----
42
43
44 begin retry
45
46 * * F,5d,10s
47
48
49 # End