about summary refs log tree commit
path: root/lib/Net/POP3.pm
diff options
context:
space:
mode:
Diffstat (limited to 'lib/Net/POP3.pm')
-rw-r--r--lib/Net/POP3.pm4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/Net/POP3.pm b/lib/Net/POP3.pm
index d65461b..d568d94 100644
--- a/lib/Net/POP3.pm
+++ b/lib/Net/POP3.pm
@@ -25,11 +25,11 @@ our $VERSION = "3.01";
 my $ssl_class = eval {
   require IO::Socket::SSL;
   # first version with default CA on most platforms
-  IO::Socket::SSL->VERSION(1.968);
+  IO::Socket::SSL->VERSION(1.999);
 } && 'IO::Socket::SSL';
 
 my $nossl_warn = !$ssl_class &&
-  'To use SSL please install IO::Socket::SSL with version>=1.968';
+  'To use SSL please install IO::Socket::SSL with version>=1.999';
 
 # Code for detecting if we can use IPv6
 my $inet6_class = eval {