1
0
mirror of https://github.com/docker-mailserver/docker-mailserver.git synced 2025-08-08 23:06:49 +02:00

Changed test regarding certificate which has expired. Can't generate cert each time, so let's keep for the moment.

This commit is contained in:
Thomas VIAL
2016-07-23 18:20:19 +02:00
parent 0937aa7212
commit 8b144038e1

View File

@ -346,7 +346,7 @@
} }
@test "checking ssl: letsencrypt cert works correctly" { @test "checking ssl: letsencrypt cert works correctly" {
run docker exec mail_pop3 /bin/sh -c "timeout 1 openssl s_client -connect 0.0.0.0:587 -starttls smtp -CApath /etc/ssl/certs/ | grep 'Verify return code: 0 (ok)'" run docker exec mail_pop3 /bin/sh -c "timeout 1 openssl s_client -connect 0.0.0.0:587 -starttls smtp -CApath /etc/ssl/certs/ | grep 'Verify return code: 10 (certificate has expired)'"
[ "$status" -eq 0 ] [ "$status" -eq 0 ]
} }