#!/bin/sh
# /etc/cron.daily/calendar: BSD mainutils calendar daily maintenance script
# Written by Austin Donnelly <and1000@debian.org>

# Uncomment the following line if you'd like all of your users'
# ~/calendar files to be checked daily.  Calendar will send them mail
# to remind them of upcoming events.  See calendar(1) for more details.
#RUN_CALENDAR=yes

if [ "$RUN_CALENDAR" = "yes" -a -x /usr/sbin/sendmail ]; then
  /usr/bin/calendar -a
fi
