Update of /cvsroot/popfile/engine/Proxy
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv12838
Modified Files:
Tag: b0_22_2
POP3.pm
Log Message:
Default to port 995 for SSL
Index: POP3.pm
===================================================================
RCS file: /cvsroot/popfile/engine/Proxy/POP3.pm,v
retrieving revision 1.105
retrieving revision 1.105.4.1
diff -C2 -d -r1.105 -r1.105.4.1
*** POP3.pm 29 Nov 2004 21:47:04 -0000 1.105
--- POP3.pm 14 Sep 2005 19:30:29 -0000 1.105.4.1
***************
*** 250,254 ****
my $ssl = defined( $options ) && ( $options =~ /ssl/i );
! $port = 110 if ( !defined( $port ) );
if ( $mail = $self->verify_connected_( $mail, $client,
--- 250,254 ----
my $ssl = defined( $options ) && ( $options =~ /ssl/i );
! $port = $ssl?995:110 if ( !defined( $port ) );
if ( $mail = $self->verify_connected_( $mail, $client,
|