|
From: <jgr...@us...> - 2003-10-14 16:15:32
|
Update of /cvsroot/popfile/engine/Proxy
In directory sc8-pr-cvs1:/tmp/cvs-serv4955/Proxy
Modified Files:
POP3.pm
Log Message:
Fix a bug where the HTML parser was NOT turning CR/LF into whitespace and update the test suite
Index: POP3.pm
===================================================================
RCS file: /cvsroot/popfile/engine/Proxy/POP3.pm,v
retrieving revision 1.79
retrieving revision 1.80
diff -C2 -d -r1.79 -r1.80
*** POP3.pm 13 Oct 2003 20:23:40 -0000 1.79
--- POP3.pm 14 Oct 2003 16:15:27 -0000 1.80
***************
*** 329,333 ****
if ( $2 ne '99999999' ) {
! if ( $self->config_( 'toptoo' ) ) {
my $response = $self->echo_response_($mail, $client, "RETR $count" );
last if ( $response == 2 );
--- 329,333 ----
if ( $2 ne '99999999' ) {
! if ( $self->config_( 'toptoo' ) == 1 ) {
my $response = $self->echo_response_($mail, $client, "RETR $count" );
last if ( $response == 2 );
|