diff options
author | William Pitcock <nenolod@dereferenced.org> | 2019-06-19 15:57:44 +0000 |
---|---|---|
committer | William Pitcock <nenolod@dereferenced.org> | 2019-06-19 15:58:32 +0000 |
commit | 736d8ad6be1ccb1514a189ccf2384e9699ea107e (patch) | |
tree | a68094bce086cb1c890bbb645aa824f1d4f64c46 /docs | |
parent | cb4fcc740cd77d9d7ed815f241402c21131eb450 (diff) | |
download | pleroma-736d8ad6be1ccb1514a189ccf2384e9699ea107e.tar.gz |
implement anti link spam MRF
Diffstat (limited to 'docs')
-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..4e9697afc 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 using naive heuristics. * `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`` |