summaryrefslogtreecommitdiff
path: root/test/scripts/5600-OCSP-OpenSSL/5601
blob: b2983eb0d16c1e94d88ccf8aad687e693bc9f76c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
# OCSP stapling, client
#
#
# Client works when we don't demand OCSP stapling
exim -bd -oX PORT_D -DSERVER=server -DOCSP=/dev/null
****
exim nostaple@test.ex
test message.
****
sleep 1
killdaemon
#
#
#
#
# Client accepts good stapled info
exim -bd -oX PORT_D -DSERVER=server \
 -DOCSP=DIR/aux-fixed/exim-ca/example.com/server1.example.com/server1.example.com.ocsp.good.resp
****
exim CALLER@test.ex
test message.
****
sleep 1
killdaemon
#
#
#
# Client fails on lack of requested stapled info
exim -bd -oX PORT_D -DSERVER=server -DOCSP=/dev/null
****
exim CALLER@test.ex
test message.
****
sleep 1
killdaemon
no_msglog_check
#
#
#
# Client fails on revoked stapled info
EXIM_TESTHARNESS_DISABLE_OCSPVALIDITYCHECK=y exim -bd -oX PORT_D -DSERVER=server \
 -DOCSP=DIR/aux-fixed/exim-ca/example.com/server1.example.com/server1.example.com.ocsp.revoked.resp
****
exim CALLER@test.ex
test message.
****
sleep 1
killdaemon
#
#
#
#
# Client fails on expired stapled info
EXIM_TESTHARNESS_DISABLE_OCSPVALIDITYCHECK=y exim -bd -oX PORT_D -DSERVER=server \
 -DOCSP=DIR/aux-fixed/exim-ca/example.com/server1.example.com/server1.example.com.ocsp.dated.resp
****
exim CALLER@test.ex
test message.
****
sleep 1
killdaemon
#
#
#
#