in reply to Re: Pop3client.pm win vs. linux
in thread Pop3client.pm win vs. linux
I can reach the server and port using telnet.if ( $me->{USESSL} ) { if ( $me->Port() == 110 ) { $me->Port( 995 ); } eval { require IO::Socket::SSL; }; $s = IO::Socket::SSL->new( PeerAddr => $me->Host(), PeerPort => $me->Port(), Proto => "tcp", Type => SOCK_STREAM, LocalAddr => $me->LocalAddr(), Timeout => $me->{TIMEOUT} ) or $me->Message( "could not connect SSL socket [$me->{HOST}, $me-> +{PORT}]: $!" ) and return 0; $me->{SOCKET} = $s;
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^3: Pop3client.pm win vs. linux
by stevieb (Canon) on Mar 31, 2017 at 19:04 UTC | |
by Anonymous Monk on Apr 03, 2017 at 16:32 UTC |