|
From: <jgr...@us...> - 2003-10-30 14:40:25
|
Update of /cvsroot/popfile/engine/Classifier
In directory sc8-pr-cvs1:/tmp/cvs-serv1642/Classifier
Modified Files:
MailParse.pm
Log Message:
Remove useless call to compute_html_color_distance
Index: MailParse.pm
===================================================================
RCS file: /cvsroot/popfile/engine/Classifier/MailParse.pm,v
retrieving revision 1.172
retrieving revision 1.173
diff -C2 -d -r1.172 -r1.173
*** MailParse.pm 28 Oct 2003 17:28:02 -0000 1.172
--- MailParse.pm 30 Oct 2003 14:40:22 -0000 1.173
***************
*** 422,426 ****
# bound for tracking evil spammer tricks with similar colors
- $self->compute_html_color_distance();
if ( $self->{htmlcolordistance__} < 100 ) {
$self->update_pseudoword( 'html', "colordistance$self->{htmlcolordistance__}", $encoded, '' );
--- 422,425 ----
***************
*** 441,447 ****
if ( defined( $to ) ) {
!
# HTML entities confilict with DBCS chars. Replace entities with blanks.
!
if ( $self->{lang__} eq 'Korean' ) {
$to = ' ';
--- 440,446 ----
if ( defined( $to ) ) {
!
# HTML entities confilict with DBCS chars. Replace entities with blanks.
!
if ( $self->{lang__} eq 'Korean' ) {
$to = ' ';
|