diff options
author | kaniini <nenolod@gmail.com> | 2019-06-21 22:56:54 +0000 |
---|---|---|
committer | kaniini <nenolod@gmail.com> | 2019-06-21 22:56:54 +0000 |
commit | 55742d978d15bba75bcae9c6f2d91afbb77d0dc5 (patch) | |
tree | 7132505554ff5eee71212001cf223500ea4c911e /docs/config.md | |
parent | 89fa14f5583b1465db1bad8c1fae2f7c436bf933 (diff) | |
parent | 127a5a7d6567124b834a1f5399a0032c1c1f849d (diff) | |
download | pleroma-55742d978d15bba75bcae9c6f2d91afbb77d0dc5.tar.gz |
Merge branch 'feature/mrf-anti-link-spam' into 'develop'
implement anti link spam MRF
See merge request pleroma/pleroma!1307
Diffstat (limited to 'docs/config.md')
-rw-r--r-- | docs/config.md | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/docs/config.md b/docs/config.md index ed8e465c6..b75193545 100644 --- a/docs/config.md +++ b/docs/config.md @@ -90,6 +90,7 @@ config :pleroma, Pleroma.Emails.Mailer, * `Pleroma.Web.ActivityPub.MRF.SubchainPolicy`: Selectively runs other MRF policies when messages match (see ``:mrf_subchain`` section) * `Pleroma.Web.ActivityPub.MRF.RejectNonPublic`: Drops posts with non-public visibility settings (See ``:mrf_rejectnonpublic`` section) * `Pleroma.Web.ActivityPub.MRF.EnsureRePrepended`: Rewrites posts to ensure that replies to posts with subjects do not have an identical subject and instead begin with re:. + * `Pleroma.Web.ActivityPub.MRF.AntiLinkSpamPolicy`: Rejects posts from likely spambots by rejecting posts from new users that contain links. * `public`: Makes the client API in authentificated mode-only except for user-profiles. Useful for disabling the Local Timeline and The Whole Known Network. * `quarantined_instances`: List of ActivityPub instances where private(DMs, followers-only) activities will not be send. * `managed_config`: Whenether the config for pleroma-fe is configured in this config or in ``static/config.json`` |