Go to file
2023-02-12 14:01:12 +02:00
.ci Require poetry>=1.3.2 (#14860) 2023-01-17 18:04:44 +00:00
.github Bump peaceiris/actions-gh-pages from 3.9.1 to 3.9.2 (#14861) 2023-01-17 18:28:04 +00:00
changelog.d 1.76.0 2023-01-31 08:23:07 -08:00
contrib Include x_forwarded in workers example configs (#14667) 2023-01-13 14:06:58 +00:00
debian 1.76.0 2023-01-31 08:23:07 -08:00
demo
docker Enable Faster Remote Room Joins against worker-mode Synapse. (#14752) 2023-01-22 21:10:11 +00:00
docs update changelog and upgrade notes 2023-01-31 08:35:22 -08:00
rust Implement MSC3930: polls push rules (#14787) 2023-01-19 12:47:10 +00:00
scripts-dev Enable Faster Remote Room Joins against worker-mode Synapse. (#14752) 2023-01-22 21:10:11 +00:00
stubs Implement MSC3930: polls push rules (#14787) 2023-01-19 12:47:10 +00:00
synapse Merge remote-tracking branch 'upstream/release-v1.76' 2023-01-27 13:51:43 +02:00
synmark
tests Faster joins: omit partial rooms from eager syncs until the resync completes (#14870) 2023-01-23 15:44:39 +00:00
.codecov.yml
.coveragerc
.dockerignore Merge remote-tracking branch 'upstream/release-v1.69' 2022-10-12 15:33:18 +03:00
.editorconfig Apply correct editorconfig to .pyi files (#14526) 2022-11-22 18:33:28 +00:00
.git-blame-ignore-revs
.gitignore Add poetry.toml to .gitignore (#14807) 2023-01-11 11:44:13 +00:00
.gitlab-ci.yml
.rustfmt.toml Port the push rule classes to Rust. (#13768) 2022-09-20 12:10:31 +01:00
AUTHORS.rst
book.toml
build_rust.py Always build Rust extension in release mode (#14009) 2022-10-03 11:20:18 +01:00
Cargo.lock Bump regex from 1.7.0 to 1.7.1 (#14848) 2023-01-16 10:51:55 +00:00
Cargo.toml
CHANGES.md update changelog and upgrade notes 2023-01-31 08:35:22 -08:00
CONTRIBUTING.md
Dockerfile Bump Docker image to Python 3.11 2022-11-16 17:17:25 +02:00
INSTALL.md
LICENSE
mypy.ini Fix type hints for Monthly Active Users tests (#14889) 2023-01-22 10:50:14 +01:00
poetry.lock Bump ruff from 0.0.224 to 0.0.230 (#14897) 2023-01-23 09:32:07 -05:00
pylint.cfg
pyproject.toml 1.76.0 2023-01-31 08:23:07 -08:00
README.md Update README.md 2023-02-12 14:01:12 +02:00
README.rst
requirements.txt Merge remote-tracking branch 'upstream/release-v1.76' 2023-01-25 18:27:05 +02:00
sytest-blacklist
tox.ini
UPGRADE.rst

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.75.0. If you don't want RCs, use the specific release tags.

†If there are merge conflicts, the update may be delayed for up to a few days after the full release.

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. Upstreamed after over 3 years 🎉
  • 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