mirror of
https://github.com/zeek/zeek.git
synced 2025-10-09 10:08:20 +00:00
Merge remote-tracking branch 'origin/topic/dnthayer/ticket1963'
* origin/topic/dnthayer/ticket1963: Remove unused redef-able constants Convert some redef-able constants to runtime options
This commit is contained in:
commit
6595b21e2e
24 changed files with 76 additions and 51 deletions
|
@ -142,7 +142,7 @@ export {
|
|||
|
||||
## If true, catch and release warns if packets of an IP address are still seen after it
|
||||
## should have been blocked.
|
||||
const catch_release_warn_blocked_ip_encountered = F &redef;
|
||||
option catch_release_warn_blocked_ip_encountered = F;
|
||||
|
||||
## Time intervals for which subsequent drops of the same IP take
|
||||
## effect.
|
||||
|
|
|
@ -201,14 +201,14 @@ export {
|
|||
## Address that emails will be from.
|
||||
##
|
||||
## Note that this is overridden by the BroControl MailFrom option.
|
||||
const mail_from = "Big Brother <bro@localhost>" &redef;
|
||||
option mail_from = "Big Brother <bro@localhost>";
|
||||
## Reply-to address used in outbound email.
|
||||
const reply_to = "" &redef;
|
||||
option reply_to = "";
|
||||
## Text string prefixed to the subject of all emails sent out.
|
||||
##
|
||||
## Note that this is overridden by the BroControl MailSubjectPrefix
|
||||
## option.
|
||||
const mail_subject_prefix = "[Bro]" &redef;
|
||||
option mail_subject_prefix = "[Bro]";
|
||||
## The maximum amount of time a plugin can delay email from being sent.
|
||||
const max_email_delay = 15secs &redef;
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue