#!/bin/sh

# Uncomment the following lines to get daily e-mail reports
#if [ -x /usr/sbin/eximstats ]; then
#  eximstats </var/log/exim/mainlog \
#                    | mail postmaster -s"Daily E-Mail Activity Report"
#fi

# Cycle logs
if [ -x /usr/sbin/exicyclog ]; then
  exicyclog
fi
