diff options
author | Shay <hillerys@element.io> | 2023-08-03 11:43:51 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-08-03 11:43:51 -0700 |
commit | 0a5f4f766514b84aff84ff17dffd5301a437c797 (patch) | |
tree | a7909bcb2d741ba0fb4d9787ae633d974c64add5 /docs/usage | |
parent | Allow config of the backoff algorithm for the federation client. (#15754) (diff) | |
download | synapse-0a5f4f766514b84aff84ff17dffd5301a437c797.tar.xz |
Move support for application service query parameter authorization behind a configuration option (#16017)
Diffstat (limited to 'docs/usage')
-rw-r--r-- | docs/usage/configuration/config_documentation.md | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/docs/usage/configuration/config_documentation.md b/docs/usage/configuration/config_documentation.md index c32608da2b..2987c9332d 100644 --- a/docs/usage/configuration/config_documentation.md +++ b/docs/usage/configuration/config_documentation.md @@ -2849,6 +2849,20 @@ Example configuration: track_appservice_user_ips: true ``` --- +### `use_appservice_legacy_authorization` + +Whether to send the application service access tokens via the `access_token` query parameter +per older versions of the Matrix specification. Defaults to false. Set to true to enable sending +access tokens via a query parameter. + +**Enabling this option is considered insecure and is not recommended. ** + +Example configuration: +```yaml +use_appservice_legacy_authorization: true +``` + +--- ### `macaroon_secret_key` A secret which is used to sign |