<ossec_config>
<global>
<jsonout_output>yes</jsonout_output>
<alerts_log>yes</alerts_log>
<logall>no</logall>
<logall_json>no</logall_json>
<email_notification>yes</email_notification>
<smtp_server>x.x.x.x</smtp_server>
<email_maxperhour>500</email_maxperhour>
<email_log_source>alerts.log</email_log_source>
</global>
<alerts>
<log_alert_level>3</log_alert_level>
<email_alert_level>10</email_alert_level>
</alerts>
I'm not sure in what way " <email_alert_level>10</email_alert_level>" in the <alerts> block is taking effect, because we are getting emails for lower levels.
If we set up a bunch of statements like the one below, would they over-ride that setting, or are they separate/additive?
<email_alerts>
<event_location>server1</event_location>
<do_not_delay />
</email_alerts>
Can one combine parameters, such as <event_location>, <rule_id>, <group> and <level> in one <email_alerts> block?
Thanks again!