procmail
[Top] [All Lists]

Re: formail problem...

2003-05-24 19:57:31
    :0 fhw
    | formail "${FMID}" "${FMPOST}" "${FMHELP}" "${FMARCHIVE}" "${FMSUBSCRIBE}" 
"${FMUNSUBSCRIBE}"

    VERBOSE=off

merely begets:

> procmail: Executing "formail,, ...

Note the two adjacent commas caused by your passing the null value of $FMID in quotes. That hard null value is the problem. Is FMID the only variable there that can be null? Then

  | formail ${FMID+"$FMID"} "$FMPOST" "$FMHELP" "$FMARCHIVE" \
    "$FMSUBSCRIBE" "$FMUNSUBSCRIBE"



_______________________________________________
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>