Re: [exim] Cleaning up /var/spool/exim4/scan

Top Page
Delete this message
Reply to this message
Author: Daniel Tiefnig
Date:  
To: exim-users
Subject: 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