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

Startseite
Nachricht löschen
Nachricht beantworten
Autor: Craig Whitmore
Datum:  
To: exim-users, Cédric MARCOUX (sprimont)
Betreff: 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