Hello,
I'd like to know how to configure OSSEC to send email notification to
multiple recipients. For exemple [email protected] and [email protected]
I was thinking about this:
<email_alerts>
<email_to>[email protected]</email_to>
<email_to>[email protected]</email_to>
<level>5</level>
<event_location>server.xyz.com|server2.xyz.com</event_location>
</email_alerts>
but it doesn't seam to work because only [email protected].
Should i seperate the two recipients? like this:
<email_alerts>
<email_to>[email protected]</email_to>
<level>5</level>
<event_location>server.xyz.com|server2.xyz.com</event_location>
</email_alerts>
<email_alerts>
<email_to>[email protected]</email_to>
<level>5</level>
<event_location>server.xyz.com|server2.xyz.com</event_location>
</email_alerts>
thank you