diff --git a/latest/404.html b/latest/404.html index f6139a9b39..15eccdfea2 100644 --- a/latest/404.html +++ b/latest/404.html @@ -101,7 +101,7 @@ diff --git a/latest/CAPTCHA_SETUP.html b/latest/CAPTCHA_SETUP.html index bd7389f51d..c0e6ac0e95 100644 --- a/latest/CAPTCHA_SETUP.html +++ b/latest/CAPTCHA_SETUP.html @@ -99,7 +99,7 @@ diff --git a/latest/MSC1711_certificates_FAQ.html b/latest/MSC1711_certificates_FAQ.html index ffef692170..7538bb3f23 100644 --- a/latest/MSC1711_certificates_FAQ.html +++ b/latest/MSC1711_certificates_FAQ.html @@ -99,7 +99,7 @@ diff --git a/latest/admin_api/account_validity.html b/latest/admin_api/account_validity.html index b9d59da0fd..58c9681656 100644 --- a/latest/admin_api/account_validity.html +++ b/latest/admin_api/account_validity.html @@ -99,7 +99,7 @@ diff --git a/latest/admin_api/delete_group.html b/latest/admin_api/delete_group.html index 05728e5363..6f894ccd55 100644 --- a/latest/admin_api/delete_group.html +++ b/latest/admin_api/delete_group.html @@ -99,7 +99,7 @@ diff --git a/latest/admin_api/event_reports.html b/latest/admin_api/event_reports.html index e6de889685..0cad36c62b 100644 --- a/latest/admin_api/event_reports.html +++ b/latest/admin_api/event_reports.html @@ -99,7 +99,7 @@ diff --git a/latest/admin_api/media_admin_api.html b/latest/admin_api/media_admin_api.html index ae2edbfdf5..21a8dd3a9f 100644 --- a/latest/admin_api/media_admin_api.html +++ b/latest/admin_api/media_admin_api.html @@ -99,7 +99,7 @@ diff --git a/latest/admin_api/purge_history_api.html b/latest/admin_api/purge_history_api.html index e30a049b85..69206b5095 100644 --- a/latest/admin_api/purge_history_api.html +++ b/latest/admin_api/purge_history_api.html @@ -99,7 +99,7 @@ diff --git a/latest/admin_api/register_api.html b/latest/admin_api/register_api.html index 81f4e9aca4..f7d344f1c3 100644 --- a/latest/admin_api/register_api.html +++ b/latest/admin_api/register_api.html @@ -99,7 +99,7 @@ diff --git a/latest/admin_api/room_membership.html b/latest/admin_api/room_membership.html index a7fbe1aa53..7406a148b7 100644 --- a/latest/admin_api/room_membership.html +++ b/latest/admin_api/room_membership.html @@ -99,7 +99,7 @@ diff --git a/latest/admin_api/rooms.html b/latest/admin_api/rooms.html index d80698c79e..ba798260e6 100644 --- a/latest/admin_api/rooms.html +++ b/latest/admin_api/rooms.html @@ -99,7 +99,7 @@ diff --git a/latest/admin_api/server_notices.html b/latest/admin_api/server_notices.html index 80a31a167b..40abf53bd3 100644 --- a/latest/admin_api/server_notices.html +++ b/latest/admin_api/server_notices.html @@ -99,7 +99,7 @@ diff --git a/latest/admin_api/shutdown_room.html b/latest/admin_api/shutdown_room.html deleted file mode 100644 index 0014828f41..0000000000 --- a/latest/admin_api/shutdown_room.html +++ /dev/null @@ -1,343 +0,0 @@ - - - - - - Shutdown Room - Synapse - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -
- - - - - - - - - - - -
-
- -
- -
- -

Deprecated: Shutdown room API

-

The old Shutdown room API is deprecated and will be removed in a future release. -See the new Delete Room API for more details.

-

Shuts down a room, preventing new joins and moves local users and room aliases automatically -to a new room. The new room will be created with the user specified by the -new_room_user_id parameter as room administrator and will contain a message -explaining what happened. Users invited to the new room will have power level --10 by default, and thus be unable to speak. The old room's power levels will be changed to -disallow any further invites or joins.

-

