slackbuilds_ponce/network/exim/contrib/exim.cron
Thomas Morper 5a5401073d network/exim: Updated for version 4.77.
Signed-off-by: Robby Workman <rworkman@slackbuilds.org>
2011-11-04 21:59:28 -02:00

12 lines
365 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 -type f \! -name '*.lockfile' -printf '%f\0' \
| xargs -0 -I {} -n 1 -r su exim -s /bin/sh -c \
"/usr/sbin/exim_tidydb -t 7d $SPOOL {} > /dev/null"