From: <ssc...@us...> - 2003-04-15 07:31:05
|
Update of /cvsroot/popfile/engine/Proxy In directory sc8-pr-cvs1:/tmp/cvs-serv23988 Modified Files: Proxy.pm Log Message: fix null-response handling was causing hangs if servers returned an error and disconnecting immediately on verify_connected Index: Proxy.pm =================================================================== RCS file: /cvsroot/popfile/engine/Proxy/Proxy.pm,v retrieving revision 1.12 retrieving revision 1.13 diff -C2 -d -r1.12 -r1.13 *** Proxy.pm 25 Mar 2003 05:24:56 -0000 1.12 --- Proxy.pm 15 Apr 2003 07:31:01 -0000 1.13 *************** *** 464,468 **** } ! if (!null_resp) { # An error has occurred reading from the mail server $self->tee_( $client, "$self->{connection_timeout_error_}$eol" ); --- 464,468 ---- } ! if (!$null_resp) { # An error has occurred reading from the mail server $self->tee_( $client, "$self->{connection_timeout_error_}$eol" ); |