procmail
[Top] [All Lists]

Re: can someone check this and tell my why it doesn't work.

2009-09-10 10:30:17
Please use a WORKING MUA and not this crap you are using!

However...

Am 2009-09-09 14:04:22, schrieb Rob Henry:
# if i haven't been instructed to skip processing
* ? test -z $VACATION_SKIP

Are you sure, this is working?

'test -z' REQUIRES an argument and if $VACATION_SKIP is empty, I get an
error.  So you have to use

    * ? test -z "$VACATION_SKIP"

# if i have a vacation message file
* ? test -f $VACATION_MSG

Here the same...

    * ? test -f "$VACATION_MSG"

* !^X-Loop: $VACATION_XLOOP

Are you sure, $VACATION_XLOOP is evaluated?
It should be:

    * $ !^X-Loop: $VACATION_XLOOP

*$ !^From:.*$VACATION_SENDER

As you can see, here ist the "$" present...

* ? test -n $VACATION_PASSWORD

Missing "":

    * ? test -n "$VACATION_PASSWORD"


Thanks, Greetings and nice Day/Evening
    Michelle Konzack
    Systemadministrator
    Tamay Dogan Network
    Debian GNU/Linux Consultant

-- 
Linux-User #280138 with the Linux Counter, http://counter.li.org/
##################### Debian GNU/Linux Consultant #####################
<http://www.tamay-dogan.net/>                 Michelle Konzack
<http://www.can4linux.org/>                   Apt. 917
<http://www.flexray4linux.org/>               50, rue de Soultz
Jabber linux4michelle(_at_)jabber(_dot_)ccc(_dot_)de           67100 
Strabourg/France
IRC    #Debian (irc.icq.com)                  Tel. DE: +49 177 9351947
ICQ    #328449886                             Tel. FR: +33  6  61925193
____________________________________________________________
procmail mailing list   Procmail homepage: http://www.procmail.org/
procmail(_at_)lists(_dot_)RWTH-Aachen(_dot_)de
http://mailman.rwth-aachen.de/mailman/listinfo/procmail

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