You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

statistic.conf 558B

12345678910111213141516171819202122232425262728
  1. # Rspamd statistic setup
  2. # Pre-build files could be loaded from:
  3. # http://rspamd.com/rspamd_statistics/bayes.spam.sqlite
  4. # - and -
  5. # http://rspamd.com/rspamd_statistics/bayes.ham.sqlite
  6. classifier {
  7. type = "bayes";
  8. tokenizer {
  9. name = "osb";
  10. }
  11. cache {
  12. path = "${DBDIR}/learn_cache.sqlite";
  13. }
  14. min_tokens = 11;
  15. backend = "sqlite3";
  16. languages_enabled = true;
  17. statfile {
  18. symbol = "BAYES_HAM";
  19. path = "${DBDIR}/bayes.ham.sqlite";
  20. spam = false;
  21. }
  22. statfile {
  23. symbol = "BAYES_SPAM";
  24. path = "${DBDIR}/bayes.spam.sqlite";
  25. spam = true;
  26. }
  27. }