diff options
author | Alex Gleason <alex@alexgleason.me> | 2020-04-12 18:46:47 -0500 |
---|---|---|
committer | Alex Gleason <alex@alexgleason.me> | 2020-04-12 18:46:47 -0500 |
commit | ed894802d5dfe60072b9445cb28e7b474a9f393b (patch) | |
tree | b59d5e6e1ab3e4bb730717f5ff203255d38c6e74 | |
parent | 7ee35eb9a6a55ef610eb02a04a33f67e5921cff3 (diff) | |
download | pleroma-ed894802d5dfe60072b9445cb28e7b474a9f393b.tar.gz |
Expand MRF SimplePolicy docs
-rw-r--r-- | docs/configuration/mrf.md | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/docs/configuration/mrf.md b/docs/configuration/mrf.md index c3957c255..9f13c3d18 100644 --- a/docs/configuration/mrf.md +++ b/docs/configuration/mrf.md @@ -41,11 +41,14 @@ config :pleroma, :instance, Once `SimplePolicy` is enabled, you can configure various groups in the `:mrf_simple` config object. These groups are: -* `media_removal`: Servers in this group will have media stripped from incoming messages. -* `media_nsfw`: Servers in this group will have the #nsfw tag and sensitive setting injected into incoming messages which contain media. * `reject`: Servers in this group will have their messages rejected. -* `federated_timeline_removal`: Servers in this group will have their messages unlisted from the public timelines by flipping the `to` and `cc` fields. +* `accept`: If not empty, only messages from these instances will be accepted (whitelist federation). +* `media_nsfw`: Servers in this group will have the #nsfw tag and sensitive setting injected into incoming messages which contain media. +* `media_removal`: Servers in this group will have media stripped from incoming messages. +* `avatar_removal`: Avatars from these servers will be stripped from incoming messages. +* `banner_removal`: Banner images from these servers will be stripped from incoming messages. * `report_removal`: Servers in this group will have their reports (flags) rejected. +* `federated_timeline_removal`: Servers in this group will have their messages unlisted from the public timelines by flipping the `to` and `cc` fields. Servers should be configured as lists. |