0
0
Fork 1
mirror of https://mau.dev/maunium/synapse.git synced 2024-09-27 20:19:03 +02:00
No description
Find a file
2020-11-18 14:40:59 +02:00
.buildkite Fix port script to handle foreign key constraints (#8730) 2020-11-11 15:07:34 +00:00
.circleci Multi arch docker support: add arm/v7 and arm64 to our docker images (#7921) 2020-10-12 22:00:33 +01:00
.github bug report template: move comments into comment (#8030) 2020-08-05 09:34:42 +01:00
changelog.d 1.23.0 2020-11-18 11:41:41 +00:00
contrib Cross-link documentation to the prometheus recording rules. (#8667) 2020-10-27 15:29:50 -04:00
debian 1.23.0 2020-11-18 11:41:41 +00:00
demo Include a public_baseurl in configs generated by the demo script. (#8443) 2020-10-02 07:24:07 -04:00
docker Cap the version of prometheus_client to <v0.9.0 in the dockerfile (#8767) 2020-11-17 16:01:33 +00:00
docs Migrate documentation docs/admin_api/event_reports to markdown (#8742) 2020-11-13 13:57:55 +00:00
scripts Fix port script so that it can be run again after failure. (#8755) 2020-11-13 11:53:51 +00:00
scripts-dev Fix cache call signature to accept on_invalidate. (#8684) 2020-10-29 15:18:17 +00:00
snap Added explicit Python build tools to snap requirements (#7213) 2020-04-17 17:28:00 +01:00
stubs Enable mypy for synapse.util.caches (#8547) 2020-10-15 11:44:39 +01:00
synapse Fix default power level 2020-11-18 14:13:47 +02:00
synmark Support generating structured logs in addition to standard logs. (#8607) 2020-10-29 07:27:37 -04:00
tests Add an admin API for users' media statistics (#8700) 2020-11-05 18:59:12 +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
.gitignore Add .venv* to .gitignore (#8566) 2020-10-16 17:03:38 +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
CHANGES.md Update changelog 2020-11-18 12:04:08 +00:00
CONTRIBUTING.md Add documentation about documentation to CONTRIBUTING.md (#8714) 2020-11-06 11:59:22 +00:00
Dockerfile Add custom docker image 2020-11-18 14:13:47 +02:00
INSTALL.md Note support for Python 3.9 (#8665) 2020-10-27 23:24:33 +00:00
LICENSE Reference Matrix Home Server 2014-08-12 15:10:52 +01:00
MANIFEST.in Fix ordering in MANIFEST.in 2020-05-04 16:33:30 +02:00
mypy.ini Block clients from sending server ACLs that lock the local server out. (#8708) 2020-11-03 12:13:48 +00: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 Add README.md 2020-11-18 14:40:59 +02:00
README.rst Updating README.rst (#8746) 2020-11-13 12:07:09 +00:00
setup.cfg Remove docs/sphinx and related references (#8480) 2020-10-07 11:45:31 +01:00
setup.py Note support for Python 3.9 (#8665) 2020-10-27 23:24:33 +00:00
synctl Allow YAML config file to contain None (#7779) 2020-07-03 13:19:03 +01: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 Minor updates to docs on how to run tests (#8666) 2020-10-27 23:26:00 +00:00
UPGRADE.rst Fix formatting in upgrades 2020-11-18 12:00:13 +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)

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