From: <jgr...@us...> - 2003-05-22 17:19:50
|
Update of /cvsroot/popfile/engine/Classifier In directory sc8-pr-cvs1:/tmp/cvs-serv31605/Classifier Modified Files: MailParse.pm Log Message: Fix http_error_ bug (not being called correctly) and make logging of connection acceptance verbose to help debug connection problems. Index: MailParse.pm =================================================================== RCS file: /cvsroot/popfile/engine/Classifier/MailParse.pm,v retrieving revision 1.129 retrieving revision 1.130 diff -C2 -d -r1.129 -r1.130 *** MailParse.pm 21 May 2003 16:05:36 -0000 1.129 --- MailParse.pm 22 May 2003 17:00:19 -0000 1.130 *************** *** 864,868 **** $self->{subject__} = ''; $self->{ut__} = ''; ! $self->{quickmagnets__} = (); $self->{htmlbackcolor__} = map_color( $self, 'white' ); --- 864,868 ---- $self->{subject__} = ''; $self->{ut__} = ''; ! $self->{quickmagnets__} = {}; $self->{htmlbackcolor__} = map_color( $self, 'white' ); *************** *** 921,925 **** $argument = ''; ! $self->{ut__} .= splitline("\015\012", 0); $self->{in_headers__} = 0; --- 921,925 ---- $argument = ''; ! $self->{ut__} .= splitline( "\015\012", 0 ); $self->{in_headers__} = 0; |