How to stop upcp cron emails?

electric

Well-Known Member
Nov 5, 2001
790
11
318
Hello,

Every day, I am sent the "upcp" cron emails from all my servers. The subject line looks like this:

Cron <root@servername> /usr/local/cpanel/scripts/upcp --cron
How can I stop them from being sent? I only want to be sent an email IF there is a problem discovered during upcp process.

Thanks.
 

kernow

Well-Known Member
Jul 23, 2004
1,031
62
178
cPanel Access Level
Root Administrator
The following will stop you receiving the emails, but won't inform you if /upcp had errors:
Code:
/usr/local/cpanel/scripts/upcp --cron >/dev/null 2>&1
 

cPanelMichael

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

You can try modifying the cron job as indicated in the previous post via the following command:

Code:
crontab -e
Or, depending on your version of cPanel, you can use:

"WHM Home » Server Configuration » Configure cPanel Cron Jobs"

Note that on earlier versions of cPanel, you must install the "Cron Config" plugin via:

"WHM Home » cPanel » Manage Plugins"

Thank you.