Renamed the things
authorKaren Konou <konoukaren@gmail.com>
Sun, 23 Dec 2018 10:14:29 +0000 (11:14 +0100)
committerKaren Konou <konoukaren@gmail.com>
Sun, 23 Dec 2018 10:14:29 +0000 (11:14 +0100)
config/config.exs
docs/config.md
lib/pleroma/web/activity_pub/mrf/hellthread_policy.ex

index 5e1006f500932e4fcab517a779d44913cd299421..4b8762761a971658b7dd27561728b0aec78cf332 100644 (file)
@@ -163,7 +163,7 @@ config :pleroma, :mrf_rejectnonpublic,
   allow_followersonly: false,
   allow_direct: false
 
-config :pleroma, :mrf_hellthreadmitigation, threshold: 10
+config :pleroma, :mrf_hellthread, threshold: 10
 
 config :pleroma, :mrf_simple,
   media_removal: [],
index 819ac91f83fc00dacf15b893b9f70d2fef260719..728916f820bbfff9acc81c07d0a8f79139a5777a 100644 (file)
@@ -121,7 +121,7 @@ This section is used to configure Pleroma-FE, unless ``:managed_config`` in ``:i
 * `allow_followersonly`: whether to allow followers-only posts
 * `allow_direct`: whether to allow direct messages
 
-## :mrf_hellthreadmitigation
+## :mrf_hellthread
 * `threshold`: Number of mentioned users after which the message gets discarded as spam
 
 ## :media_proxy
index edcbc5219eb63865be57690ad428a758d08d8d7a..d5aa2b988254dc3837d3894f0a9c6ee5a4f30605 100644 (file)
@@ -3,7 +3,7 @@ defmodule Pleroma.Web.ActivityPub.MRF.HellthreadPolicy do
 
   @impl true
   def filter(object) do
-    policy = Pleroma.Config.get(:mrf_hellthreadmitigation)
+    policy = Pleroma.Config.get(:mrf_hellthread)
 
     if length(object["to"]) + length(object["cc"]) > Keyword.get(policy, :threshold) do
       {:reject, nil}