Jason Helfman ([EMAIL PROTECTED]) said something to this effect on 02/06/2001:
> I am using Procmail to copy all incoming messages to a mbox file called
> backup-inbox, however I don't want it to be watched for incoming mail in
> my mailboxes clarification. Is their a way to accomplish this via
> command line in my mutt settings?
> 
> mailboxes ! `echo $HOME/Mail/*`

grep -v will do it, but not with echo. Try:

mailboxes ! `ls $HOME/Mail/* | grep -v backup-inbox`

(darren)

-- 
Every program has at least one bug, and at least one line of code that can
be removed.  Therefore, by induction, every program can be reduced to one
line of code that doesn't work.

Reply via email to