sauce for the goose...

On Fri, 17 Jun 2005, Clint M. Sand wrote:
Anyone care to share a procmail line to destroy any message with "how do
I" "chroot" and "mysql and php"?

see  http://perlcode.org/tutorials/procmail/proctut/

HINT
By default, procmail scans only the headers of the email message.
This means that if you want your recipe to scan the body of the message,
you'll need to use the B flag

HINT
If a recipe has multiple condition lines, all of the conditions must be
true for the recipe to match. If any one of the conditions is not true,
procmail skips the remaining conditions and moves to the next recipe.


    :0 B:
    * how do I
    * chroot
    * mysql and php
    /dev/null



or block it inside another recipie perhaps

     :0
     * ^To:[EMAIL PROTECTED]
      {
        :0 B:
        * how do I
        * "chroot
        * mysql and php
        /dev/null
      }

Reply via email to