mirror of
https://github.com/opnsense/plugins.git
synced 2026-06-09 08:56:23 -04:00
make multimap Whitelist work (#2822)
This commit is contained in:
parent
12e7dd89b1
commit
a4ba4d9bc0
3 changed files with 8 additions and 3 deletions
|
|
@ -1,5 +1,5 @@
|
|||
PLUGIN_NAME= rspamd
|
||||
PLUGIN_VERSION= 1.11
|
||||
PLUGIN_VERSION= 1.12
|
||||
PLUGIN_COMMENT= Protect your network from spam
|
||||
PLUGIN_DEPENDS= rspamd
|
||||
PLUGIN_MAINTAINER= franz.fabian.94@gmail.com
|
||||
|
|
|
|||
|
|
@ -5,6 +5,11 @@ lua.
|
|||
Plugin Changelog
|
||||
----------------
|
||||
|
||||
1.12
|
||||
|
||||
* Adjusting the multimap setting to make the multimap whitelist work
|
||||
|
||||
|
||||
1.11
|
||||
|
||||
* Fix Milter Protocol by binding to Unix Sockets
|
||||
|
|
|
|||
|
|
@ -8,13 +8,13 @@ extension_blacklist {
|
|||
filter = "extension";
|
||||
map = "/${LOCAL_CONFDIR}/local.d/bad_file_extensions.map";
|
||||
symbol = "FILENAME_BLACKLISTED";
|
||||
action = "reject";
|
||||
score 1000;
|
||||
}
|
||||
|
||||
WHITELIST_SENDER_DOMAIN {
|
||||
type = "from";
|
||||
filter = "email:domain";
|
||||
map = "/${LOCAL_CONFDIR}/local.d/whitelist_sender_domains.map";
|
||||
score = -50.0
|
||||
score = -1000
|
||||
}
|
||||
{% endif %}
|
||||
|
|
|
|||
Loading…
Reference in a new issue