Merge branch 'master' of ssh://git.exim.org/home/git/exim
[exim.git] / test / confs / 5658
1 # Exim test configuration 5658
2 # OCSP stapling, client, tpda
3
4 SERVER =
5
6 exim_path = EXIM_PATH
7 host_lookup_order = bydns
8 primary_hostname = server1.example.com
9 rfc1413_query_timeout = 0s
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 logger:
55 warn logwrite = client ocsp status: $tls_out_ocsp \
56 (${listextract {${eval:$tls_out_ocsp+1}} \
57 {notreq:notresp:vfynotdone:failed:verified}})
58 accept
59
60
61 # ----- Routers -----
62
63 begin routers
64
65 client:
66 driver = accept
67 condition = ${if eq {SERVER}{server}{no}{yes}}
68 retry_use_local_part
69 transport = send_to_server${if eq{$local_part}{nostaple}{1} \
70 {${if eq{$local_part}{norequire} {2} \
71 {${if eq{$local_part}{smtps} {4}{3}}} \
72 }}}
73
74 server:
75 driver = redirect
76 data = :blackhole:
77 #retry_use_local_part
78 #transport = local_delivery
79
80
81 # ----- Transports -----
82
83 begin transports
84
85 local_delivery:
86 driver = appendfile
87 file = DIR/test-mail/$local_part
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 tls_verify_certificates = DIR/aux-fixed/exim-ca/example.com/CA/CA.pem
97 hosts_require_tls = *
98 hosts_request_ocsp = :
99 headers_add = X-TLS-out: OCSP status $tls_out_ocsp \
100 (${listextract {${eval:$tls_out_ocsp+1}} \
101 {notreq:notresp:vfynotdone:failed:verified}})
102 tpda_delivery_action = ${acl {logger}}
103 tpda_host_defer_action = ${acl {logger}}
104
105 send_to_server2:
106 driver = smtp
107 allow_localhost
108 hosts = HOSTIPV4
109 port = PORT_D
110 tls_verify_certificates = DIR/aux-fixed/exim-ca/example.com/CA/CA.pem
111 hosts_require_tls = *
112 # note no ocsp mention here
113 headers_add = X-TLS-out: OCSP status $tls_out_ocsp \
114 (${listextract {${eval:$tls_out_ocsp+1}} \
115 {notreq:notresp:vfynotdone:failed:verified}})
116 tpda_delivery_action = ${acl {logger}}
117 tpda_host_defer_action = ${acl {logger}}
118
119 send_to_server3:
120 driver = smtp
121 allow_localhost
122 hosts = 127.0.0.1
123 port = PORT_D
124 helo_data = helo.data.changed
125 #tls_verify_certificates = DIR/aux-fixed/exim-ca/example.com/server1.example.com/ca_chain.pem
126 tls_verify_certificates = DIR/aux-fixed/exim-ca/example.com/CA/CA.pem
127 hosts_require_tls = *
128 hosts_require_ocsp = *
129 headers_add = X-TLS-out: OCSP status $tls_out_ocsp \
130 (${listextract {${eval:$tls_out_ocsp+1}} \
131 {notreq:notresp:vfynotdone:failed:verified}})
132 tpda_delivery_action = ${acl {logger}}
133 tpda_host_defer_action = ${acl {logger}}
134
135 send_to_server4:
136 driver = smtp
137 allow_localhost
138 hosts = 127.0.0.1
139 port = PORT_D
140 helo_data = helo.data.changed
141 #tls_verify_certificates = DIR/aux-fixed/exim-ca/example.com/server1.example.com/ca_chain.pem
142 tls_verify_certificates = DIR/aux-fixed/exim-ca/example.com/CA/CA.pem
143 protocol = smtps
144 hosts_require_tls = *
145 hosts_require_ocsp = *
146 headers_add = X-TLS-out: OCSP status $tls_out_ocsp \
147 (${listextract {${eval:$tls_out_ocsp+1}} \
148 {notreq:notresp:vfynotdone:failed:verified}})
149 tpda_delivery_action = ${acl {logger}}
150 tpda_host_defer_action = ${acl {logger}}
151
152
153 # ----- Retry -----
154
155
156 begin retry
157
158 * * F,5d,1s
159
160
161 # End