Re: [exim] Automatic /var/spool/mail cleaning

Top Page
Delete this message
Reply to this message
Author: Craig Whitmore
Date:  
To: exim-users, Cédric MARCOUX (sprimont)
Subject: Re: [exim] Automatic /var/spool/mail cleaning
> But I would like to know if there is a procedure to cleanup
> /var/spool/mail/%users% by deleting mail older then 3 month for exemple
>
> Hope someone got a solution,
>


find /var/spool/mail/ -type f -ctime 3 -exec rm {} \;

but man find before you do this

Thanks
Craig