1
0
mirror of https://github.com/mailcow/mailcow-dockerized.git synced 2024-12-14 10:52:49 +02:00
mailcow-dockerized/data/conf/rspamd/local.d/statistic.conf

20 lines
343 B
Plaintext
Raw Normal View History

2017-03-02 12:23:23 +02:00
classifier "bayes" {
tokenizer {
name = "osb";
2017-03-02 12:23:23 +02:00
}
autolearn = false;
2017-03-02 12:23:23 +02:00
backend = "redis";
min_tokens = 11;
min_learns = 5;
new_schema = true;
expire = 2592000;
2017-03-02 12:23:23 +02:00
statfile {
symbol = "BAYES_HAM";
spam = false;
}
statfile {
symbol = "BAYES_SPAM";
spam = true;
}
}