[Mailman-Users] 2.1.5 fedora core 3 prevent mailbody problem

Mark Sapiro msapiro at value.net
Mon Jun 13 16:59:16 CEST 2005


Andy Heath wrote:
>
>1. regex matching with some regex'es
>causes mailman to loop trying to send
>mail to the list-owner and failing.
>
>e.g.
>this seems ok
>
>subject:.*spam
>
>but this one causes looping
>
>subject:.*[SPAM].*

The upper/lower case is immaterial as thes matches ale all
'ignorecase', but you don't want the above regexp in any case since
[SPAM] is a character set so the regexp matches anything with an 's',
'p', 'a' or 'm' in the subject.

I don't know what would cause the looping, but you want at least

subject:.*\[spam\].*

as the regexp.

What are the reasons (error log, smtp-failure log ?) for the failure in
the notification 'loop'?

--
Mark Sapiro <msapiro at value.net>       The highway is for gamblers,
San Francisco Bay Area, California    better use your sense - B. Dylan




More information about the Mailman-Users mailing list