Go to file
2022-05-31 15:52:23 +03:00
.ci Add CI job to act as a canary for testing against latest dependencies (#12472) 2022-04-20 12:48:44 +01:00
.github Use docker/metadata-action to generate docker image tags (#12573) 2022-05-05 12:36:42 +00:00
changelog.d 1.60.0 2022-05-31 13:41:49 +01:00
contrib docs(contrib): Add link to documentation in dashboard (#12602) 2022-05-09 10:08:31 +00:00
debian 1.60.0 2022-05-31 13:41:49 +01:00
demo Fix federation in demo scripts. (#12783) 2022-05-18 14:49:33 -04:00
docker Pin poetry.core in Docker images (#12853) 2022-05-24 11:35:08 +01:00
docs Fix import in module_api module and docs on the new check_event_for_spam signature (#12918) 2022-05-31 12:04:53 +02:00
scripts-dev Disable 'faster room join' Complement tests when testing against Synapse with workers. (#12842) 2022-05-23 17:27:05 +01:00
stubs Update mypy to 0.950 and fix complaints (#12650) 2022-05-06 12:35:20 +00:00
synapse Merge remote-tracking branch 'upstream/release-v1.60' 2022-05-31 15:52:23 +03:00
synmark Remove redundant "coding: utf-8" lines (#9786) 2021-04-14 15:34:27 +01:00
tests Add an option allowing users to use their password to reauthenticate even though password authentication is disabled. (#12883) 2022-05-27 09:44:51 +00:00
.codecov.yml Disable codecov reports to GH comments. 2019-07-31 10:56:02 +01:00
.coveragerc Fix coverage in sytest and use plugins for buildkite (#5922) 2019-08-29 22:19:57 +10:00
.dockerignore Merge remote-tracking branch 'upstream/release-v1.58' 2022-04-26 14:40:43 +03:00
.editorconfig Add a basic .editorconfig 2018-12-03 22:38:47 -06:00
.flake8 Prune setup.cfg some more (#12059) 2022-02-22 14:52:56 +00:00
.git-blame-ignore-revs Add a windows->unix file endings commit to git blame ignore file (#12824) 2022-05-23 11:28:14 +01:00
.gitignore Dump setuptools; correct pyproject version number (#12478) 2022-04-20 17:33:20 +01:00
.gitlab-ci.yml Remove unneccessary caching 2022-04-26 20:00:38 +03:00
AUTHORS.rst Automatically delete empty groups/communities (#6453) 2019-12-16 12:12:40 +00:00
book.toml Compile and render Synapse's docs into a browsable, mobile-friendly and searchable website (#10086) 2021-06-03 17:20:40 +01:00
CHANGES.md 1.60.0 2022-05-31 13:41:49 +01:00
CONTRIBUTING.md Advertise matrix-org.github.io/synapse docs (#10595) 2021-08-31 11:29:27 +01:00
Dockerfile Don't uninstall build env setuptools 2022-04-26 21:48:15 +03:00
INSTALL.md Fix broken links in INSTALL.md (#10331) 2021-07-08 15:46:13 +01:00
LICENSE Reference Matrix Home Server 2014-08-12 15:10:52 +01:00
mypy.ini Add some type hints to tests files (#12833) 2022-05-23 11:23:26 +00:00
poetry.lock Update poetry.lock 2022-05-10 14:53:36 +03:00
pylint.cfg Added pylint config file: ignore missing-docstring messages. 2014-10-24 10:22:09 +01:00
pyproject.toml 1.60.0 2022-05-31 13:41:49 +01:00
README.md Update README.md 2022-04-30 22:18:49 +03:00
README.rst Fixes to the formatting of README.rst (#12627) 2022-05-04 11:02:19 +01:00
requirements.txt Update poetry.lock 2022-05-10 14:53:36 +03:00
sytest-blacklist Back out implementation of MSC2314 (#12474) 2022-04-19 11:17:29 +00:00
tox.ini Run lints under poetry in CI; remove lint tox jobs (#12434) 2022-04-12 17:35:48 +01:00
UPGRADE.rst fix broken link to upgrade notes (#10631) 2021-08-18 12:38:37 +01:00

Maunium Synapse

This is a fork of Synapse to remove dumb limits and fix bugs that the upstream devs don't want to fix.

The only official distribution is the docker image in the GitLab container registry, but you can also install from source (upstream instructions).

The master branch and :latest docker tag are upgraded to each upstream release candidate very soon after release (usually within 10 minutes). There are also docker tags for each release, e.g. :1.57.0. If you don't want RCs, use the specific release tags.

List of changes

  • Default power level for room creator is 9001 instead of 100.
  • Room creator can specify a custom room ID with the room_id param in the request body. If the room ID is already in use, it will return M_CONFLICT.
  • URL previewer user agent includes Bot so Twitter previews work properly. Upstreamed after over 2 years 🎉
  • Local event creation concurrency is disabled to avoid unnecessary state resolution.
  • Register admin API can register invalid user IDs.
  • Docker image with jemalloc enabled by default.
  • Config option to allow specific users to send events without unnecessary validation.
  • Config option to allow specific users to receive events that are usually filtered away (e.g. org.matrix.dummy_event and m.room.aliases).
  • Config option to allow specific users to use timestamp massaging without being appservice users.
  • Config option to allow appservices to use MSC2716 batch sending as any local user.
  • Removed bad pusher URL validation.
  • webp images are thumbnailed to webp instead of jpeg to avoid losing transparency.
  • Media repo Cache-Control header says immutable and 1 year for all media that exists, as media IDs in Matrix are immutable.
  • Allowed sending custom data with read receipts.

Configuration

Generating a new config will include the meow section, but this is here for reference for existing configs.

meow:
   # List of users who aren't subject to unnecessary validation in the C-S API.
   validation_override:
   - "@you:example.com"
   # List of users who will get org.matrix.dummy_event and m.room.aliases events down /sync
   filter_override:
   - "@you:example.com"
   # Whether or not the admin API should be able to register invalid user IDs.
   admin_api_register_invalid: true
   # List of users who can use timestamp massaging without being appservices
   timestamp_override:
   - "@you:example.com"
   # Whether appservices should be allowed to use MSC2716 batch sending as any local user.
   appservice_batch_send_any: false