Kaynağa Gözat

[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 3 hafta önce
ebeveyn
işleme
20f6d7103e
No account linked to committer's email address
1 değiştirilmiş dosya ile 1 ekleme ve 1 silme
  1. 1
    1
      src/libstat/learn_cache/redis_cache.cxx

+ 1
- 1
src/libstat/learn_cache/redis_cache.cxx Dosyayı Görüntüle

@@ -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…
İptal
Kaydet