0
0
Fork 1
mirror of https://mau.dev/maunium/synapse.git synced 2024-07-01 08:58:19 +02:00
Go to file
2022-02-22 13:36:19 +02:00
.ci Disable coverage calculation for olddeps build. (#11888) 2022-02-02 15:59:33 +00:00
.github Prepare for rename of default complement branch (#11971) 2022-02-11 14:43:34 +00:00
changelog.d 1.53.0rc1 2022-02-15 10:44:24 +00:00
contrib Improve reactor_tick_time metric (#11724) 2022-01-17 12:14:40 +00:00
debian 1.53.0 2022-02-22 11:32:11 +00:00
demo Fix typo in demo docs: differnt (#11735) 2022-01-13 13:10:42 +00:00
docker Drop support for and remove references to EOL Python 3.6 (#11683) 2022-01-21 14:23:26 -08:00
docs Note when unstable MSC3283 prefixes will be removed (#11989) 2022-02-14 19:07:59 +00:00
scripts Use version string helper from matrix-common (#11979) 2022-02-14 13:12:22 +00:00
scripts-dev Drop support for EOL Ubuntu 21.04 (#11961) 2022-02-10 13:59:42 -08:00
snap Added explicit Python build tools to snap requirements (#7213) 2020-04-17 17:28:00 +01:00
stubs Add missing type hints to synapse.logging.context (#11556) 2021-12-14 17:35:28 +00:00
synapse Merge remote-tracking branch 'upstream/release-v1.53' 2022-02-22 13:36:19 +02:00
synmark Remove redundant "coding: utf-8" lines (#9786) 2021-04-14 15:34:27 +01:00
tests Implement MSC3706: partial state in /send_join response (#11967) 2022-02-12 10:44:16 +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 overriding the complement ref. (#11766) 2022-01-20 13:04:58 +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
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 1.53.0 2022-02-22 11:32:11 +00:00
CONTRIBUTING.md Advertise matrix-org.github.io/synapse docs (#10595) 2021-08-31 11:29:27 +01:00
Dockerfile Fix shared secret auth tag name 2022-02-21 00:33:51 +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 Mark Module API error imports as re-exported and mark Synapse as containing type annotations (#11054) 2021-10-13 08:42:41 +01:00
mypy.ini Adds misc missing type hints (#11953) 2022-02-11 07:20:16 -05:00
pylint.cfg Added pylint config file: ignore missing-docstring messages. 2014-10-24 10:22:09 +01:00
pyproject.toml Update to the current version of Black and run it on Synapse codebase (#11596) 2021-12-23 20:22:15 -08:00
README.md Replace also_allow_user with a global config option 2021-10-30 14:06:15 +03:00
README.rst Fix broken link in README to admin API. (#11955) 2022-02-10 14:18:27 +00:00
setup.cfg Fix (final) Bugbear violations (#9838) 2021-04-20 11:50:49 +01:00
setup.py Drop support for and remove references to EOL Python 3.6 (#11683) 2022-01-21 14:23:26 -08:00
synctl Avoid waiting for zombie processes in synctl stop (#11490) 2021-12-02 16:07:06 +00:00
sytest-blacklist Blacklist new sytest validation test (#11270) 2021-11-08 10:37:43 +00:00
tox.ini Drop support for and remove references to EOL Python 3.6 (#11683) 2022-01-21 14:23:26 -08: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.
  • Config option to allow appservices to use MSC2716 batch sending as any local user.
  • 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"
   # Whether appservices should be allowed to use MSC2716 batch sending as any local user.
   appservice_batch_send_any: false