CraftyPanda

Well-Known Member
Nov 15, 2012
93
2
58
cPanel Access Level
Root Administrator
Hi guys,

All of my accounts on my server are getting emails from Cron Daemon every minute. Does anyone know how I can stop this and why its even happening?

Regards
Andy
 

cPanelMichael

Administrator
Staff member
Apr 11, 2011
47,880
2,258
463
Hello :)

You can access the "Cron Jobs" option in cPanel. If you do not want an email to be sent for an individual cron job, you can redirect the command's output to /dev/null like this:

Code:
mycommand >/dev/null 2>&1
Thank you.