procmail
[Top] [All Lists]

Re: regex syntax question

2004-03-02 06:28:20
Ruud wrote,

But if you want to find a word throughout the whole message:

  :0
  * HB ?? \<some-word\>
  some-action

The condition should be

  * HB ?? ()\<some-word\>

or (not necessarily less expensive)

  :0
  * 9876543210^0  ^Subject:.*\<some-word\>
  * 9876543210^0  B ?? \<some-word\>
  some-action

The second condition should be

  * 9876543210^0  B ?? ()\<some-word\>


_______________________________________________
procmail mailing list
procmail(_at_)lists(_dot_)RWTH-Aachen(_dot_)DE
http://MailMan.RWTH-Aachen.DE/mailman/listinfo/procmail

<Prev in Thread] Current Thread [Next in Thread>