diff options
author | Carsten Rosenberg <c.rosenberg@heinlein-support.de> | 2021-03-22 11:11:12 +0100 |
---|---|---|
committer | Carsten Rosenberg <c.rosenberg@heinlein-support.de> | 2021-03-22 11:11:12 +0100 |
commit | 5d546fde273b815d976fd2eccf37a49a2e3471bb (patch) | |
tree | 35aaa9e48c81c4847de72532916db1cfc1b226b7 /src/plugins/lua/antivirus.lua | |
parent | cc7c38bd4361ae99e4b0a82cb07d56cb87cd764b (diff) | |
download | rspamd-5d546fde273b815d976fd2eccf37a49a2e3471bb.tar.gz rspamd-5d546fde273b815d976fd2eccf37a49a2e3471bb.zip |
[Minor] antivirus/ext_services - add default scores
Diffstat (limited to 'src/plugins/lua/antivirus.lua')
-rw-r--r-- | src/plugins/lua/antivirus.lua | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/plugins/lua/antivirus.lua b/src/plugins/lua/antivirus.lua index 0dad933b9..18d41dbb6 100644 --- a/src/plugins/lua/antivirus.lua +++ b/src/plugins/lua/antivirus.lua @@ -215,6 +215,7 @@ if opts and type(opts) == 'table' then type = 'virtual', name = sym, parent = id, + score = 0.0, group = N }) end @@ -226,6 +227,7 @@ if opts and type(opts) == 'table' then type = 'virtual', name = sym, parent = id, + score = 0.0, group = N }) end @@ -247,6 +249,7 @@ if opts and type(opts) == 'table' then type = 'virtual', name = sym, parent = id, + score = 0.0, group = N }) end @@ -258,6 +261,7 @@ if opts and type(opts) == 'table' then type = 'virtual', name = sym, parent = id, + score = 0.0, group = N }) end |