Use compressed form of ipv6 in $sender_host_address under -bh. Bug 3027
[exim.git] / test / confs / 5651
1 # Exim test configuration 5651
2 # OCSP stapling, client
3
4 SERVER =
5
6 exim_path = EXIM_PATH
7 keep_environment  = ^EXIM_TESTHARNESS_DISABLE_[O]CSPVALIDITYCHECK$
8 host_lookup_order = bydns
9 spool_directory = DIR/spool
10 log_file_path = DIR/spool/log/SERVER%slog
11 gecos_pattern = ""
12 gecos_name = CALLER_NAME
13 chunking_advertise_hosts =
14 primary_hostname = server1.example.com
15
16 .ifdef _HAVE_DMARC
17 dmarc_tld_file =
18 .endif
19
20
21 # ----- Main settings -----
22
23 domainlist local_domains = test.ex : *.test.ex
24
25 acl_smtp_rcpt = check_recipient
26 acl_smtp_data = check_data
27
28 log_selector = +tls_peerdn
29 remote_max_parallel = 1
30
31 tls_advertise_hosts = *
32
33 # Set certificate only if server
34 tls_certificate = ${if eq {SERVER}{server}\
35 {DIR/aux-fixed/exim-ca/example.com/server1.example.com/server1.example.com.chain.pem}\
36 fail\
37 }
38 tls_privatekey = ${if eq {SERVER}{server}\
39 {DIR/aux-fixed/exim-ca/example.com/server1.example.com/server1.example.com.unlocked.key}\
40 fail}
41
42 # from cmdline define
43 tls_ocsp_file = OPT
44
45
46 # ------ ACL ------
47
48 begin acl
49
50 check_recipient:
51   accept  domains = +local_domains
52   deny    message = relay not permitted
53
54 check_data:
55   warn    condition   = ${if def:h_X-TLS-out:}
56           logwrite = client claims: $h_X-TLS-out:
57   accept
58
59
60 # ----- Routers -----
61
62 begin routers
63
64 client:
65   driver = accept
66   condition = ${if eq {SERVER}{server}{no}{yes}}
67   retry_use_local_part
68   transport = send_to_server${if eq{$local_part}{nostaple}{1} \
69                                 {${if eq{$local_part}{norequire} {2} \
70                                 {${if eq{$local_part}{smtps} {4}{3}}} \
71                              }}}
72
73 server:
74   driver = redirect
75   data = :blackhole:
76   #retry_use_local_part
77   #transport = local_delivery
78
79
80 # ----- Transports -----
81
82 begin transports
83
84 local_delivery:
85   driver = appendfile
86   file = DIR/test-mail/$local_part
87   create_file = DIR/test-mail
88   headers_add = TLS: cipher=$tls_cipher peerdn=$tls_peerdn
89   user = CALLER
90
91 send_to_server1:
92   driver = smtp
93   allow_localhost
94   hosts = HOSTIPV4
95   port = PORT_D
96   hosts_try_fastopen =  :
97   tls_verify_certificates = DIR/aux-fixed/exim-ca/example.com/CA/CA.pem
98   tls_verify_cert_hostnames =
99   hosts_require_tls = *
100   hosts_request_ocsp = :
101   headers_add = X-TLS-out: OCSP status $tls_out_ocsp \
102     (${listextract {${eval:$tls_out_ocsp+1}} \
103                 {notreq:notresp:vfynotdone:failed:verified}})
104
105 send_to_server2:
106   driver = smtp
107   allow_localhost
108   hosts = HOSTIPV4
109   port = PORT_D
110   hosts_try_fastopen =  :
111   tls_verify_certificates = DIR/aux-fixed/exim-ca/example.com/CA/CA.pem
112   tls_verify_cert_hostnames =
113   hosts_require_tls = *
114 # note no ocsp mention here
115   headers_add = X-TLS-out: OCSP status $tls_out_ocsp \
116     (${listextract {${eval:$tls_out_ocsp+1}} \
117                 {notreq:notresp:vfynotdone:failed:verified}})
118
119 send_to_server3:
120   driver = smtp
121   allow_localhost
122   hosts = 127.0.0.1
123   port = PORT_D
124   hosts_try_fastopen =  :
125   helo_data = helo.data.changed
126   #tls_verify_certificates = DIR/aux-fixed/exim-ca/example.com/server1.example.com/ca_chain.pem
127   tls_verify_certificates = DIR/aux-fixed/exim-ca/example.com/CA/CA.pem
128   tls_try_verify_hosts =
129   tls_verify_cert_hostnames =
130   hosts_require_tls =  *
131   hosts_require_ocsp = *
132   headers_add = X-TLS-out: OCSP status $tls_out_ocsp \
133     (${listextract {${eval:$tls_out_ocsp+1}} \
134                 {notreq:notresp:vfynotdone:failed:verified}})
135
136 send_to_server4:
137   driver = smtp
138   allow_localhost
139   hosts = 127.0.0.1
140   port = PORT_D
141   hosts_try_fastopen =  :
142   helo_data = helo.data.changed
143   #tls_verify_certificates = DIR/aux-fixed/exim-ca/example.com/server1.example.com/ca_chain.pem
144   tls_verify_certificates = DIR/aux-fixed/exim-ca/example.com/CA/CA.pem
145   tls_verify_cert_hostnames =
146   protocol =           smtps
147   hosts_require_tls =  *
148   hosts_require_ocsp = *
149   headers_add = X-TLS-out: OCSP status $tls_out_ocsp \
150     (${listextract {${eval:$tls_out_ocsp+1}} \
151                 {notreq:notresp:vfynotdone:failed:verified}})
152
153
154 # ----- Retry -----
155
156
157 begin retry
158
159 * * F,5d,1s
160
161
162 # End