Go to file
2021-02-23 14:08:17 +02:00
.buildkite Fix Python 3.5 old deps build by using a compatible pip version. (#9217) 2021-01-25 14:22:35 -05:00
.circleci Drop ARMv7 from docker (#9433) 2021-02-18 14:46:22 +00:00
.github bug report template: move comments into comment (#8030) 2020-08-05 09:34:42 +01:00
changelog.d 1.28.0rc1 2021-02-18 12:32:49 -05:00
contrib Update black, and run auto formatting over the codebase (#9381) 2021-02-16 22:32:34 +00:00
debian 1.27.0 2021-02-16 13:12:02 +00:00
demo Remove broken and unmaintained 'webserver.py' script (#9039) 2021-01-08 14:09:06 +00:00
docker Add rustc to Docker image build environment (#9405) 2021-02-15 15:30:16 +00:00
docs Parse ui_auth.session_timeout as a duration (instead of treating it as ms) (#9426) 2021-02-18 09:18:14 -05:00
scripts Add background update for add chain cover index (#9029) 2021-01-14 15:18:27 +00:00
scripts-dev Update black, and run auto formatting over the codebase (#9381) 2021-02-16 22:32:34 +00:00
snap
stubs Update black, and run auto formatting over the codebase (#9381) 2021-02-16 22:32:34 +00:00
synapse Merge remote-tracking branch 'upstream/release-v1.28.0' 2021-02-19 15:17:45 +02:00
synmark Update black, and run auto formatting over the codebase (#9381) 2021-02-16 22:32:34 +00:00
tests Parse ui_auth.session_timeout as a duration (instead of treating it as ms) (#9426) 2021-02-18 09:18:14 -05:00
.codecov.yml
.coveragerc
.dockerignore
.editorconfig
.gitignore Add some extra notes for getting Synapse running on macOS. (#8997) 2021-01-15 06:58:31 -05:00
.gitlab-ci.yml Add custom docker image 2020-11-18 14:13:47 +02:00
AUTHORS.rst
CHANGES.md Update release date. 2021-02-19 08:01:17 -05:00
CONTRIBUTING.md Reorganize CONTRIBUTING.md documentation. (#9281) 2021-02-17 11:23:57 -05:00
Dockerfile Bump synapse version 2021-02-23 14:08:17 +02:00
INSTALL.md Update installation instructions on Fedora (#9322) 2021-02-05 14:20:38 +00:00
LICENSE
MANIFEST.in Fix ordering in MANIFEST.in 2020-05-04 16:33:30 +02:00
mypy.ini Add type hints to groups code. (#9393) 2021-02-17 08:41:47 -05:00
pylint.cfg
pyproject.toml Tell Black to format code for Python 3.5 (#8664) 2020-10-27 23:26:36 +00:00
README.md Update readme 2021-01-31 21:16:04 +02:00
README.rst Fix reStructuredText formatting. 2021-01-20 11:10:00 -05:00
setup.cfg Remove docs/sphinx and related references (#8480) 2020-10-07 11:45:31 +01:00
setup.py Update black, and run auto formatting over the codebase (#9381) 2021-02-16 22:32:34 +00:00
synctl Fix synctl and duplicate worker spawning (#8798) 2020-11-23 15:20:49 +00:00
sytest-blacklist unblacklist some tests (#8474) 2020-10-07 13:39:50 +01:00
test_postgresql.sh
tox.ini Fix Python 3.5 old deps build by using a compatible pip version. (#9217) 2021-01-25 14:22:35 -05:00
UPGRADE.rst Clarify the release notes around SAML2 for v1.27.0. 2021-02-18 11:25:27 -05: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

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"