Use compressed form of ipv6 in $sender_host_address under -bh. Bug 3027
[exim.git] / test / confs / 2100
1 # Exim test configuration 2100
2
3 SERVER=
4
5 .include DIR/aux-var/tls_conf_prefix
6
7 primary_hostname = myhost.test.ex
8
9 .ifdef _HAVE_TLS
10 # that was purely to trigger the lazy-create of builtin macros
11 .endif
12 # ----- Main settings -----
13
14 acl_smtp_rcpt = accept
15
16 log_selector =  +tls_peerdn
17
18 queue_only
19 queue_run_in_order
20
21 tls_advertise_hosts = *
22
23 tls_certificate = DIR/aux-fixed/cert1
24
25 tls_verify_hosts = *
26 tls_verify_certificates = DIR/aux-fixed/cert2
27
28
29 # ----- Routers -----
30
31 begin routers
32
33 client:
34   driver = accept
35   condition = ${if eq {SERVER}{server}{no}{yes}}
36   retry_use_local_part
37   transport = send_to_server
38
39
40 # ----- Transports -----
41
42 begin transports
43
44 send_to_server:
45   driver = smtp
46   allow_localhost
47   hosts = 127.0.0.1
48   port = PORT_D
49   hosts_try_fastopen = :
50   tls_certificate = DIR/aux-fixed/cert2
51   tls_privatekey = DIR/aux-fixed/cert2
52   tls_verify_certificates = DIR/aux-fixed/cert2
53   tls_try_verify_hosts = :
54
55
56 # ----- Retry -----
57
58
59 begin retry
60
61 * * F,5d,10s
62
63
64 # End