Am 12.09.2014 um 14:23 schrieb Den: > /^Subject:.*\*{5}SPAM\*{5}/ DISCARD *SPAM* > /^Subject:/ WARN > > that is without having anything before discard*spam*. Is that correct? > > I also begin to think that there is a regexp issue somewhere. Is it actually > possible for different Linux distros to treat regexpes differently requiring > regexpes to be different as well?
no but the regexp is entirely wrong * the subject starts with [SPAM] so no need for .* * {5} - what is that supposed to do? * avoid a * in the action for safety /^Subject: \[SPAM.*/ DISCARD SPAM