Use compressed form of ipv6 in $sender_host_address under -bh. Bug 3027
[exim.git] / test / confs / 0615
1 # Exim test configuration 0615
2 # Send many messages in hopes of tripping continuation records code
3
4 hostlist loopback = <; 127.0.0.0/8 ; 0.0.0.0 ; ::1 ; 0000:0000:0000:0000:0000:ffff
5 untrusted_set_sender = *
6
7 SERVER =
8
9 .include DIR/aux-var/std_conf_prefix
10
11 rfc1413_query_timeout = 0s
12 log_selector = +sender_on_delivery +millisec
13
14 # ----- Main settings -----
15
16 acl_smtp_rcpt = accept
17
18 queue_only
19 queue_run_in_order
20
21 # ----- Routers -----
22
23 begin routers
24
25 client:
26   driver = accept
27   condition = ${if eq {SERVER}{server}{no}{yes}}
28   transport = send_to_server
29
30 server:
31   driver = accept
32   transport = send_to_server
33
34
35 # ----- Transports -----
36
37 begin transports
38
39 send_to_server:
40   driver = smtp
41   connection_max_messages = 0
42   allow_localhost
43   hosts = 127.0.0.1
44   port = PORT_D
45   hosts_try_fastopen = :
46   # assumes that HOSTIPV4 can sent to 127.0.0.1
47   interface = ${if eq {$sender_address_domain}{dustybelt.tld} {127.0.0.1}{HOSTIPV4}}
48
49 # ----- Retry -----
50
51 begin retry
52
53 * * F,5d,10s
54
55 # End
56