Go to file
2021-05-28 19:21:46 +03:00
.buildkite Fix off-by-one-error in synapse_port_db (#9991) 2021-05-24 14:03:00 +01:00
.circleci Drop ARMv7 from docker (#9433) 2021-02-18 14:46:22 +00:00
.github Fix port_db on empty db (#9930) 2021-05-10 13:02:55 +01:00
changelog.d 1.35.0rc3 2021-05-28 17:06:05 +01:00
contrib Update the contrib grafana dashboard (#10001) 2021-05-19 11:47:16 +01:00
debian 1.34.0 2021-05-17 11:34:39 +01:00
demo Handle all new rate limits in demo scripts (#9858) 2021-04-22 17:49:42 +01:00
docker Run complement with Synapse workers manually. (#10039) 2021-05-24 15:32:45 -04:00
docs Remove tls_fingerprints option (#9280) 2021-05-24 17:43:30 +01:00
scripts Fix off-by-one-error in synapse_port_db (#9991) 2021-05-24 14:03:00 +01:00
scripts-dev Run complement with Synapse workers manually. (#10039) 2021-05-24 15:32:45 -04:00
snap Added explicit Python build tools to snap requirements (#7213) 2020-04-17 17:28:00 +01:00
stubs Remove redundant "coding: utf-8" lines (#9786) 2021-04-14 15:34:27 +01:00
synapse Merge remote-tracking branch 'upstream/release-v1.35' 2021-05-28 19:21:46 +03:00
synmark Remove redundant "coding: utf-8" lines (#9786) 2021-04-14 15:34:27 +01:00
tests Add missing type hints to synapse.util (#9982) 2021-05-24 15:32:01 -04: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
.editorconfig
.git-blame-ignore-revs Add a list of hashes to ignore during git blame. (#9560) 2021-03-09 07:34:55 -05:00
.gitignore Allow bytecode again (#9502) 2021-02-26 18:30:54 +00:00
.gitlab-ci.yml Add custom docker image 2020-11-18 14:13:47 +02:00
AUTHORS.rst Automatically delete empty groups/communities (#6453) 2019-12-16 12:12:40 +00:00
CHANGES.md CHANGELOG 2021-05-28 17:13:57 +01:00
CONTRIBUTING.md Reorganize CONTRIBUTING.md documentation. (#9281) 2021-02-17 11:23:57 -05:00
Dockerfile Merge remote-tracking branch 'upstream/release-v1.30.1' 2021-03-26 14:28:12 +02:00
INSTALL.md Add deprecation policy doc (#9723) 2021-04-06 13:07:36 +01:00
LICENSE
MANIFEST.in JWT OIDC secrets for Sign in with Apple (#9549) 2021-03-09 15:03:37 +00:00
mypy.ini Add missing type hints to synapse.util (#9982) 2021-05-24 15:32:01 -04:00
pylint.cfg
pyproject.toml Bump black configuration to target py36 (#9781) 2021-04-13 10:41:34 +01:00
README.md Update README 2021-03-12 15:16:51 +02:00
README.rst Add a Synapse Module for configuring presence update routing (#9491) 2021-04-06 14:38:30 +01:00
setup.cfg Fix (final) Bugbear violations (#9838) 2021-04-20 11:50:49 +01:00
setup.py Add release helper script (#9713) 2021-04-13 11:51:10 +01:00
synctl Fix --no-daemonize for synctl with workers (#9995) 2021-05-24 14:03:30 +01:00
sytest-blacklist unblacklist some tests (#8474) 2020-10-07 13:39:50 +01:00
test_postgresql.sh Use interpreter from $PATH instead of absolute paths in various scripts using /usr/bin/env (#9689) 2021-03-25 16:53:54 +00:00
tox.ini Run black on the scripts (#9981) 2021-05-14 11:46:35 +01:00
UPGRADE.rst Update UPGRADE.rst 2021-05-17 11:50:08 +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.23.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.
  • Local event creation concurrency is disabled to avoid unnecessary state resolution.
  • Register admin API can register invalid user IDs.
  • Docker image with jemalloc.
  • 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.

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"