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