You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@spamassassin.apache.org by si...@apache.org on 2007/05/05 03:30:40 UTC

svn commit: r535434 - /spamassassin/rules/trunk/sandbox/sidney/70_other.cf

Author: sidney
Date: Fri May  4 18:30:39 2007
New Revision: 535434

URL: http://svn.apache.org/viewvc?view=rev&rev=535434
Log:
add some tests to distinguish multipart/related cases

Modified:
    spamassassin/rules/trunk/sandbox/sidney/70_other.cf

Modified: spamassassin/rules/trunk/sandbox/sidney/70_other.cf
URL: http://svn.apache.org/viewvc/spamassassin/rules/trunk/sandbox/sidney/70_other.cf?view=diff&rev=535434&r1=535433&r2=535434
==============================================================================
--- spamassassin/rules/trunk/sandbox/sidney/70_other.cf (original)
+++ spamassassin/rules/trunk/sandbox/sidney/70_other.cf Fri May  4 18:30:39 2007
@@ -48,3 +48,11 @@
 # Not OE with HTML without EXTRA_MPART_TYPE
 meta T_SIDNEY_NOE_HTML_NEMPT	((!EXTRA_MPART_TYPE) && (__MIME_HTML && !(__OE_MUA && ( __OE_MSGID_1 || __OE_MSGID_2 || __OE_MSGID_3 || __UNUSABLE_MSGID))))
 
+# EXTRA_MPART_TYPE that is not MULTIPART_RELATED
+meta T_SIDNEY_EMPT_NMPREL (EXTRA_MPART_TYPE && !__MULTIPART_RELATED)
+
+# OE EXTRA_MPART_TYPE that is not MULTIPART_RELATED
+meta T_SIDNEY_EMPT_NMPREL (EXTRA_MPART_TYPE && !__MULTIPART_RELATED && __OE_MUA && ( __OE_MSGID_1 || __OE_MSGID_2 || __OE_MSGID_3 || __UNUSABLE_MSGID))
+
+# Not OE EXTRA_MPART_TYPE that is not MULTIPART_RELATED
+meta T_SIDNEY_EMPT_NMPREL (EXTRA_MPART_TYPE && !__MULTIPART_RELATED && !(__OE_MUA && ( __OE_MSGID_1 || __OE_MSGID_2 || __OE_MSGID_3 || __UNUSABLE_MSGID)))