#!/bin/sh -e

if [ -f /etc/tua.conf ]; then
  . /etc/tua.conf
fi

# default options
[ $OPTIONS ] || OPTIONS="--update-history --archived-logs"

exec /usr/sbin/tua $OPTIONS "$*" | mail -s "TUA daily report" uucp

