Revision 1 as of 2008-05-28 20:27:48

Clear message

3.32. What's the regex syntax for header filter rules (in privacy options/spam filters)?

See also <http://www.python.org/cgi-bin/faqw-mm.py?req=show&file=faq03.033.htp>

Use this regexp to match messages with the word "Phentermine" (a well-known spam word) in their subject:

^Subject: .*Phentermine

or

\nSubject: .*Phentermine

Note that the entries in header filter rules are Python regular expressions. They are searched (not matched) in multiline mode ignoring case against a long string consisting of all the message headers and mime part headers strung together and separated by newline (\n) characters.

Note that prior to Mailman 2.1.6, the header string contained only the message headers and not the part headers, and prior to Mailman 2.1.7, the search was not done in multiline mode so only the second form with '\n' and not '^' would work.

See the section on 'Regular expression operations' under 'String Services' (currently section 4.2 but subject to change) at <http://docs.python.org/lib/lib.html&gt;.

Last changed on Sat Mar 1 04:44:16 2008 by Mark Sapiro Converted from the Mailman FAQ Wizard

This is one of many Frequently Asked Questions.