0
0
Fork 1
mirror of https://mau.dev/maunium/synapse.git synced 2024-12-04 09:17:42 +01:00
No description
Find a file
2024-12-03 18:47:12 +02:00
.ci Remove support for python 3.8 (#17908) 2024-11-06 19:36:01 +00:00
.github Stop building wheels for macOS 2024-12-03 16:39:41 +01:00
changelog.d 1.120.1 2024-12-03 11:18:31 +01:00
contrib Remove the deprecated cgi module (#17741) 2024-09-25 11:15:34 +02:00
debian 1.120.2 2024-12-03 16:58:40 +01:00
demo Suppress the trusted key server warning for matrix.org in the demo scripts (#15527) 2023-05-03 12:07:49 +00:00
docker Bump Synapse Dockerfile default to Python 3.12 (#17887) 2024-11-05 13:15:10 +00:00
docs Enable authenticated media by default (#17889) 2024-11-20 14:48:22 +00:00
rust Move server event filtering logic to rust (#17928) 2024-11-14 16:18:24 +00:00
scripts-dev Remove support for python 3.8 (#17908) 2024-11-06 19:36:01 +00:00
stubs Format files with Ruff (#17643) 2024-09-02 12:39:04 +01:00
synapse Merge remote-tracking branch 'upstream/release-v1.120' 2024-12-03 18:47:12 +02:00
synmark Bump mypy from 1.10.1 to 1.11.2 (#17842) 2024-10-17 15:05:00 +00:00
tests Don't allow unsupported content-type 2024-12-03 09:53:21 +01:00
.codecov.yml
.coveragerc
.dockerignore Add meow dockerfile 2024-09-25 13:31:13 +03:00
.editorconfig
.git-blame-ignore-revs Use full GitHub links instead of bare issue numbers. (#16637) 2023-11-15 08:02:11 -05:00
.gitignore Fix the devenv up configuration which was ignoring the config overrides. (#15854) 2023-07-03 11:39:52 +01:00
.gitlab-ci.yml Add meow dockerfile 2024-09-25 13:31:13 +03:00
.rustfmt.toml
AUTHORS.rst
book.toml More renaming 2023-12-13 15:41:11 +00:00
build_rust.py
Cargo.lock Bump serde from 1.0.214 to 1.0.215 (#17938) 2024-11-18 15:48:26 +00:00
Cargo.toml Fix building rust with nightly (#15906) 2023-07-10 16:24:04 +01:00
CHANGES.md 1.120.2 2024-12-03 16:58:40 +01:00
CONTRIBUTING.md Update the contributing guide after reliecensing (#16772) 2024-01-03 11:31:03 +00:00
Dockerfile Add meow dockerfile 2024-09-25 13:31:13 +03:00
flake.lock Fix nix flake 2024-11-20 15:01:56 +00:00
flake.nix Fix nix flake 2024-11-20 15:01:56 +00:00
INSTALL.md Update book location 2023-12-13 16:15:22 +00:00
LICENSE Update the license from Apache License v2 to AGPL-3.0. 2023-11-21 15:29:55 -05:00
mypy.ini Remove support for python 3.8 (#17908) 2024-11-06 19:36:01 +00:00
poetry.lock Bump packaging from 24.1 to 24.2 (#17940) 2024-11-18 15:48:05 +00:00
pyproject.toml 1.120.2 2024-12-03 16:58:40 +01: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 remote-tracking branch 'upstream/release-v1.120' 2024-11-20 20:45:04 +02:00
sytest-blacklist Use full GitHub links instead of bare issue numbers. (#16637) 2023-11-15 08:02:11 -05:00
tox.ini Remove support for python 3.8 (#17908) 2024-11-06 19:36:01 +00:00
UPGRADE.rst Update book location 2023-12-13 16:15:22 +00: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.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"