Update of /cvsroot/mahogany/M/src/modules
In directory usw-pr-cvs1:/tmp/cvs-serv11183/src/modules

Modified Files:
        Filters.cpp 
Log Message:
count exclamation and question marks as 8 bit characters in the spam subject test

Index: Filters.cpp
===================================================================
RCS file: /cvsroot/mahogany/M/src/modules/Filters.cpp,v
retrieving revision 1.112
retrieving revision 1.113
diff -b -u -2 -r1.112 -r1.113
--- Filters.cpp 18 Jun 2002 14:48:13 -0000      1.112
+++ Filters.cpp 18 Jun 2002 18:46:44 -0000      1.113
@@ -2052,5 +2052,5 @@
    for ( const unsigned char *p = (unsigned char *)subject.c_str(); *p; p++ )
    {
-      if ( *p > 127 )
+      if ( *p > 127 || *p == '?' || *p == '!' )
       {
          if ( num8bit++ == max8bit )


----------------------------------------------------------------------------
                   Bringing you mounds of caffeinated joy
                   >>>     http://thinkgeek.com/sf    <<<

_______________________________________________
Mahogany-cvsupdates mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/mahogany-cvsupdates

Reply via email to