From: Vsevolod Stakhov Date: Tue, 21 Oct 2025 15:45:30 +0000 (+0100) Subject: [DNM] Haha, classic X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=2f0a14979bc2821d31639cacf83d3b4f2fe6f47b;p=thirdparty%2Frspamd.git [DNM] Haha, classic --- diff --git a/conf/modules.d/fuzzy_check.conf b/conf/modules.d/fuzzy_check.conf index 21c894211f..9554161494 100644 --- a/conf/modules.d/fuzzy_check.conf +++ b/conf/modules.d/fuzzy_check.conf @@ -20,7 +20,7 @@ fuzzy_check { algorithm = "mumhash"; servers = "round-robin:fuzzy1.rspamd.com:11335,fuzzy2.rspamd.com:11335"; encryption_key = "icy63itbhhni8bq15ntp5n5symuixf73s1kpjh6skaq4e7nx5fiy"; - use_tcp = true; + tcp = true; symbol = "FUZZY_UNKNOWN"; mime_types = ["*"]; max_score = 20.0; diff --git a/conf/worker-fuzzy.inc b/conf/worker-fuzzy.inc index cdb30df074..5cf788c085 100644 --- a/conf/worker-fuzzy.inc +++ b/conf/worker-fuzzy.inc @@ -13,7 +13,6 @@ # Module documentation: https://rspamd.com/doc/workers/fuzzy_storage.html backend = "redis"; -use_tcp = true; # For sqlite stuff #backend = "sqlite"; diff --git a/test/integration/configs/fuzzy_check.conf b/test/integration/configs/fuzzy_check.conf index 985f2bbce9..88b57e528f 100644 --- a/test/integration/configs/fuzzy_check.conf +++ b/test/integration/configs/fuzzy_check.conf @@ -7,7 +7,7 @@ retransmits = 3; rule "rspamd-integration" { algorithm = "mumhash"; servers = "rspamd:50003"; - use_tcp = true; + tcp = true; # Encryption settings encryption_key = "{= env.FUZZY_ENCRYPTION_KEY =}"; diff --git a/test/integration/configs/worker-fuzzy.inc b/test/integration/configs/worker-fuzzy.inc index 20ace8a8b0..67a03b6453 100644 --- a/test/integration/configs/worker-fuzzy.inc +++ b/test/integration/configs/worker-fuzzy.inc @@ -1,7 +1,6 @@ #Fuzzy storage worker configuration bind_socket = "*:50003"; -use_tcp = true; count = 1; backend = "redis"; hashfile = "/var/lib/rspamd/fuzzy.db";