diff options
Diffstat (limited to 'lib/Net/IMAP/InterIMAP.pm')
| -rw-r--r-- | lib/Net/IMAP/InterIMAP.pm | 6 | 
1 files changed, 3 insertions, 3 deletions
| diff --git a/lib/Net/IMAP/InterIMAP.pm b/lib/Net/IMAP/InterIMAP.pm index 2e36d6e..6afca07 100644 --- a/lib/Net/IMAP/InterIMAP.pm +++ b/lib/Net/IMAP/InterIMAP.pm @@ -1627,7 +1627,7 @@ sub _proxify($$$$) {  # $self->_ssl_verify($self, $preverify_ok, $x509_ctx)  #   SSL verify callback function, see -#   https://www.openssl.org/docs/manmaster/ssl/SSL_CTX_set_verify.html +#   https://www.openssl.org/docs/manmaster/man3/SSL_CTX_set_verify.html  sub _ssl_verify($$$) {      my ($self, $ok, $x509_ctx) = @_;      return 0 unless $x509_ctx; # reject @@ -1748,10 +1748,10 @@ sub _start_ssl($$) {          $ssl_options |= $SSL_proto{$_} foreach @proto_exclude;      } -    # https://www.openssl.org/docs/manmaster/ssl/SSL_CTX_set_options.html +    # https://www.openssl.org/docs/manmaster/man3/SSL_CTX_set_options.html      Net::SSLeay::CTX_set_options($ctx, $ssl_options); -    # https://www.openssl.org/docs/manmaster/ssl/SSL_CTX_set_mode.html +    # https://www.openssl.org/docs/manmaster/man3/SSL_CTX_set_mode.html      Net::SSLeay::CTX_set_mode($ctx,          Net::SSLeay::MODE_ENABLE_PARTIAL_WRITE() |          Net::SSLeay::MODE_ACCEPT_MOVING_WRITE_BUFFER() | | 
