mirror of
https://github.com/zeek/zeek.git
synced 2025-10-03 15:18:20 +00:00
25 lines
546 B
Text
25 lines
546 B
Text
# @TEST-EXEC: zeek -b %INPUT
|
|
# @TEST-EXEC: btest-diff sendmail.out
|
|
|
|
# Test what happens with PAGE and EMAIL
|
|
|
|
@load base/frameworks/notice
|
|
|
|
redef Notice::mail_dest = "user@example.net";
|
|
redef Notice::mail_page_dest = "page@example.net";
|
|
redef Notice::sendmail = "fake-sendmail";
|
|
|
|
redef enum Notice::Type += {
|
|
Test_Notice,
|
|
};
|
|
|
|
event zeek_init()
|
|
{
|
|
NOTICE([$note=Test_Notice, $msg="test", $identifier="static"]);
|
|
}
|
|
|
|
hook Notice::policy(n: Notice::Info) &priority=1
|
|
{
|
|
add n$actions[Notice::ACTION_PAGE];
|
|
add n$actions[Notice::ACTION_EMAIL];
|
|
}
|