The local server will only have the power to move local user and room aliases to -the new room. Users on other servers will be unaffected.

-

API

-

You will need to authenticate with an access token for an admin user.

-

URL

-

POST /_synapse/admin/v1/shutdown_room/{room_id}

-

URL Parameters

-
    -
  • room_id - The ID of the room (e.g !someroom:example.com)
  • -
-

JSON Body Parameters

-
    -
  • new_room_user_id - Required. A string representing the user ID of the user that will admin -the new room that all users in the old room will be moved to.
  • -
  • room_name - Optional. A string representing the name of the room that new users will be -invited to.
  • -
  • message - Optional. A string containing the first message that will be sent as -new_room_user_id in the new room. Ideally this will clearly convey why the -original room was shut down.
  • -
-

If not specified, the default value of room_name is "Content Violation -Notification". The default value of message is "Sharing illegal content on -othis server is not permitted and rooms in violation will be blocked."

-

Response Parameters

-
    -
  • kicked_users - An integer number representing the number of users that -were kicked.
  • -
  • failed_to_kick_users - An integer number representing the number of users -that were not kicked.
  • -
  • local_aliases - An array of strings representing the local aliases that were migrated from -the old room to the new.
  • -
  • new_room_id - A string representing the room ID of the new room.
  • -
-

Example

-

Request:

-
POST /_synapse/admin/v1/shutdown_room/!somebadroom%3Aexample.com
-
-{
-    "new_room_user_id": "@someuser:example.com",
-    "room_name": "Content Violation Notification",
-    "message": "Bad Room has been shutdown due to content violations on this server. Please review our Terms of Service."
-}
-
-

Response:

