Go to file
2021-03-26 14:28:12 +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.30.1 2021-03-26 12:03:29 +00:00
contrib Update black, and run auto formatting over the codebase (#9381) 2021-02-16 22:32:34 +00:00
debian 1.30.1 2021-03-26 12:03:29 +00:00
demo Remove broken and unmaintained 'webserver.py' script (#9039) 2021-01-08 14:09:06 +00:00
docker Explicitly upgrade openssl in docker file and enforce new version of cryptography (#9697) 2021-03-26 12:00:25 +00:00
docs Pass SSO IdP information to spam checker's registration function (#9626) 2021-03-16 12:41:41 +00:00
scripts Fix SQL delta file taking a long time to run (#9516) 2021-03-02 14:05:01 +00:00
scripts-dev Prevent the config-lint script erroring out on any sample_config changes (#9562) 2021-03-09 11:11:42 +00:00
snap Added explicit Python build tools to snap requirements (#7213) 2020-04-17 17:28:00 +01:00
stubs Fix remaining mypy issues due to Twisted upgrade. (#9608) 2021-03-15 11:14:39 -04:00
synapse Merge remote-tracking branch 'upstream/release-v1.30.1' 2021-03-26 14:28:12 +02:00
synmark Update black, and run auto formatting over the codebase (#9381) 2021-02-16 22:32:34 +00:00
tests Pass SSO IdP information to spam checker's registration function (#9626) 2021-03-16 12:41:41 +00: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 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 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 Update cahngelog 2021-03-26 12:21:04 +00: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 Update installation instructions on Fedora (#9322) 2021-02-05 14:20:38 +00:00
LICENSE Reference Matrix Home Server 2014-08-12 15:10:52 +01:00
MANIFEST.in JWT OIDC secrets for Sign in with Apple (#9549) 2021-03-09 15:03:37 +00:00
mypy.ini Do not ignore the unpaddedbase64 module when type checking. (#9568) 2021-03-09 14:41:02 -05:00
pylint.cfg Added pylint config file: ignore missing-docstring messages. 2014-10-24 10:22:09 +01:00
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-03-12 15:16:51 +02:00
README.rst Update reverse proxy to add OpenBSD relayd example configuration. (#9508) 2021-03-06 11:49:19 +00:00
setup.cfg Add a list of hashes to ignore during git blame. (#9560) 2021-03-09 07:34:55 -05:00
setup.py Bump the mypy and mypy-zope versions. (#9529) 2021-03-03 07:19:19 -05:00
synctl Allow bytecode again (#9502) 2021-02-26 18:30:54 +00:00
sytest-blacklist unblacklist some tests (#8474) 2020-10-07 13:39:50 +01:00
test_postgresql.sh Add a way to run tests in PostgreSQL in Docker (#3699) 2018-09-20 18:12:45 +10:00
tox.ini Revert requiring a specific version of Twisted for mypy checks. (#9618) 2021-03-15 12:18:35 -04:00
UPGRADE.rst Add additional SAML2 upgrade notes (#9550) 2021-03-05 12:07:50 +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.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"