]> git.pld-linux.org Git - packages/exim.git/blob - exim.cron.db
- rel 4; tidy up callout db with 3 days limit
[packages/exim.git] / exim.cron.db
1 #!/bin/sh
2 cd /
3
4 SPOOLDIR="$(/usr/bin/exim -bP spool_directory | /bin/sed 's/.*=[[:space:]]\(.*\)/\1/')"
5
6 [ ! -d "$SPOOLDIR" ] && echo "Spooldir [$SPOOLDIR] is not a directory" && exit 1
7
8 for db in $(/usr/bin/find $SPOOLDIR/db -maxdepth 1 -name '*.lockfile' -or -type f -printf '%f\n'); do
9         t=
10         case "$db" in
11                 callout)
12                         t="-t 3d"
13                         ;;
14                 *)
15                         ;;
16         esac
17         /usr/bin/exim_tidydb $t $SPOOLDIR $db > /dev/null
18 done
19
20 exit 0
This page took 0.047744 seconds and 3 git commands to generate.