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

Páxina inicial
Borrar esta mensaxe
Responder a esta mensaxe
Autor: Craig Whitmore
Data:  
Para: exim-users, Cédric MARCOUX (sprimont)
Asunto: 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