/usr/sbin/amavisd-new-cronjob is in amavisd-new 1:2.6.5-0ubuntu3.
This file is owned by root:root, with mode 0o755.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 | #!/bin/sh
# amavisd-new cronjob helper
#
# Run it as root or as the amavis user
#
# First parameter specifies which cronjob routine to run:
# sa-sync: spamassassin fast sync
# sa-clean: spamassassin cleanup
test -e /usr/bin/sa-learn || exit 0
test -e /usr/sbin/amavisd-new || exit 0
SUUSER="amavis"
set -e
umask 022
# WATCH OUT FOR PROPER QUOTING LEVEL WHEN CALLING THIS!
do_amavis_cmd() {
if [ "$(id -u -n)" != "${SUUSER}" ]; then
exec /bin/su -s /bin/sh - "${SUUSER}" -c "$*" >/dev/null
else
# to get the same quoting level as the su path
CMD="$*"
exec ${CMD} >/dev/null
fi
}
case $1 in
sa-sync)
do_amavis_cmd "/usr/bin/sa-learn --sync"
;;
sa-clean)
do_amavis_cmd "/usr/bin/sa-learn --sync --force-expire"
;;
*)
echo "$0: unknown cron routine $1" >&2
exit 1
;;
esac
exit 0
|