]> source.dussan.org Git - rspamd.git/commitdiff
[Minor] Set negative default scores 5006/head
authormoisseev <moiseev@mezonplus.ru>
Thu, 6 Jun 2024 06:49:06 +0000 (09:49 +0300)
committermoisseev <moiseev@mezonplus.ru>
Thu, 6 Jun 2024 06:49:06 +0000 (09:49 +0300)
for known senders

src/plugins/lua/known_senders.lua

index 64a28059e5f3d048bcaa798987bbe6653bda7211..d4e966908a098cfc256a69784061e486e1a4b830 100644 (file)
@@ -364,14 +364,14 @@ if opts then
       name = settings.symbol_check_mail_local,
       type = 'normal',
       callback = verify_local_replies_set,
-      score = 1.0
+      score = -1.0
     })
 
     rspamd_config:register_symbol({
       name = settings.symbol_check_mail_global,
       type = 'normal',
       callback = check_known_incoming_mail_callback,
-      score = 1.0
+      score = -1.0
     })
 
     if settings.symbol_unknown and #settings.symbol_unknown > 0 then