Use compressed form of ipv6 in $sender_host_address under -bh. Bug 3027
[exim.git] / test / confs / 2020
1 # Exim test configuration 2020
2
3 SERVER=
4
5 .include DIR/aux-var/tls_conf_prefix
6
7 primary_hostname = thishost.test.ex
8
9 # ----- Main settings -----
10
11 acl_smtp_rcpt = accept
12
13 log_selector = +tls_peerdn
14
15 queue_only
16
17 tls_advertise_hosts = *
18
19 # ----- Routers -----
20
21 begin routers
22
23 abc:
24   driver = accept
25   transport = t1
26
27
28 # ----- Transports -----
29
30 begin transports
31
32 t1:
33   driver = smtp
34   hosts = thishost.test.ex
35   allow_localhost
36   port = PORT_D
37   hosts_try_fastopen = :
38
39
40 # ----- Retry -----
41
42 begin retry
43
44 * * F,1d,1d
45
46 # End