diff options
author | kaniini <ariadne@dereferenced.org> | 2019-07-17 15:28:41 +0000 |
---|---|---|
committer | kaniini <ariadne@dereferenced.org> | 2019-07-17 15:28:41 +0000 |
commit | ce73d5f6a53826c85e46bbe45835b99ceaab67cd (patch) | |
tree | eacd3e290780132ac227b6e1bf9aae66f0c761ec /docs/config.md | |
parent | 0bbc0f0cf4ee87e8ac5995818c8049bf86e848cd (diff) | |
parent | 96a2890a9ecca3a6392edfaaaed4487303a920d7 (diff) | |
download | pleroma-ce73d5f6a53826c85e46bbe45835b99ceaab67cd.tar.gz |
Merge branch 'feature/mention-mrf' into 'develop'
Add MRF MentionPolicy for dropping posts which mention specific actors
See merge request pleroma/pleroma!1439
Diffstat (limited to 'docs/config.md')
-rw-r--r-- | docs/config.md | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/docs/config.md b/docs/config.md index 346b8cda2..42556a0be 100644 --- a/docs/config.md +++ b/docs/config.md @@ -101,6 +101,7 @@ config :pleroma, Pleroma.Emails.Mailer, * `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. * `Pleroma.Web.ActivityPub.MRF.MediaProxyWarmingPolicy`: Crawls attachments using their MediaProxy URLs so that the MediaProxy cache is primed. + * `Pleroma.Web.ActivityPub.MRF.MentionPolicy`: Drops posts mentioning configurable users. (see `:mrf_mention` section) * `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`` @@ -271,6 +272,9 @@ config :pleroma, :mrf_subchain, * `federated_timeline_removal`: A list of patterns which result in message being removed from federated timelines (a.k.a unlisted), each pattern can be a string or a [regular expression](https://hexdocs.pm/elixir/Regex.html) * `replace`: A list of tuples containing `{pattern, replacement}`, `pattern` can be a string or a [regular expression](https://hexdocs.pm/elixir/Regex.html) +## :mrf_mention +* `actors`: A list of actors, for which to drop any posts mentioning. + ## :media_proxy * `enabled`: Enables proxying of remote media to the instance’s proxy * `base_url`: The base URL to access a user-uploaded file. Useful when you want to proxy the media files via another host/CDN fronts. |