view debian/cron.daily @ 464:d9035d08fe51 noffle

[svn] * src/fetch.c: Log failed posting that we can't mail back to the sender or where sending fails to <Noffle spool>/failed.posting.
author bears
date Wed, 23 Jul 2003 10:32:25 +0100
parents 08222dbe6eb0
children
line wrap: on
line source

#!/bin/sh
#
# expire old articles, output will be logged to syslog

set -e

if [ -x /usr/bin/noffle ]; then
	/usr/bin/noffle --expire > /dev/null 2>&1
fi

exit 0