ow do I to disable the mail alert send by crontab? When my job is executed and the jobs cannot run normally it will sent an email to root. Why do I receive e-mails to my root account from cron? How can I prevent this?
By default the output of a command or a script (if any produced), will be email to your local email account. To stop receiving email output from crontab you need to append following string:
Cron Job Prevent the sending of errors and output To prevent the sending of errors and output, add any one of the following at the end of the line for each cron job to redirect output to /dev/null.
Edit/Open your cron jobs, enter:
you can set MAILTO="" variable at the start of your crontab file. This will also disable email. Edit/Open your cron jobs
Read More
By default the output of a command or a script (if any produced), will be email to your local email account. To stop receiving email output from crontab you need to append following string:
Cron Job Prevent the sending of errors and output To prevent the sending of errors and output, add any one of the following at the end of the line for each cron job to redirect output to /dev/null.
>/dev/null 2>&1.OR
&> /dev/nullCron Job Example
Edit/Open your cron jobs, enter:
$ crontab -eAppend string >/dev/null 2>&1 to stop mail alert:
0 1 5 10 * /path/to/script.sh >/dev/null 2>&1OR
0 1 5 10 * /path/to/script.sh &> /dev/nullSave and close the file. Restart the crond:
# /etc/init.d/crond restartMAILTO variable
you can set MAILTO="" variable at the start of your crontab file. This will also disable email. Edit/Open your cron jobs
$ crontab -eAt the top of the file, enter:
MAILTO=""Save and close the file.