So I’m updating syslog and thold alerts in mass…removing an email address actually. Here are a couple of quick find and replace statements:
Syslog Alerts
use syslog;
update syslog_alert set email=replace(email,', [email protected]','');
Thold Alerts
use cacti;
update cacti set thold_data=replace(notify_extra,'[email protected], ','');
Leave a Reply