Page 2 of 2

Re: Bulk Modification Tool Contact Group or Contact

Posted: Wed Feb 25, 2015 10:02 pm
by emartine
Shouldn't be necessary but thank you.

Re: Bulk Modification Tool Contact Group or Contact

Posted: Thu Feb 26, 2015 8:30 am
by lmiltchev
Let us know if you are still having issues after the upgrade.

Re: Bulk Modification Tool Contact Group or Contact

Posted: Mon Mar 02, 2015 12:10 pm
by emartine
I've upgraded them all to Nagios XI 2014R2.6. The tool works fine now.... But now I am getting complaints from folks that critical alerts are being received flagged as high priority. Is there a way to turn this off?

Re: Bulk Modification Tool Contact Group or Contact

Posted: Mon Mar 02, 2015 12:34 pm
by abrist
This was added in 2.6. I don't believe there is a ui switch for this. You can edit the following file:

Code: Select all

/usr/local/nagiosxi/html/includes/utils-email.inc.php
At line # 91, comment out (or remove) this block of code:

Code: Select all

    if (isset($opts["type"]) && $opts["type"] == "PROBLEM") {
        // For most clients expecting the Priority header:
        // 1 = High, 2 = Medium, 3 = Low
        $mail->Priority = 1;
        // MS Outlook custom header
        // May set to "Urgent" or "Highest" rather than "High"
        $mail->AddCustomHeader("X-MSMail-Priority: High");
        // Not sure if Priority will also set the Importance header:
        $mail->AddCustomHeader("Importance: High");
    }
This change will need to be performed after each upgrade. If you wish us to add a ui option to disable this, please open a feature request on the tracker: http://tracker.nagios.com

Re: Bulk Modification Tool Contact Group or Contact

Posted: Mon Mar 02, 2015 2:11 pm
by emartine
Thanks. Please feel free to close this.