diff options
author | Guilhem Moulin <guilhem@fripost.org> | 2015-09-16 16:49:00 +0200 |
---|---|---|
committer | Guilhem Moulin <guilhem@fripost.org> | 2015-09-16 16:50:31 +0200 |
commit | 0e1e8e06debc4d7b00670eaa981ca5b382d90591 (patch) | |
tree | 66fe976371bdec5a014e14ab954a44fe20256cab /lib/Net | |
parent | 40864537f86e31e037a1232f015a06e9d73bf1e6 (diff) |
Set X.509 certificate purpose to 'SSL Server' for SSL_verify=YES.
Diffstat (limited to 'lib/Net')
-rw-r--r-- | lib/Net/IMAP/InterIMAP.pm | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/lib/Net/IMAP/InterIMAP.pm b/lib/Net/IMAP/InterIMAP.pm index a0be91e..53fddec 100644 --- a/lib/Net/IMAP/InterIMAP.pm +++ b/lib/Net/IMAP/InterIMAP.pm @@ -1398,6 +1398,8 @@ sub _start_ssl($$) { or $self->_ssl_error("Can't load verify locations"); } Net::SSLeay::CTX_set_verify($ctx, Net::SSLeay::VERIFY_PEER()); + Net::SSLeay::CTX_set_purpose($ctx, Net::SSLeay::X509_PURPOSE_SSL_SERVER()) + or $self->_ssl_error("Can't set purpose"); } else { Net::SSLeay::CTX_set_verify($ctx, Net::SSLeay::VERIFY_NONE()); |