.github
etc
usr
local
etc
rspamd
local.d
override.d
fuzzy_check.conf
worker-controller.inc
var
.gitignore
COPYING
README.md
SECURITY.md
clean_nginx_sockets.sh
install_binaries.sh
update-translation.sh
27 lines
615 B
Plaintext
27 lines
615 B
Plaintext
rule "localhost" {
|
|
algorithm = "mumhash";
|
|
servers = "localhost:11335";
|
|
encryption_key = "rsk86fw7w5x4dhkjhcomsyaqwiapp56ykq7woj8f7g9m7z8akfpy";
|
|
symbol = "FUZZY_UNKNOWN";
|
|
mime_types = ["*"];
|
|
max_score = 20.0;
|
|
read_only = no;
|
|
skip_unknown = yes;
|
|
short_text_direct_hash = true; # If less than min_length then use direct hash
|
|
min_length = 64; # Minimum words count to consider shingles
|
|
fuzzy_map = {
|
|
FUZZY_DENIED {
|
|
max_score = 20.0;
|
|
flag = 1;
|
|
}
|
|
FUZZY_PROB {
|
|
max_score = 10.0;
|
|
flag = 2;
|
|
}
|
|
FUZZY_WHITE {
|
|
max_score = 2.0;
|
|
flag = 3;
|
|
}
|
|
}
|
|
}
|