Use compressed form of ipv6 in $sender_host_address under -bh. Bug 3027
[exim.git] / test / confs / 2120
1 # Exim test configuration 2120
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 # Ciphers string needing normalisation (the underbar)
20 tls_require_ciphers = ECDHE_RSA-AES256-SHA
21
22
23 # ----- Routers -----
24
25 begin routers
26
27 abc:
28   driver = accept
29   transport = t1
30
31
32 # ----- Transports -----
33
34 begin transports
35
36 t1:
37   driver = smtp
38   hosts = thishost.test.ex
39   allow_localhost
40   port = PORT_D
41   hosts_try_fastopen = :
42
43
44 # ----- Retry -----
45
46 begin retry
47
48 * * F,1d,1d
49
50 # End