[Rspamd] Deactivate neural but use a more aggressive learning method (no autolearn)

This commit is contained in:
André
2018-07-29 23:03:49 +02:00
parent 3b2a3d36b9
commit 59c4cc054e
3 changed files with 6 additions and 13 deletions

View File

@@ -6,7 +6,7 @@ rule "local" {
# Additional mime types to store/check
mime_types = ["application/*"];
# Hash weight threshold for all maps
max_score = 20.0;
max_score = 100.0;
# Whether we can learn this storage
read_only = no;
# Ignore unknown flags
@@ -17,15 +17,11 @@ rule "local" {
# Map flags to symbols
fuzzy_map = {
LOCAL_FUZZY_DENIED {
max_score = 20.0;
max_score = 10.0;
flag = 11;
}
LOCAL_FUZZY_PROB {
max_score = 10.0;
flag = 12;
}
LOCAL_FUZZY_WHITE {
max_score = 2.0;
max_score = 5.0;
flag = 13;
}
}