diff options
author | Maxim Filippov <colixer@gmail.com> | 2019-07-14 00:39:06 +0300 |
---|---|---|
committer | Maxim Filippov <colixer@gmail.com> | 2019-07-14 00:39:06 +0300 |
commit | 418ae6638d64c915ce4dae742dd493f43c8025d8 (patch) | |
tree | 88dab25ac8f569c2a7c12300be79f6cbd8357afe /docs/config.md | |
parent | a9459ff98f0af590931ef279c2bc7efb0cceac5a (diff) | |
parent | 592411e4fe8a1cf39064e3dd5f9312ed5cdcd22e (diff) | |
download | pleroma-418ae6638d64c915ce4dae742dd493f43c8025d8.tar.gz |
Merge branch 'develop' into feature/admin-api-user-statuses
Diffstat (limited to 'docs/config.md')
-rw-r--r-- | docs/config.md | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/docs/config.md b/docs/config.md index 140789d87..a65b7a560 100644 --- a/docs/config.md +++ b/docs/config.md @@ -106,6 +106,7 @@ config :pleroma, Pleroma.Emails.Mailer, * `managed_config`: Whenether the config for pleroma-fe is configured in this config or in ``static/config.json`` * `allowed_post_formats`: MIME-type list of formats allowed to be posted (transformed into HTML) * `mrf_transparency`: Make the content of your Message Rewrite Facility settings public (via nodeinfo). +* `mrf_transparency_exclusions`: Exclude specific instance names from MRF transparency. The use of the exclusions feature will be disclosed in nodeinfo as a boolean value. * `scope_copy`: Copy the scope (private/unlisted/public) in replies to posts by default. * `subject_line_behavior`: Allows changing the default behaviour of subject lines in replies. Valid values: * "email": Copy and preprend re:, as in email. @@ -640,3 +641,10 @@ A keyword list of rate limiters where a key is a limiter name and value is the l It is also possible to have different limits for unauthenticated and authenticated users: the keyword value must be a list of two tuples where the first one is a config for unauthenticated users and the second one is for authenticated. See [`Pleroma.Plugs.RateLimiter`](Pleroma.Plugs.RateLimiter.html) documentation for examples. + +Supported rate limiters: + +* `:search` for the search requests (account & status search etc.) +* `:app_account_creation` for registering user accounts from the same IP address +* `:statuses_actions` for create / delete / fav / unfav / reblog / unreblog actions on any statuses +* `:status_id_action` for fav / unfav or reblog / unreblog actions on the same status by the same user |