mirror of
https://github.com/zeek/zeek.git
synced 2025-10-17 05:58:20 +00:00
Convert some redef-able constants to runtime options
This commit is contained in:
parent
0e6913fba0
commit
dc0904a7f3
20 changed files with 37 additions and 37 deletions
|
@ -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