From 676cc0d0d7d6297fe532ac7ed7a90f1abf76d5ad Mon Sep 17 00:00:00 2001 From: Seirdy Date: Thu, 26 Jan 2023 21:41:27 -0800 Subject: [PATCH] Make default outgoing-blocks setting off This should help mitigate negative impacts related to block-retaliation and block-circumvention when blocks become visible to the blocked party. Instances interested in broadcasting blocks can turn this on if they wish. This should have always been the default. See also: https://akkoma.dev/AkkomaGang/akkoma-fe/pulls/274 --- config/config.exs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config/config.exs b/config/config.exs index 0611f7c26..5eaa8ce76 100644 --- a/config/config.exs +++ b/config/config.exs @@ -354,7 +354,7 @@ config :pleroma, :manifest, config :pleroma, :activitypub, unfollow_blocked: true, - outgoing_blocks: true, + outgoing_blocks: false, blockers_visible: true, follow_handshake_timeout: 500, note_replies_output_limit: 5,