0
0
Fork 1
mirror of https://mau.dev/maunium/synapse.git synced 2024-11-16 06:51:46 +01:00
No description
Find a file
2024-09-25 13:34:24 +03:00
.ci
.github Format files with Ruff (#17643) 2024-09-02 12:39:04 +01:00
changelog.d 1.116.0rc1 2024-09-25 11:34:36 +02:00
contrib Remove the deprecated cgi module (#17741) 2024-09-25 11:15:34 +02:00
debian 1.116.0rc1 2024-09-25 11:34:36 +02:00
demo
docker Support MSC4140: Delayed events (Futures) (#17326) 2024-09-23 13:33:48 +01:00
docs Support MSC4140: Delayed events (Futures) (#17326) 2024-09-23 13:33:48 +01:00
rust Add event.internal_metadata.instance_name (#17300) 2024-06-13 11:32:50 -05:00
scripts-dev Support MSC4140: Delayed events (Futures) (#17326) 2024-09-23 13:33:48 +01:00
stubs Format files with Ruff (#17643) 2024-09-02 12:39:04 +01:00
synapse Don't apply alias rules to admins 2024-09-25 13:33:02 +03:00
synmark Format files with Ruff (#17643) 2024-09-02 12:39:04 +01:00
tests Support MSC4140: Delayed events (Futures) (#17326) 2024-09-23 13:33:48 +01:00
.codecov.yml
.coveragerc
.dockerignore Add meow dockerfile 2024-09-25 13:31:13 +03:00
.editorconfig
.git-blame-ignore-revs
.gitignore
.gitlab-ci.yml Add meow dockerfile 2024-09-25 13:31:13 +03:00
.rustfmt.toml
AUTHORS.rst
book.toml
build_rust.py
Cargo.lock Bump bytes from 1.7.1 to 1.7.2 (#17743) 2024-09-24 18:33:57 +02:00
Cargo.toml
CHANGES.md Changelog fixes 2024-09-25 12:07:51 +02:00
CONTRIBUTING.md
Dockerfile Add meow dockerfile 2024-09-25 13:31:13 +03:00
flake.lock
flake.nix
INSTALL.md
LICENSE
mypy.ini Support MSC3916 by adding _matrix/client/v1/media/download endpoint (#17365) 2024-07-02 14:07:04 +01:00
poetry.lock Bump treq from 23.11.0 to 24.9.1 (#17744) 2024-09-25 11:19:03 +02:00
pyproject.toml 1.116.0rc1 2024-09-25 11:34:36 +02:00
README.md Add meow readme and config extension 2024-09-25 13:31:13 +03:00
README.rst Fix minor misspelling in README.rst. (#17664) 2024-09-10 17:33:25 +01:00
requirements.txt Merge tag 'meow-patchset-v1.116.0rc1' 2024-09-25 13:34:24 +03: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.
  • 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.

You can view the full list of changes on the meow-patchset branch. Additionally, historical patch sets are saved as meow-patchset-vX tags.

Configuration reference

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"