procmail
[Top] [All Lists]

Re: Rerun procmail filters on maildir folder.

2002-07-25 09:56:56

| mv $MAILDIR/cur/* $TEMPDIR
| mv $MAILDIR/new/* $TEMPDIR
| for file in $(find $TEMPDIR); do

Instead of running find,

 for file in $TEMPDIR/* ; do
 
 Won't find filenames starting with a dot, but that may not be an issue
 with maildir files.

_______________________________________________
procmail mailing list
procmail(_at_)lists(_dot_)RWTH-Aachen(_dot_)DE
http://MailMan.RWTH-Aachen.DE/mailman/listinfo/procmail