SMS Notifications

From ZoneMinder Wiki
Revision as of 18:54, 4 November 2017 by Snake (talk | contribs) (→‎Notes)
Jump to navigationJump to search

You setup email to point to a text gateway. Setup a filter that monitors the cameras for alarms, and when an alarm is set off you have it send an email to the text gateway (or email address). Simple.

You can get images from the alarm embedded in the text (covered in install steps).

The following is relevant for 1.30

Installation

Follow How to get ssmtp working with Zoneminder.

There are two ways to send emails in options - email. One is sending a short email, and one is designed for longer messages. In the code (as of 1.30 lines 818 and 918), in zmfilter.pl these are correspondingly sub SendEmail and sub SendMessage. They are distinct functions. SSMTP support is in SendEmail. SSMTP support is not in SendMessage.

Testing the email

First, run a filter in the background (see tips below). Do not try to submit / execute. Second, set debug logging on zmfilter to 9 in options logging. Third, tail the debug log. Fourth, to initiate an alarm (if alarms are used to test emails), use 'force alarm' on the monitor screen.

Tips

When testing be aware of the following:

  • Free email services limit how many emails you are allowed to send through SMTP. It helps to disable cron emails.
  • Always test by emailing 1 (or similar low number) results.
  • When you make the filter you want the 'current' alarms. You don't want old events.

This is accomplished with a Date/Time greater than or equal to -1 minute.

  • If when testing the filter execute, the 'execute' button becomes unclickable, uncheck then recheck the email option.
#watch "tail -n 30000 /var/log/syslog | grep sSMTP | tail"
  • When testing use a background filter, and watch the logs. Filters run every 60 seconds by default.
  • If you send email as someone other than root, make sure he is in /etc/ssmtp/revaliases
  • test emails with
cat file | mail -s "subject" destination@email.com
OR
echo "some text" | mail -s "subject destination@email.com
  • make sure email is checked off in filters. It gets unchecked easily.
  • service zoneminder restart in between changes in options - email.
  • test setting off alarms by clicking 'force alarm' in the monitor view, then unclick to remove alarm.
  • make one dedicated email alert account if you want multiple users to receive alerts.
  • It's tough to use Motion detection for alerts with IR active.. You might be best off using a device with ZMTrigger, or the cameras built in motion detection if night IR is used... False alerts appear when a camera switches from Day lens to IR.

Example Filter

For monitoring on the weekend you might have

date/time greater than or equal to -1 minute AND
alarm frames greather than or equal to 1 AND
Weekday equal to Saturday OR
Weekday equal to Sunday AND
alarm frames greater than or equal to 1 AND
date/time greater than or equal to -1 minute

Notice that you must include all parameters for each group/set individually when there is an OR.

Notes

Notifications are easy if you want alarms emailed between a static time, for example between 12AM and 6AM. If you have a situation where you may not want the alarms to send you text messages on occasion, you should filter on run states.

Starting from more recent Zoneminder releases you can set filters based on run states, which would mean, you could change the run state at any desired time (using Cron, or manually), and only then would SMS be sent. If you have earlier ZM, you must have duplicate monitors and have the filters activated on only one of them OR you can add the patch manually. (Compile zoneminder from a package source such as the debian package and add the commits manually at your own risk (it is not difficult, but beware updating).

Resources