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