#!/apcupsd/bin/sh

#
# This shell script if placed in /etc/apcupsd

# will be called by /etc/apcupsd/apccontrol when the    

# UPS goes back on to the mains after a power failure.

# We send an email message to root to notify him.
#

SYSADMIN=you@somewhere.com
APCUPSD_MAIL="/apcupsd/bin/email"

HOSTNAME=`hostname`
MSG="$HOSTNAME Power has returned"
#
$APCUPSD_MAIL -s "$MSG" $SYSADMIN -m "$MSG"

exit 0


syntax highlighted by Code2HTML, v. 0.9.1