have cron stop e-mailing you
April 20th, 2007 by Lawrence David
append “> /dev/null 2>&1″ to your crontab, i.e.:
* * * * * my job > /dev/null 2>&1
April 20th, 2007 by Lawrence David
append “> /dev/null 2>&1″ to your crontab, i.e.:
* * * * * my job > /dev/null 2>&1
Alternatively, fire up old crontab -e, and insert a line containing
MAILTO=”
to not specify a mailer. instead errors goto syslog or whatever you have set up for logging.
e.g.! not i.e.!