Default MRF to ObjectAgePolicy, 7 days threshold
authorHaelwenn (lanodan) Monnier <contact@hacktivis.me>
Thu, 30 Jul 2020 16:49:48 +0000 (18:49 +0200)
committerHaelwenn (lanodan) Monnier <contact@hacktivis.me>
Fri, 31 Jul 2020 10:13:08 +0000 (12:13 +0200)
config/config.exs

index 4b91a58b746de9830726a80d8a8524e8a997852e..134dccf49c3c98bee7c98648fecd15a4d9d07674 100644 (file)
@@ -391,8 +391,9 @@ config :pleroma, :mrf_vocabulary,
   accept: [],
   reject: []
 
+# threshold of 7 days
 config :pleroma, :mrf_object_age,
-  threshold: 172_800,
+  threshold: 604_800,
   actions: [:delist, :strip_followers]
 
 config :pleroma, :rich_media,
@@ -718,7 +719,7 @@ config :pleroma, :restrict_unauthenticated,
 config :pleroma, Pleroma.Web.ApiSpec.CastAndValidate, strict: false
 
 config :pleroma, :mrf,
-  policies: Pleroma.Web.ActivityPub.MRF.NoOpPolicy,
+  policies: Pleroma.Web.ActivityPub.MRF.ObjectAgePolicy,
   transparency: true,
   transparency_exclusions: []