Richard Damon wrote: > >Doesn't . only match a single character? I use filters more like > >Subject: .*remove.* > >so the .* matches any number of characters between the Subject header >and the word.
bounce_matching_headers is different from header_filter_rules. For header_filter_rules, you might want something like ^Subject:.*remove because the search is against all of the message's headers. For bounce_matching_headers, Subject: .remove. says search the subject header value for the pattern '.remove.' which ought to succeed unless 'remove is at the very beginning or end of the header. -- Mark Sapiro <[email protected]> The highway is for gamblers, San Francisco Bay Area, California better use your sense - B. Dylan ------------------------------------------------------ Mailman-Users mailing list [email protected] http://mail.python.org/mailman/listinfo/mailman-users Mailman FAQ: http://wiki.list.org/x/AgA3 Security Policy: http://wiki.list.org/x/QIA9 Searchable Archives: http://www.mail-archive.com/mailman-users%40python.org/ Unsubscribe: http://mail.python.org/mailman/options/mailman-users/archive%40jab.org
