You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@spamassassin.apache.org by wt...@apache.org on 2011/01/01 23:53:30 UTC

svn commit: r1054307 - /spamassassin/trunk/rulesrc/sandbox/wtogami/20_vanity.cf

Author: wtogami
Date: Sat Jan  1 22:53:30 2011
New Revision: 1054307

URL: http://svn.apache.org/viewvc?rev=1054307&view=rev
Log:
Catch some new variations of VANITY spam.

Modified:
    spamassassin/trunk/rulesrc/sandbox/wtogami/20_vanity.cf

Modified: spamassassin/trunk/rulesrc/sandbox/wtogami/20_vanity.cf
URL: http://svn.apache.org/viewvc/spamassassin/trunk/rulesrc/sandbox/wtogami/20_vanity.cf?rev=1054307&r1=1054306&r2=1054307&view=diff
==============================================================================
--- spamassassin/trunk/rulesrc/sandbox/wtogami/20_vanity.cf (original)
+++ spamassassin/trunk/rulesrc/sandbox/wtogami/20_vanity.cf Sat Jan  1 22:53:30 2011
@@ -1,39 +1,42 @@
 # VANTIY SPAM
 # Who's Who and other types of fake or vanity awards.
 # TODO: Simplify to fewer patterns after some nightly masscheck results.
-meta VANITY		(__KNOWN_VANITY && (__NO_COST + __INFORM_YOU + __INNERCIRCLE + __SHMUCK + __EXECS_PROS + __PUB_DEADLINE + __REGISTRY + __NOMINATION + __BIOGRAPHY + __ACCOLADES + __RECOGNITION + __DISTINGUISHED + __EXCELLENCE + __ACHIEVEMENT + __CBNVANITY > 3)) || (__BESTOFAWARD && (__SBCAVANITY || __USCAVANITY))
+meta VANITY		(__V_KNOWN_VANITY && (__V_NO_COST + __V_INFORM_YOU + __V_INNERCIRCLE + __V_SHMUCK + __V_EXECS_PROS + __V_PUB_DEADLINE + __V_REGISTRY + __V_NOMINATION + __V_BIOGRAPHY + __V_ACCOLADES + __V_RECOGNITION + __V_DISTINGUISHED + __V_EXCELLENCE + __V_ACHIEVEMENT > 3)) || (__V_BESTOFAWARD && (__V_SBCAVANITY || __V_USCAVANITY))
 describe VANITY Vanity or fake awards
 score VANITY 2.3
 
 # Known Vanity Spammers
-meta __KNOWN_VANITY	__PRINCETONPRE || __WHOSWHO || __DPHPVANITY
-body __PRINCETONPRE	/\bPrinceton Premier/
-body __WHOSWHO		/\bWho.s Who\b/
+meta __V_KNOWN_VANITY	__V_PRINCETONPRE || __V_WHOSWHO || __V_DPHPVANITY || __V_CBNVANITY || __V_HONOR_SOCIETY
+body __V_PRINCETONPRE	/\bPrinceton Premier/
+body __V_WHOSWHO		/\bWho.s Who\b/
 # 20091203
-body __DPHPVANITY	/\bDistinguished Professionals Hardcover Publication\b/
-# # 20091211
-body __CBNVANITY	/\bContinental Broadcasting Network\b/
+body __V_DPHPVANITY	/\bDistinguished Professionals Hardcover Publication\b/
+# 20091211
+body __V_CBNVANITY	/\bContinental Broadcasting Network\b/
+# 20110101
+body __V_HONOR_SOCIETY /\bHonor Society\b/
 
 # Typical Patterns
-body __NO_COST		/\b(?:no costs?|cost-? *free|free of costs?|no fees?|neither cost nor obligation)\b/i
-body __INFORM_YOU	/\b(?:pleased?|pleasure) to inform you\b/
-body __INNERCIRCLE	/\bInner Circle\b/
+body __V_NO_COST		/\b(?:no costs?|cost-? *free|free of costs?|no fees?|neither cost nor obligation)\b/i
+body __V_INFORM_YOU	/\b(?:pleased?|pleasure) to inform you\b/
+body __V_INNERCIRCLE	/\bInner Circle\b/
 # Honored People
-body __SHMUCK		/\b(?:accomplished|distinguished|exceptional|talented|calibre of) +(?:professionals?|individuals?)\b/i
-body __EXECS_PROS	/\bexecutives? (?:and|&) professionals?\b/i
+body __V_SHMUCK		/\b(?:accomplished|distinguished|exceptional|talented|calibre of) +(?:professionals?|individuals?)\b/i
+body __V_EXECS_PROS	/\bexecutives? (?:and|&) professionals?\b/i
 # Registry Application
-body __PUB_DEADLINE	/\bpublication deadlines?\b/i
-body __REGISTRY	/\bregistry\b/i
-body __NOMINATION	/\b(?:nominated|nomination)\b/i
-body __BIOGRAPHY	/\b(?:biography|biographies|biographical)\b/i
+body __V_PUB_DEADLINE	/\bpublication deadlines?\b/i
+body __V_REGISTRY	/\bregistry\b/i
+body __V_NOMINATION	/\b(?:nominated|nomination|potential candidate)\b/i
+body __V_BIOGRAPHY	/\b(?:biography|biographies|biographical)\b/i
+body __V_SECONDARYSOURCES /\bsecondary sources\b/i
 # Flattery
-body __ACCOLADES	/\baccolades?\b/i
-body __RECOGNITION	/\brecognition\b/i
-body __DISTINGUISHED	/\bdistinguished\b/i
-body __EXCELLENCE	/\b(?:demonstrated|commitment to) excellence\b/i
-body __ACHIEVEMENT	/\bbenchmark of achievement\b/i
+body __V_ACCOLADES	/\baccolades?\b/i
+body __V_RECOGNITION	/\brecognition\b/i
+body __V_DISTINGUISHED	/\bdistinguished\b/i
+body __V_EXCELLENCE	/\b(?:demonstrated|commitment to) excellence\b/i
+body __V_ACHIEVEMENT	/\bbenchmark of achievement\b/i
 # SBCA 20091023
-body __BESTOFAWARD	/\bBest of \w+ Award/
-body __SBCAVANITY	/\bSmall Business Commerce Association/
+body __V_BESTOFAWARD	/\bBest of \w+ Award/
+body __V_SBCAVANITY	/\bSmall Business Commerce Association/
 # USCA 20091024
-body __USCAVANITY	/\bUS Commerce Association/
+body __V_USCAVANITY	/\bUS Commerce Association/