From: <jgr...@us...> - 2003-05-06 17:05:48
|
Update of /cvsroot/popfile/engine/Classifier In directory sc8-pr-cvs1:/tmp/cvs-serv14535/Classifier Modified Files: MailParse.pm Log Message: Don't allow spaces or tabs to count as invisible ink Index: MailParse.pm =================================================================== RCS file: /cvsroot/popfile/engine/Classifier/MailParse.pm,v retrieving revision 1.124 retrieving revision 1.125 diff -C2 -d -r1.124 -r1.125 *** MailParse.pm 5 May 2003 17:50:10 -0000 1.124 --- MailParse.pm 6 May 2003 17:05:45 -0000 1.125 *************** *** 334,338 **** } } else { ! if ( $bigline ne '' ) { $self->update_pseudoword( 'trick', 'invisibleink', $encoded, $bigline ); } --- 334,338 ---- } } else { ! if ( $bigline =~ /[^ \t]/ ) { $self->update_pseudoword( 'trick', 'invisibleink', $encoded, $bigline ); } |