#!/bin/sh

# Run the daily report with conservative settings (delete as little as possible)
# If you're short on disk space, you might want to tune this commandline.

# 'man faxcron' for more info

/usr/sbin/faxcron \
    -info 60 \
    -log 730 \
    -rcv 3650 \
    -tmp 7 | mail -s "HylaFAX Usage Report" faxmaster

exit 0