-
{
-    "kicked_users": 5,
-    "failed_to_kick_users": 0,
-    "local_aliases": ["#badroom:example.com", "#evilsaloon:example.com],
-    "new_room_id": "!newroomid:example.com",
-},
-
-

Undoing room shutdowns

-

Note: This guide may be outdated by the time you read it. By nature of room shutdowns being performed at the database level, -the structure can and does change without notice.

-

First, it's important to understand that a room shutdown is very destructive. Undoing a shutdown is not as simple as pretending it -never happened - work has to be done to move forward instead of resetting the past. In fact, in some cases it might not be possible -to recover at all:

-
    -
  • If the room was invite-only, your users will need to be re-invited.
  • -
  • If the room no longer has any members at all, it'll be impossible to rejoin.
  • -
  • The first user to rejoin will have to do so via an alias on a different server.
  • -
-

With all that being said, if you still want to try and recover the room:

-
    -
  1. For safety reasons, shut down Synapse.
  2. -
  3. In the database, run DELETE FROM blocked_rooms WHERE room_id = '!example:example.org'; -
      -
    • For caution: it's recommended to run this in a transaction: BEGIN; DELETE ...;, verify you got 1 result, then COMMIT;.
    • -
    • The room ID is the same one supplied to the shutdown room API, not the Content Violation room.
    • -
    -
  4. -
  5. Restart Synapse.
  6. -
-

You will have to manually handle, if you so choose, the following:

-
    -
  • Aliases that would have been redirected to the Content Violation room.
  • -
  • Users that would have been booted from the room (and will have been force-joined to the Content Violation room).
  • -
  • Removal of the Content Violation room if desired.
  • -
- -
- - -
-
- - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/latest/admin_api/statistics.html b/latest/admin_api/statistics.html index 97a80bc442..2761c007d0 100644 --- a/latest/admin_api/statistics.html +++ b/latest/admin_api/statistics.html @@ -99,7 +99,7 @@ diff --git a/latest/admin_api/user_admin_api.html b/latest/admin_api/user_admin_api.html index fc0b895c87..65b9cfe00e 100644 --- a/latest/admin_api/user_admin_api.html +++ b/latest/admin_api/user_admin_api.html @@ -99,7 +99,7 @@ diff --git a/latest/admin_api/version_api.html b/latest/admin_api/version_api.html index 9654515f81..c31d017f76 100644 --- a/latest/admin_api/version_api.html +++ b/latest/admin_api/version_api.html @@ -99,7 +99,7 @@ diff --git a/latest/application_services.html b/latest/application_services.html index fd9c777026..a163e38009 100644 --- a/latest/application_services.html +++ b/latest/application_services.html @@ -99,7 +99,7 @@ diff --git a/latest/auth_chain_difference_algorithm.html b/latest/auth_chain_difference_algorithm.html index a82486bc57..d7205f7365 100644 --- a/latest/auth_chain_difference_algorithm.html +++ b/latest/auth_chain_difference_algorithm.html @@ -99,7 +99,7 @@ diff --git a/latest/code_style.html b/latest/code_style.html index 4eda21a683..9c5c59c06e 100644 --- a/latest/code_style.html +++ b/latest/code_style.html @@ -99,7 +99,7 @@ diff --git a/latest/consent_tracking.html b/latest/consent_tracking.html index 97f3aba3d9..d123c3ff16 100644 --- a/latest/consent_tracking.html +++ b/latest/consent_tracking.html @@ -99,7 +99,7 @@ diff --git a/latest/delegate.html b/latest/delegate.html index a270bd186c..797e61c36b 100644 --- a/latest/delegate.html +++ b/latest/delegate.html @@ -99,7 +99,7 @@ diff --git a/latest/deprecation_policy.html b/latest/deprecation_policy.html index 46265272cf..b30fd49e55 100644 --- a/latest/deprecation_policy.html +++ b/latest/deprecation_policy.html @@ -99,7 +99,7 @@ diff --git a/latest/dev/cas.html b/latest/dev/cas.html deleted file mode 100644 index f70e1081e9..0000000000 --- a/latest/dev/cas.html +++ /dev/null @@ -1,317 +0,0 @@ - - - - - - CAS - Synapse - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -
- - - - - - - - - - - -
-
- -
- -
- -

How to test CAS as a developer without a server

-

The django-mama-cas project is an -easy to run CAS implementation built on top of Django.

-

Prerequisites

-
    -
  1. Create a new virtualenv: python3 -m venv <your virtualenv>
  2. -
  3. Activate your virtualenv: source /path/to/your/virtualenv/bin/activate
  4. -
  5. Install Django and django-mama-cas: -
    python -m pip install "django<3" "django-mama-cas==2.4.0"
    -
    -
  6. -
  7. Create a Django project in the current directory: -
    django-admin startproject cas_test .
    -
    -
  8. -
  9. Follow the install directions for django-mama-cas
  10. -
  11. Setup the SQLite database: python manage.py migrate
  12. -
  13. Create a user: -
    python manage.py createsuperuser
    -
    -
      -
    1. Use whatever you want as the username and password.
    2. -
    3. Leave the other fields blank.
    4. -
    -
  14. -
  15. Use the built-in Django test server to serve the CAS endpoints on port 8000: -
    python manage.py runserver
    -
    -
  16. -
-

You should now have a Django project configured to serve CAS authentication with -a single user created.

-

Configure Synapse (and Element) to use CAS

-
    -
  1. Modify your homeserver.yaml to enable CAS and point it to your locally -running Django test server: -
    cas_config:
    -  enabled: true
    -  server_url: "http://localhost:8000"
    -  service_url: "http://localhost:8081"
    -  #displayname_attribute: name
    -  #required_attributes:
    -  #    name: value
    -
    -
  2. -
  3. Restart Synapse.
  4. -
-

Note that the above configuration assumes the homeserver is running on port 8081 -and that the CAS server is on port 8000, both on localhost.

-

Testing the configuration

-

Then in Element:

-
    -
  1. Visit the login page with a Element pointing at your homeserver.
  2. -
  3. Click the Single Sign-On button.
  4. -
  5. Login using the credentials created with createsuperuser.
  6. -
  7. You should be logged in.
  8. -
-

If you want to repeat this process you'll need to manually logout first:

-
    -
  1. http://localhost:8000/admin/
  2. -
  3. Click "logout" in the top right.
  4. -
- -
- - -
-
- - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/latest/dev/git.html b/latest/dev/git.html deleted file mode 100644 index 8c3c5bf7bb..0000000000 --- a/latest/dev/git.html +++ /dev/null @@ -1,376 +0,0 @@ - - - - - - Git Usage - Synapse - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -
- - - - - - - - - - - -
-
- -
- -
- -

Some notes on how we use git

-

On keeping the commit history clean

-

In an ideal world, our git commit history would be a linear progression of -commits each of which contains a single change building on what came -before. Here, by way of an arbitrary example, is the top of git log --graph b2dba0607:

-clean git graph -

Note how the commit comment explains clearly what is changing and why. Also -note the absence of merge commits, as well as the absence of commits called -things like (to pick a few culprits): -“pep8”, “fix broken -test”, -“oops”, -“typo”, or “Who's -the president?”.

-

There are a number of reasons why keeping a clean commit history is a good -thing:

-
    -
  • -

    From time to time, after a change lands, it turns out to be necessary to -revert it, or to backport it to a release branch. Those operations are -much easier when the change is contained in a single commit.

    -
  • -
  • -

    Similarly, it's much easier to answer questions like “is the fix for -/publicRooms on the release branch?” if that change consists of a single -commit.

    -
  • -
  • -

    Likewise: “what has changed on this branch in the last week?” is much -clearer without merges and “pep8” commits everywhere.

    -
  • -
  • -

    Sometimes we need to figure out where a bug got introduced, or some -behaviour changed. One way of doing that is with git bisect: pick an -arbitrary commit between the known good point and the known bad point, and -see how the code behaves. However, that strategy fails if the commit you -chose is the middle of someone's epic branch in which they broke the world -before putting it back together again.

    -
  • -
-

One counterargument is that it is sometimes useful to see how a PR evolved as -it went through review cycles. This is true, but that information is always -available via the GitHub UI (or via the little-known refs/pull -namespace).

-

Of course, in reality, things are more complicated than that. We have release -branches as well as develop and master, and we deliberately merge changes -between them. Bugs often slip through and have to be fixed later. That's all -fine: this not a cast-iron rule which must be obeyed, but an ideal to aim -towards.

-

Merges, squashes, rebases: wtf?

-

Ok, so that's what we'd like to achieve. How do we achieve it?

-

The TL;DR is: when you come to merge a pull request, you probably want to -“squash and merge”:

-

squash and merge.

-

(This applies whether you are merging your own PR, or that of another -contributor.)

-

“Squash and merge”1 takes all of the changes in the -PR, and bundles them into a single commit. GitHub gives you the opportunity to -edit the commit message before you confirm, and normally you should do so, -because the default will be useless (again: * woops typo is not a useful -thing to keep in the historical record).

-

The main problem with this approach comes when you have a series of pull -requests which build on top of one another: as soon as you squash-merge the -first PR, you'll end up with a stack of conflicts to resolve in all of the -others. In general, it's best to avoid this situation in the first place by -trying not to have multiple related PRs in flight at the same time. Still, -sometimes that's not possible and doing a regular merge is the lesser evil.

-

Another occasion in which a regular merge makes more sense is a PR where you've -deliberately created a series of commits each of which makes sense in its own -right. For example: a PR which gradually propagates a refactoring operation -through the codebase, or a -PR which is the culmination of several other -PRs. In this case the ability -to figure out when a particular change/bug was introduced could be very useful.

-

Ultimately: this is not a hard-and-fast-rule. If in doubt, ask yourself “do -each of the commits I am about to merge make sense in their own right”, but -remember that we're just doing our best to balance “keeping the commit history -clean” with other factors.

-

Git branching model

-

A lot -of -words have been -written in the past about git branching models (no really, a -lot). I tend to -think the whole thing is overblown. Fundamentally, it's not that -complicated. Here's how we do it.

-

Let's start with a picture:

-

branching model

-

It looks complicated, but it's really not. There's one basic rule: anyone is -free to merge from any more-stable branch to any less-stable branch at -any time2. (The principle behind this is that if a -change is good enough for the more-stable branch, then it's also good enough go -put in a less-stable branch.)

-

Meanwhile, merging (or squashing, as per the above) from a less-stable to a -more-stable branch is a deliberate action in which you want to publish a change -or a set of changes to (some subset of) the world: for example, this happens -when a PR is landed, or as part of our release process.

-

So, what counts as a more- or less-stable branch? A little reflection will show -that our active branches are ordered thus, from more-stable to less-stable:

-
    -
  • master (tracks our last release).
  • -
  • release-vX.Y (the branch where we prepare the next release)3.
  • -
  • PR branches which are targeting the release.
  • -
  • develop (our "mainline" branch containing our bleeding-edge).
  • -
  • regular PR branches.
  • -
-

The corollary is: if you have a bugfix that needs to land in both -release-vX.Y and develop, then you should base your PR on -release-vX.Y, get it merged there, and then merge from release-vX.Y to -develop. (If a fix lands in develop and we later need it in a -release-branch, we can of course cherry-pick it, but landing it in the release -branch first helps reduce the chance of annoying conflicts.)

-
-

[1]: “Squash and merge” is GitHub's term for this -operation. Given that there is no merge involved, I'm not convinced it's the -most intuitive name. ^

-

[2]: Well, anyone with commit access.^

-

[3]: Very, very occasionally (I think this has happened once in -the history of Synapse), we've had two releases in flight at once. Obviously, -release-v1.2 is more-stable than release-v1.3. ^

- -
- - -
-
- - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/latest/dev/git/branches.jpg b/latest/dev/git/branches.jpg deleted file mode 100644 index 715ecc8cd0..0000000000 Binary files a/latest/dev/git/branches.jpg and /dev/null differ diff --git a/latest/dev/git/clean.png b/latest/dev/git/clean.png deleted file mode 100644 index 3accd7ccef..0000000000 Binary files a/latest/dev/git/clean.png and /dev/null differ diff --git a/latest/dev/git/squash.png b/latest/dev/git/squash.png deleted file mode 100644 index 234caca3e4..0000000000 Binary files a/latest/dev/git/squash.png and /dev/null differ diff --git a/latest/dev/saml.html b/latest/dev/saml.html deleted file mode 100644 index 749b12817b..0000000000 --- a/latest/dev/saml.html +++ /dev/null @@ -1,294 +0,0 @@ - - - - - - SAML - Synapse - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -
- - - - - - - - - - - -
-
- -
- -
- -

How to test SAML as a developer without a server

-

https://capriza.github.io/samling/samling.html (https://github.com/capriza/samling) is a great -resource for being able to tinker with the SAML options within Synapse without needing to -deploy and configure a complicated software stack.

-

To make Synapse (and therefore Riot) use it:

-
    -
  1. Use the samling.html URL above or deploy your own and visit the IdP Metadata tab.
  2. -
  3. Copy the XML to your clipboard.
  4. -
  5. On your Synapse server, create a new file samling.xml next to your homeserver.yaml with -the XML from step 2 as the contents.
  6. -
  7. Edit your homeserver.yaml to include: -
    saml2_config:
    -  sp_config:
    -    allow_unknown_attributes: true  # Works around a bug with AVA Hashes: https://github.com/IdentityPython/pysaml2/issues/388
    -    metadata:
    -      local: ["samling.xml"]   
    -
    -
  8. -
  9. Ensure that your homeserver.yaml has a setting for public_baseurl: -
    public_baseurl: http://localhost:8080/
    -
    -
  10. -
  11. Run apt-get install xmlsec1 and pip install --upgrade --force 'pysaml2>=4.5.0' to ensure -the dependencies are installed and ready to go.
  12. -
  13. Restart Synapse.
  14. -
-

Then in Riot:

-
    -
  1. Visit the login page with a Riot pointing at your homeserver.
  2. -
  3. Click the Single Sign-On button.
  4. -
  5. On the samling page, enter a Name Identifier and add a SAML Attribute for uid=your_localpart. -The response must also be signed.
  6. -
  7. Click "Next".
  8. -
  9. Click "Post Response" (change nothing).
  10. -
  11. You should be logged in.
  12. -
-

If you try and repeat this process, you may be automatically logged in using the information you -gave previously. To fix this, open your developer console (F12 or Ctrl+Shift+I) while on the -samling page and clear the site data. In Chrome, this will be a button on the Application tab.

- -
- - -
-
- - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/latest/development/cas.html b/latest/development/cas.html index 940580dc80..821b5c72be 100644 --- a/latest/development/cas.html +++ b/latest/development/cas.html @@ -99,7 +99,7 @@ diff --git a/latest/development/contributing_guide.html b/latest/development/contributing_guide.html index 894a84b171..7fcd7baa8f 100644 --- a/latest/development/contributing_guide.html +++ b/latest/development/contributing_guide.html @@ -99,7 +99,7 @@ @@ -291,6 +291,41 @@ trial tests.rest.admin.test_room tests.handlers.test_admin.ExfiltrateData.test_i

To increase the log level for the tests, set SYNAPSE_TEST_LOG_LEVEL:

SYNAPSE_TEST_LOG_LEVEL=DEBUG trial tests
 
+

Running tests under PostgreSQL

+

Invoking trial as above will use an in-memory SQLite database. This is great for +quick development and testing. However, we recommend using a PostgreSQL database +in production (and indeed, we have some code paths specific to each database). +This means that we need to run our unit tests against PostgreSQL too. Our CI does +this automatically for pull requests and release candidates, but it's sometimes +useful to reproduce this locally.

+

To do so, configure Postgres and run trial with the +following environment variables matching your configuration:

+ +

For example:

+
export SYNAPSE_POSTGRES=1
+export SYNAPSE_POSTGRES_HOST=localhost
+export SYNAPSE_POSTGRES_USER=postgres
+export SYNAPSE_POSTGRES_PASSWORD=mydevenvpassword
+trial
+
+

Prebuilt container

+

Since configuring PostgreSQL can be fiddly, we can make use of a pre-made +Docker container to set up PostgreSQL and run our tests for us. To do so, run

+
scripts-dev/test_postgresql.sh
+
+

Any extra arguments to the script will be passed to tox and then to trial, +so we can run a specific test in this container with e.g.

+
scripts-dev/test_postgresql.sh tests.replication.test_sharded_event_persister.EventPersisterShardTestCase
+
+

The container creates a folder in your Synapse checkout called +.tox-pg-container and uses this as a tox environment. The output of any +trial runs goes into _trial_temp in your synapse source directory — the same +as running trial directly on your host machine.

Run the integration tests (Sytest).

The integration tests are a more comprehensive suite of tests. They run a full version of Synapse, including your changes, to check if diff --git a/latest/development/database_schema.html b/latest/development/database_schema.html index 9e58553b90..46a5e15c02 100644 --- a/latest/development/database_schema.html +++ b/latest/development/database_schema.html @@ -99,7 +99,7 @@

@@ -315,7 +315,7 @@ in Python, evaluates to True.

- @@ -333,7 +333,7 @@ in Python, evaluates to True.

- diff --git a/latest/admin_api/purge_room.html b/latest/development/experimental_features.html similarity index 60% rename from latest/admin_api/purge_room.html rename to latest/development/experimental_features.html index 63a345e6e5..732ca04f10 100644 --- a/latest/admin_api/purge_room.html +++ b/latest/development/experimental_features.html @@ -3,7 +3,7 @@ - Purge Rooms - Synapse + Experimental features - Synapse @@ -99,7 +99,7 @@ @@ -145,7 +145,7 @@ - + @@ -182,32 +182,52 @@ -

Deprecated: Purge room API

-

The old Purge room API is deprecated and will be removed in a future release. -See the new Delete Room API for more details.

-

This API will remove all trace of a room from your database.

-

All local users must have left the room before it can be removed.

-

The API is:

-
POST /_synapse/admin/v1/purge_room
-
-{
-    "room_id": "!room:id"
-}
-
-

You must authenticate using the access token of an admin user.

+

Implementing experimental features in Synapse

+

It can be desirable to implement "experimental" features which are disabled by +default and must be explicitly enabled via the Synapse configuration. This is +applicable for features which:

+ +

Note that this only really applies to features which are expected to be desirable +to a broad audience. The module infrastructure should +instead be investigated for non-standard features.

+

Guarding experimental features behind configuration flags should help with some +of the following scenarios:

+ +

Experimental configuration flags should be disabled by default (requiring Synapse +administrators to explicitly opt-in), although there are situations where it makes +sense (from a product point-of-view) to enable features by default. This is +expected and not an issue.

+

It is not a requirement for experimental features to be behind a configuration flag, +but one should be used if unsure.

+

New experimental configuration flags should be added under the experimental +configuration key (see the synapse.config.experimental file) and either explain +(briefly) what is being enabled, or include the MSC number.