SA Bugzilla – Bug 2220
Meta rule raising value for mail that matches razor and dcc.
Last modified: 2004-03-06 15:43:09 UTC
The FP rate for mail that matches both razor and DCC is very low. So we can be relativelly certain that mail that matches both, is spam. What score to assign to this rule? Starting incrementally, I set the score to 1.... #matches razor and pyzor meta MATCH_RAZOR_AND_PYZOR RAZOR2_CHECK && DCC_CHECK describe MATCH_RAZOR_AND_PYZOR Message matches both DCC and Razor. score MATCH_RAZOR_AND_PYZOR 1
meta MATCH_RAZOR_AND_DCC RAZOR2_CHECK && DCC_CHECK describe MATCH_RAZOR_AND_DCC Message matches both Razor and DCC. score MATCH_RAZOR_AND_DCC 1 wrote my rules wrong, fixed. duh.
Well, such a rule might help, but probably not a huge amount: score RAZOR2_CHECK 0 0.899 0 1.047 score RAZOR2_CF_RANGE_11_50 0 0.559 0 0.876 score RAZOR2_CF_RANGE_51_100 0 1.552 0 1.101 score DCC_CHECK 0 1.806 0 2.907 So, the score is already getting at least 0.899+0.559+1.806=3.264 and probably more likely 0.899+1.552+1.806=4.257. I checked the original corpus results we used to generate those scores and found the following with our current scores: only 7% of spam matched both DCC_CHECK and RAZOR2_CHECK. Only 3% of that ended up with a score less than 5.0 (or 0.26% of the entire spam corpus run). So, this rule would only affect 0.26% of all spam. What's more, a score of 1.0 would only affect 0.12% of all spam (by correctly changing the classification from ham to spam). Anyway, I'd suggest testing the following: meta T_DIGEST_MULTIPLE (RAZOR2_CHECK + DCC_CHECK + PYZOR_CHECK > 1) describe T_DIGEST_MULTIPLE Message hits more than one network digest check score MATCH_RAZOR_AND_DCC 1.0 It affects a bit more spam.
Thanks! I think you meant this: meta T_DIGEST_MULTIPLE (RAZOR2_CHECK + DCC_CHECK + PYZOR_CHECK > 1) describe T_DIGEST_MULTIPLE Message hits more than one network digest check score T_DIGEST_MULTIPLE 1.0
added to head for testing. r7041