(how did you get the error messages? Mine don't.....)
You have to enclose each pattern in slashes, possibly with a trailing
modifier:
/<html>/i rather than <html>
(the trailing i means "ignore case")
This will stop all messages about HTML, probably...the RIGHT way to stop
HTML-only messages is:
taboo_headers <<END
/^Content-type: text\/html/i
END
The backslash is needed because the slash terminates the regexp.
Majordomo doesn't know about MIME attachments, so you have to match the
header in the body:
taboo_body <<END
/^Content-type: text\/html/i
END
Or, something which will catch a few more, but looks stranger:
/^Content-type:\s*text\s^*\/html/i
Similar things for RTF, once you find out what the people sending to
your lists call RTF.....
Harald A
--
Harald Tveit Alvestrand, Maxware, Norway
Harald.Alvestrand@maxware.no
Follow-Ups:
References:
|
|