Browse Source

[Fix] Always set the unlearn flag when relearning

Treat relearning from ham to spam the same as relearning from spam to ham. `res` is only set to true if the mail is already learned.
pull/4930/head
aduernberger 1 week ago
parent
commit
20f6d7103e
No account linked to committer's email address
1 changed files with 1 additions and 1 deletions
  1. 1
    1
      src/libstat/learn_cache/redis_cache.cxx

+ 1
- 1
src/libstat/learn_cache/redis_cache.cxx View File

@@ -170,7 +170,7 @@ rspamd_stat_cache_checked(lua_State *L)
(task->flags & RSPAMD_TASK_FLAG_LEARN_SPAM) ? "spam" : "ham");
task->flags |= RSPAMD_TASK_FLAG_ALREADY_LEARNED;
}
else if (val != 0) {
else {
/* Unlearn flag */
task->flags |= RSPAMD_TASK_FLAG_UNLEARN;
}

Loading…
Cancel
Save