Re: Maildir -- purging old messages

2003-08-04 Thread Mark Roach
On Mon, 2003-08-04 at 13:40, Bill Moseley wrote: > I have a spam folder. I check it once in a while for false positives > (rarely found). > > I'd like to run a cron job that would clean out messages older than a > 15 days. Try archivemail, I do exactly that on all my mailing lists/spam folder

Maildir -- purging old messages

2003-08-04 Thread Bill Moseley
I have a spam folder. I check it once in a while for false positives (rarely found). I'd like to run a cron job that would clean out messages older than a 15 days. Any harm in doing something like: rm `find ~/Maildir/.spam -type f -mtime 15` or maybe better to pipe find to xargs find