Autor: Daniel Tiefnig
Data:
A: exim-users
Assumpte: Re: [exim] Cleaning up /var/spool/exim4/scan
Tom Kistner wrote:
> Stop Exim, then:
>
> rm -rf /path/to/spool/scan
Or, if you don't want to stop exim: (at least with GNU find)
find /path/to/spool/scan -mtime +1 -maxdepth 1 | xargs rm -r
Will not delete all of them, but the 27619+.
lg,
daniel