/etc/cron.monthly/hylafax is in hylafax-server 3:6.0.6-8.
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 | #!/bin/sh
test -f /usr/sbin/xferfaxstats || exit 0
# Generate HylaFAX's monthly fax statistics
# Generate statistics for faxes during the past month. Two reports
# are generated - one ordered by the destination fax number, the
# other ordered by the sender.
# No fax received in last month
test -f /var/spool/hylafax/log/xferfaxlog || exit 0
/usr/sbin/xferfaxstats -dest -since `date +%D -d'-1 month'` 2>&1 | mail -s "Monthly fax stats - by destination" faxmaster
/usr/sbin/xferfaxstats -send -since `date +%D -d'-1 month'` 2>&1 | mail -s "Monthly fax stats - by sender" faxmaster
savelog -c 5 /var/spool/hylafax/log/xferfaxlog >/dev/null
|