mirror of
https://github.com/ntop/ntopng.git
synced 2026-05-05 10:41:34 +00:00
21 lines
611 B
Lua
21 lines
611 B
Lua
--
|
|
-- (C) 2020 - ntop.org
|
|
--
|
|
|
|
return {
|
|
unexpected_smtp_description = "Trigger an alert when not allowed SMTP server is detected",
|
|
unexpected_smtp_title = "Unexpected SMTP server",
|
|
|
|
-- ####################### Input builder strings
|
|
|
|
title = "Allowed SMTP servers",
|
|
description = "Comma separated values of SMTP servers IPs. Example: 173.194.76.109,52.97.232.242",
|
|
|
|
-- ####################### Status strings
|
|
|
|
status_unexpected_smtp_description = "Unexpected SMTP server found: %{server}",
|
|
|
|
-- ####################### Alert strings
|
|
|
|
alert_unexpected_smtp_title = "Unexpected SMTP server found"
|
|
}
|