diff options
author | Andrew Morgan <1342360+anoadragon453@users.noreply.github.com> | 2020-05-08 19:25:48 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-05-08 19:25:48 +0100 |
commit | 67feea8044562764b04c4968ebf159b44eb59218 (patch) | |
tree | d35c110e02239d88d98165a46fc11e8ec240852b /docs/sample_config.yaml | |
parent | Implement OpenID Connect-based login (#7256) (diff) | |
download | synapse-67feea8044562764b04c4968ebf159b44eb59218.tar.xz |
Extend spam checker to allow for multiple modules (#7435)
Diffstat (limited to 'docs/sample_config.yaml')
-rw-r--r-- | docs/sample_config.yaml | 15 |
1 files changed, 11 insertions, 4 deletions
diff --git a/docs/sample_config.yaml b/docs/sample_config.yaml index 1e397f7734..5abeaf519b 100644 --- a/docs/sample_config.yaml +++ b/docs/sample_config.yaml @@ -1867,10 +1867,17 @@ password_providers: # include_content: true -#spam_checker: -# module: "my_custom_project.SuperSpamChecker" -# config: -# example_option: 'things' +# Spam checkers are third-party modules that can block specific actions +# of local users, such as creating rooms and registering undesirable +# usernames, as well as remote users by redacting incoming events. +# +spam_checker: + #- module: "my_custom_project.SuperSpamChecker" + # config: + # example_option: 'things' + #- module: "some_other_project.BadEventStopper" + # config: + # example_stop_events_from: ['@bad:example.com'] # Uncomment to allow non-server-admin users to create groups on this server |