|
From: <jgr...@us...> - 2003-08-01 02:45:45
|
Update of /cvsroot/popfile/engine/Proxy
In directory sc8-pr-cvs1:/tmp/cvs-serv10736/Proxy
Modified Files:
POP3.pm
Log Message:
Fix bug in our AUTH handling
Index: POP3.pm
===================================================================
RCS file: /cvsroot/popfile/engine/Proxy/POP3.pm,v
retrieving revision 1.71
retrieving revision 1.72
diff -C2 -d -r1.71 -r1.72
*** POP3.pm 1 Aug 2003 00:50:54 -0000 1.71
--- POP3.pm 1 Aug 2003 02:45:42 -0000 1.72
***************
*** 215,225 ****
while ( ( ! ( $response =~ /\+OK/ ) ) && ( ! ( $response =~ /-ERR/ ) ) ) {
-
- # Check for an abort
-
- if ( $self->{alive} == 0 ) {
- last;
- }
-
my $auth;
$auth = <$client>;
--- 215,218 ----
|