No description
Find a file
2021-09-21 09:49:42 -04:00
.ci Remove fixed and flakey tests from the sytest blacklist (#10788) 2021-09-10 10:53:04 +01:00
.github Avoid duplicate issues from Twisted trunk failures (#10672) 2021-08-23 13:06:49 +00:00
changelog.d 1.43.0rc2 2021-09-17 10:43:51 +01:00
contrib Update the Synapse Grafana dashboard (#10570) 2021-08-16 12:57:09 +02:00
debian 1.43.0 2021-09-21 11:49:15 +01:00
demo Handle all new rate limits in demo scripts (#9858) 2021-04-22 17:49:42 +01:00
docker Fix frontend_proxy jinja script in docker workers (#10783) 2021-09-08 17:24:53 +01:00
docs Fix copy-paste error in the password section of the sample-config. (#10804) 2021-09-13 08:58:34 -04:00
scripts Add a partial index to presence_stream to speed up startups (#10748) 2021-09-03 17:16:56 +01:00
scripts-dev Add a script to update the debian changelog for non-Debian systems (#10778) 2021-09-08 17:03:25 +02:00
snap Added explicit Python build tools to snap requirements (#7213) 2020-04-17 17:28:00 +01:00
stubs Add types to synapse.util. (#10601) 2021-09-10 17:03:18 +01:00
synapse Merge remote-tracking branch 'upstream/release-v1.43' 2021-09-21 09:49:42 -04:00
synmark Remove redundant "coding: utf-8" lines (#9786) 2021-04-14 15:34:27 +01:00
tests Use direct references for some configuration variables (#10798) 2021-09-13 13:07:12 -04:00
.codecov.yml Disable codecov reports to GH comments. 2019-07-31 10:56:02 +01:00
.coveragerc set TOP in sytest containers 2021-08-11 20:08:48 +01:00
.dockerignore Reduce the amount of stuff we send in the docker context (#5564) 2019-06-27 11:18:51 +01:00
.editorconfig Add a basic .editorconfig 2018-12-03 22:38:47 -06:00
.git-blame-ignore-revs Add a list of hashes to ignore during git blame. (#9560) 2021-03-09 07:34:55 -05:00
.gitignore Compile and render Synapse's docs into a browsable, mobile-friendly and searchable website (#10086) 2021-06-03 17:20:40 +01: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
book.toml Compile and render Synapse's docs into a browsable, mobile-friendly and searchable website (#10086) 2021-06-03 17:20:40 +01:00
CHANGES.md Fix typo again 2021-09-21 12:24:47 +01:00
CONTRIBUTING.md Advertise matrix-org.github.io/synapse docs (#10595) 2021-08-31 11:29:27 +01:00
Dockerfile Merge remote-tracking branch 'upstream/release-v1.30.1' 2021-03-26 14:28:12 +02:00
INSTALL.md Fix broken links in INSTALL.md (#10331) 2021-07-08 15:46:13 +01:00
LICENSE Reference Matrix Home Server 2014-08-12 15:10:52 +01:00
MANIFEST.in Teach MANIFEST and tox about ci->.ci 2021-08-11 20:08:14 +01:00
mypy.ini Add types to synapse.util. (#10601) 2021-09-10 17:03:18 +01:00
pylint.cfg Added pylint config file: ignore missing-docstring messages. 2014-10-24 10:22:09 +01:00
pyproject.toml Bump black configuration to target py36 (#9781) 2021-04-13 10:41:34 +01:00
README.md Mention custom read receipt data in readme 2021-06-09 12:50:46 +03:00
README.rst Advertise matrix-org.github.io/synapse docs (#10595) 2021-08-31 11:29:27 +01:00
setup.cfg Fix (final) Bugbear violations (#9838) 2021-04-20 11:50:49 +01:00
setup.py Extend the release script to tag and create the releases. (#10496) 2021-08-03 10:23:45 +00:00
synctl Improve the error message printed by synctl when synapse fails to start. (#10059) 2021-05-27 10:35:06 +01:00
sytest-blacklist Remove fixed and flakey tests from the sytest blacklist (#10788) 2021-09-10 10:53:04 +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 Teach MANIFEST and tox about ci->.ci 2021-08-11 20:08:14 +01:00
UPGRADE.rst fix broken link to upgrade notes (#10631) 2021-08-18 12:38:37 +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.
  • 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"