|
From: <jgr...@us...> - 2003-07-30 22:49:01
|
Update of /cvsroot/popfile/engine/Proxy
In directory sc8-pr-cvs1:/tmp/cvs-serv18440/Proxy
Modified Files:
POP3.pm
Log Message:
If the USER command fails wait for another command from the server so that the client can send QUIT
Index: POP3.pm
===================================================================
RCS file: /cvsroot/popfile/engine/Proxy/POP3.pm,v
retrieving revision 1.63
retrieving revision 1.64
diff -C2 -d -r1.63 -r1.64
*** POP3.pm 26 Jul 2003 18:28:28 -0000 1.63
--- POP3.pm 30 Jul 2003 22:48:58 -0000 1.64
***************
*** 153,157 ****
$self->echo_response_($mail, $client, 'USER ' . $4 );
} else {
! last;
}
} else {
--- 153,161 ----
$self->echo_response_($mail, $client, 'USER ' . $4 );
} else {
!
! # If the login fails then we want to continue in the unlogged in state
! # so that clients can send us the QUIT command
!
! next;
}
} else {
|