mirror of
https://github.com/Ponce/slackbuilds
synced 2024-10-29 18:42:51 +01:00
12 lines
347 B
Bash
12 lines
347 B
Bash
#!/bin/sh
|
|
|
|
# Exim's spool directory
|
|
SPOOL=/var/spool/exim
|
|
|
|
# Check for spool and the tidydb utility
|
|
test -d $SPOOL -a -x /usr/sbin/exim_tidydb || exit
|
|
|
|
# Tidy up the contents of the hints databases
|
|
find $SPOOL/db -name '*.lockfile' -exec basename {} .lockfile \; \
|
|
| xargs -r -n 1 sudo -u exim /usr/sbin/exim_tidydb -t 7d $SPOOL \
|
|
> /dev/null
|