Commit 62df9a

2023-09-27 09:55:33 Ralph Thesen: added fuzzy_check.conf notes
services/mailu.md ..
@@ 12,3 12,27 @@
Note: `learn error: all learn conditions denied learning ham in default classifier` is miss worded, with debug log on it reads:
`rspamd_stat_classifier_is_skipped: learn condition for classifier bayes returned: already in class spam; probability 100.00%; skip classifier`.
+
+ ### fuzzy flags `-f`
+
+ Defined in `mailu-rspamd:/etc/rspamd/local.d/fuzzy_check.conf`
+
+ ```cpp
+ ...
+ fuzzy_map = {
+ LOCAL_FUZZY_DENIED {
+ # Local threshold
+ max_score = 20.0;
+ # Flag to match
+ flag = 11;
+ }
+ LOCAL_FUZZY_PROB {
+ max_score = 10.0;
+ flag = 12;
+ }
+ LOCAL_FUZZY_WHITE {
+ max_score = 2.0;
+ flag = 13;
+ }
+ }
+ ```
0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9