procmail
[Top] [All Lists]

Re: What did I do wrong?

1997-08-22 10:42:24
        Author:         Wotan <wotan(_at_)netcom(_dot_)com>
        Original-Date:  Fri, 22 Aug 1997 09:32:16 -0700 (MST)
        Message-ID:     
<Pine(_dot_)SUN(_dot_)3(_dot_)95(_dot_)970822092850(_dot_)26164A-100000(_at_)netcom12>

Without it, the output of the script did some truly nasty things to my
mail.  Now I just get foo(_at_)bar messages that get filtered as spam.

 > :0 wfi
 > *^From:.*wotan
 > *^Subject: post this
 > |$HOME/bin/post1 > /dev/null

Perhaps:

:0 wfi
*^From:.*wotan
*^Subject: post this
|$HOME/bin/post1 2>&1 > /dev/null

or

:0 wfi
*^From:.*wotan
*^Subject: post this
|($HOME/bin/post1) 2>&1 > /dev/null

or

:0 wfi
*^From:.*wotan
*^Subject: post this
|($HOME/bin/post1 2>&1) > /dev/null

Not sure but I think one of those should work

TjL

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