Use compressed form of ipv6 in $sender_host_address under -bh. Bug 3027
[exim.git] / test / confs / 0160
1 # Exim test configuration 0160
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 : *.test.ex
10
11 ignore_bounce_errors_after = 0s
12 queue_only
13
14 # ----- Routers -----
15
16 begin routers
17
18 all:
19   driver = manualroute
20   domains = ! +local_domains
21   route_list = * 127.0.0.1 byname
22   self = send
23   transport = smtp
24   no_more
25
26
27 # ----- Transports -----
28
29 begin transports
30
31 smtp:
32   driver = smtp
33   port = PORT_S
34   hosts_try_fastopen =  :
35
36
37 # ----- Retry -----
38
39
40 begin retry
41
42 * * F,2s,1s
43
44
45 # End