From 6e53c25d9998584d4cbab63e6283366b7e1d68c7 Mon Sep 17 00:00:00 2001 From: Bryan Ashby Date: Mon, 20 Feb 2023 19:14:11 -0700 Subject: [PATCH] Default config sets users to AP disabled by default; users can opt-in --- core/config_default.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/config_default.js b/core/config_default.js index 4908b755..4ebe1a90 100644 --- a/core/config_default.js +++ b/core/config_default.js @@ -139,7 +139,7 @@ module.exports = () => { // See also ./core/activitypub/settings.js activityPub: { - enabled: true, // ActivityPub enabled for this user? + enabled: false, // ActivityPub enabled for this user? manuallyApproveFollowers: false, hideSocialGraph: false, showRealName: true,