Use compressed form of ipv6 in $sender_host_address under -bh. Bug 3027
[exim.git] / test / confs / 0228
1 # Exim test configuration 0228
2
3 .include DIR/aux-var/std_conf_prefix
4
5 primary_hostname = myhost.test.ex
6
7 # ----- Main settings -----
8
9 domainlist local_domains = test.ex
10 qualify_domain = test.ex
11
12
13 # ----- Routers -----
14
15 begin routers
16
17 all:
18   driver = manualroute
19   domains = ! +local_domains
20   route_list = * 127.0.0.1 byname
21   self = send
22   transport = smtp
23   no_more
24
25
26 # ----- Transports -----
27
28 begin transports
29
30 smtp:
31   driver = smtp
32   fallback_hosts = HOSTIPV4
33   port = PORT_S
34   hosts_try_fastopen =  :
35
36
37 # ----- Retry -----
38
39 begin retry
40
41 * * F,5d,10s
42
43 # End