modify exim.spec add clamav modify exim spec modify spec file spec file add notes spec file modify username
11 lines
232 B
Bash
11 lines
232 B
Bash
#!/bin/bash
|
|
|
|
SPOOLDIR=/var/spool/exim
|
|
|
|
cd $SPOOLDIR/db
|
|
for a in retry misc wait-* callout ratelimit; do
|
|
[ -r "$a" ] || continue
|
|
[ "${a%%.lockfile}" = "$a" ] || continue
|
|
/usr/sbin/exim_tidydb $SPOOLDIR $a >/dev/null
|
|
done
|