J?rgen Herrmann:
> Am 18.06.2014 16:19, schrieb [email protected]:
> > J?rgen Herrmann:
> >> I have a problem with the following pcre table:
> >>
> >> if !/X-Spam-Level:.*\*{7,}/
> >> /X-Spam-Flag:.*YES/ HOLD
> >> endif
As documented, this processes input one line at a time.
As documented, actions between "if !/pattern/...end" execute
only for input lines that match "if !/pattern/".
If the current header is X-Spam-Flag:, then the "if !/X-Spam-Level:/"
matches, and the /X-Spam-Flag:/ pattern executes the HOLD action.
Really, people should learn to read what the text says, instead
of reading what they want to see.
Wietse