From e66fc75e6217ca01ebd4876cff11f39dadf09586 Mon Sep 17 00:00:00 2001 From: moisseev Date: Thu, 6 Jun 2024 09:49:06 +0300 Subject: [PATCH] [Minor] Set negative default scores for known senders --- src/plugins/lua/known_senders.lua | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/plugins/lua/known_senders.lua b/src/plugins/lua/known_senders.lua index 64a28059e..d4e966908 100644 --- a/src/plugins/lua/known_senders.lua +++ b/src/plugins/lua/known_senders.lua @@ -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 -- 2.39.5