diff options
author | Vsevolod Stakhov <vsevolod@rspamd.com> | 2024-07-30 17:14:07 +0100 |
---|---|---|
committer | Vsevolod Stakhov <vsevolod@rspamd.com> | 2024-07-30 17:14:07 +0100 |
commit | cddc50cd4e66a874bdfd07c9d27c234e2cd779ad (patch) | |
tree | 96ff4f0dba76d48f84f7f28f83b11bf15f7d2564 /src/plugins | |
parent | 0b547ff8e801979b2f1ea42b1b686476f10341cf (diff) | |
download | rspamd-cddc50cd4e66a874bdfd07c9d27c234e2cd779ad.tar.gz rspamd-cddc50cd4e66a874bdfd07c9d27c234e2cd779ad.zip |
[Feature] Allow to set negative group score limit via `min_score`
Diffstat (limited to 'src/plugins')
-rw-r--r-- | src/plugins/fuzzy_check.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/plugins/fuzzy_check.c b/src/plugins/fuzzy_check.c index a035eeaae..b92177f1b 100644 --- a/src/plugins/fuzzy_check.c +++ b/src/plugins/fuzzy_check.c @@ -2299,6 +2299,8 @@ fuzzy_insert_result(struct fuzzy_client_session *session, * Otherwise `value` means error code */ + msg_debug_fuzzy_check("got reply with probability %.2f and value %.2f", + (double) rep->v1.prob, (double) rep->v1.value); nval = fuzzy_normalize(rep->v1.value, weight); if (io) { |