Sending Email Alerts Through Cron

Cron is the Linux task scheduler that is responsible for making sure scripts run at their specified times. Cron is often used for things like, log rotation, backup scripts, updating file indexes, and running custom scripts. In the event a task runs into problems or errors Cron generally tries to email the local administrator of the machine.

This means it tries to send an email to itself instead of an “internet accessible” email address like, ‘user@gmail.com’.

We can change this default behavior by changing the MAILTO variable.

Note: This will not work if you have not setup an email server.

Setting the MAILTO variable

Cron relies on a simple text file to schedule commands. To edit this file just issue the crontabcommand:

crontab -e

To change the MAILTO variable just add ‘MAILTO=username@domain.com‘ into the crontab file.

It should look something like this:

set mailto in cron

Specify Email for Each Script

If we don’t want all output to go to the same email address we can specify the output of a particular script to go to a different email address:

59 */6 * * * script.sh | mail -s “Subject of Mail” someother@address.com

Email Alerts for All but One

If you have a specific script in your crontab that you don’t want output or errors emailed to you, simply add, ‘>/dev/null 2>&1‘ to the end of the command.

59 */6 * * * script.sh >/dev/null 2>&1

To find out what else you can do with cron check out, Learning Cron by Example.

 

http://www.nixtutor.com/linux/sending-email-alerts-through-cron/

Leave a comment