You can avoid this by redirecting the output of the job in your crontab. Use * * * * * /path/to/job >> /dev/null
and you will only get mailed the error messages; to ignore those as well, use
* * * * * /path/to/job >> /dev/null 2>&1
Hope this works for you.
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.