diff options
author | Brendan Abolivier <babolivier@matrix.org> | 2019-06-12 10:31:37 +0100 |
---|---|---|
committer | Brendan Abolivier <babolivier@matrix.org> | 2019-06-14 18:16:03 +0100 |
commit | f874b16b2e7208d3a202283c085340196d065560 (patch) | |
tree | c3b9bce86873f5b11b6cfdcea1b6edf7dbe997f0 /docs | |
parent | 1.0.0rc3 (diff) | |
download | synapse-f874b16b2e7208d3a202283c085340196d065560.tar.xz |
Add plugin APIs for implementations of custom event rules.
Diffstat (limited to 'docs')
-rw-r--r-- | docs/sample_config.yaml | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/docs/sample_config.yaml b/docs/sample_config.yaml index 4d7e6f3eb5..bd80d97a93 100644 --- a/docs/sample_config.yaml +++ b/docs/sample_config.yaml @@ -1351,3 +1351,16 @@ password_config: # alias: "*" # room_id: "*" # action: allow + + +# Server admins can define a Python module that implements extra rules for +# allowing or denying incoming events. In order to work, this module needs to +# override the methods defined in synapse/events/third_party_rules.py. +# +# This feature is designed to be used in closed federations only, where each +# participating server enforces the same rules. +# +#third_party_event_rules: +# module: "my_custom_project.SuperRulesSet" +# config: +# example_option: 'things' |