Make default outgoing-blocks setting off
authorSeirdy <seirdy@seirdy.one>
Fri, 27 Jan 2023 05:41:27 +0000 (21:41 -0800)
committerRohan Kumar <seirdy@seirdy.one>
Fri, 27 Jan 2023 06:01:22 +0000 (22:01 -0800)
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

index 0611f7c2676a84a282ef034a0ffa04635f2b0094..5eaa8ce760dc1ef696ea7fac0e3aa3f11e6c09ad 100644 (file)
@@ -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,