Use compressed form of ipv6 in $sender_host_address under -bh. Bug 3027
[exim.git] / test / confs / 0499
1 # Exim test configuration 0499
2
3 .include DIR/aux-var/std_conf_prefix
4
5 primary_hostname = myhost.test.ex
6
7 # ----- Main settings -----
8
9 domainlist anymx = @mx_any
10 disable_ipv6
11
12
13 # ----- Routers -----
14
15 begin routers
16
17 r1:
18   driver = accept
19   domains = +anymx
20   condition = ${if match_domain{$domain}{+anymx}{yes}}
21   transport = t1
22
23
24 # ----- Transports -----
25
26 begin transports
27
28 t1:
29   driver = smtp
30   hosts_try_fastopen =  :
31
32
33 # End