Use compressed form of ipv6 in $sender_host_address under -bh. Bug 3027
[exim.git] / test / confs / 2025
1 # Exim test configuration 2025
2
3 SERVER=
4
5 .include DIR/aux-var/tls_conf_prefix
6
7 primary_hostname = myhost.test.ex
8
9 # ----- Main settings -----
10
11 acl_smtp_rcpt = accept
12
13 log_selector =  +tls_peerdn+tls_certificate_verified
14
15 queue_only
16 queue_run_in_order
17
18 tls_advertise_hosts = *
19 tls_require_ciphers = NORMAL:-VERS-ALL:+VERS-TLS1.2:-MAC-ALL:+SHA256
20 tls_certificate =     DIR/aux-fixed/cert1
21
22
23 # ----- Routers -----
24
25 begin routers
26
27 client:
28   driver = accept
29   condition = ${if eq {SERVER}{server}{no}{yes}}
30   retry_use_local_part
31   transport = send_to_server
32
33
34 # ----- Transports -----
35
36 begin transports
37
38 send_to_server:
39   driver = smtp
40   allow_localhost
41   hosts = HOSTIPV4 : 127.0.0.1
42   port = PORT_D
43   hosts_try_fastopen =  :
44   hosts_require_tls = HOSTIPV4
45   tls_require_ciphers = NORMAL:-VERS-ALL:+VERS-TLS1.2:-MAC-ALL:+SHA\
46          ${if eq{$host}{HOSTIPV4} {384} {256} }
47
48 # ----- Retry -----
49
50
51 begin retry
52
53 * * F,5d,10s
54
55
56 # End