Update of /cvsroot/popfile/engine/Proxy
In directory sc8-pr-cvs1:/tmp/cvs-serv11512/Proxy
Modified Files:
Proxy.pm
Log Message:
Fix bug 829947: modify verify_connected_ so that if we connect and then get no response it returns an error code; not doing this could be causing a deadlock between the MUA and POPFile
Index: Proxy.pm
===================================================================
RCS file: /cvsroot/popfile/engine/Proxy/Proxy.pm,v
retrieving revision 1.37
retrieving revision 1.38
diff -C2 -d -r1.37 -r1.38
*** Proxy.pm 6 Oct 2003 13:54:30 -0000 1.37
--- Proxy.pm 31 Oct 2003 16:17:15 -0000 1.38
***************
*** 659,663 ****
my $selector = new IO::Select( $mail );
! return undef unless () = $selector->can_read($self->global_config_( 'timeout' ));
# Read the response from the real server and say OK
--- 659,663 ----
my $selector = new IO::Select( $mail );
! last unless () = $selector->can_read($self->global_config_( 'timeout' ));
# Read the response from the real server and say OK
|