blob: b4b7751ea86e545c95971bc9731bc4b548cc4a6b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
#!/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"
|