60c175b53863ae307cfa20d1866e307a6f256565
[exim.git] / test / confs / 5740
1 # Exim test configuration 5740
2 # OCSP stapling, client, events
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 +received_recipients
29 remote_max_parallel = 1
30
31 tls_advertise_hosts = *
32
33 # Set certificate only if server
34
35 tls_certificate = ${if eq {SERVER}{server}\
36 {DIR/aux-fixed/exim-ca/example.com/server1.example.com/server1.example.com.chain.pem}\
37 fail\
38 }
39
40 #{DIR/aux-fixed/exim-ca/example.com/CA/CA.pem}\
41
42 tls_privatekey = ${if eq {SERVER}{server}\
43 {DIR/aux-fixed/exim-ca/example.com/server1.example.com/server1.example.com.unlocked.key}\
44 fail}
45
46 tls_ocsp_file = RETURN
47
48
49 # ------ ACL ------
50
51 begin acl
52
53 check_recipient:
54 accept domains = +local_domains
55 deny message = relay not permitted
56
57 check_data:
58 warn condition = ${if def:h_X-TLS-out:}
59 logwrite = client claims: $h_X-TLS-out:
60 accept
61
62 logger:
63 accept condition = ${if !eq {msg} {${listextract{1}{$event_name}}}}
64 warn logwrite = client ocsp status: $tls_out_ocsp \
65 (${listextract {${eval:$tls_out_ocsp+1}} \
66 {notreq:notresp:vfynotdone:failed:verified}})
67 accept
68
69 # ----- Routers -----
70
71 begin routers
72
73 client:
74 driver = accept
75 condition = ${if eq {SERVER}{server}{no}{yes}}
76 retry_use_local_part
77 transport = send_to_server${if eq{$local_part}{nostaple}{1} \
78 {${if match{$local_part}{norequire} {2} \
79 {${if eq{$local_part}{smtps} {4}{3}}} \
80 }}}
81
82 server:
83 driver = redirect
84 data = :blackhole:
85 #retry_use_local_part
86 #transport = local_delivery
87
88
89 # ----- Transports -----
90
91 begin transports
92
93 local_delivery:
94 driver = appendfile
95 file = DIR/test-mail/$local_part
96 headers_add = TLS: cipher=$tls_cipher peerdn=$tls_peerdn
97 user = CALLER
98
99 # nostaple: deliberately do not request cert-status
100 send_to_server1:
101 driver = smtp
102 allow_localhost
103 hosts = HOSTIPV4
104 port = PORT_D
105 hosts_try_fastopen = :
106 tls_verify_certificates = DIR/aux-fixed/exim-ca/example.com/CA/CA.pem
107 tls_verify_cert_hostnames =
108 hosts_require_tls = *
109 hosts_request_ocsp = :
110 headers_add = X-TLS-out: ocsp status $tls_out_ocsp
111 event_action = ${acl {logger}}
112
113 # norequire: request stapling but do not verify
114 send_to_server2:
115 driver = smtp
116 allow_localhost
117 hosts = HOSTIPV4
118 port = PORT_D
119 hosts_try_fastopen = :
120 tls_verify_certificates = DIR/aux-fixed/exim-ca/example.com/CA/CA.pem
121 tls_verify_cert_hostnames =
122 hosts_require_tls = *
123 # note no ocsp mention here
124 headers_add = X-TLS-out: ocsp status $tls_out_ocsp
125 event_action = ${acl {logger}}
126
127 # (any other name): request and verify
128 send_to_server3:
129 driver = smtp
130 allow_localhost
131 hosts = 127.0.0.1
132 port = PORT_D
133 hosts_try_fastopen = :
134 helo_data = helo.data.changed
135 tls_verify_certificates = DIR/aux-fixed/exim-ca/example.com/CA/CA.pem
136 tls_verify_cert_hostnames =
137 hosts_require_tls = *
138 hosts_require_ocsp = *
139 headers_add = X-TLS-out: ocsp status $tls_out_ocsp
140 event_action = ${acl {logger}}
141
142 # (any other name): request and verify, ssl-on-connect
143 send_to_server4:
144 driver = smtp
145 allow_localhost
146 hosts = 127.0.0.1
147 port = PORT_D
148 hosts_try_fastopen = :
149 helo_data = helo.data.changed
150 tls_verify_certificates = DIR/aux-fixed/exim-ca/example.com/CA/CA.pem
151 tls_verify_cert_hostnames =
152 protocol = smtps
153 hosts_require_tls = *
154 hosts_require_ocsp = *
155 headers_add = X-TLS-out: ocsp status $tls_out_ocsp
156 event_action = ${acl {logger}}
157
158
159 # ----- Retry -----
160
161
162 begin retry
163
164 * * F,5d,1s
165
166
167 # End