0
0
Fork 1
mirror of https://mau.dev/maunium/synapse.git synced 2024-09-29 04:59:00 +02:00
No description
Find a file
2021-01-27 20:40:41 +02:00
.buildkite Run the linters on a consistent list of files (#9038) 2021-01-08 14:08:44 +00:00
.circleci Don't publish latest docker image until all archs are built (#8909) 2020-12-10 17:00:29 +00:00
.github bug report template: move comments into comment (#8030) 2020-08-05 09:34:42 +01:00
changelog.d 1.26.0rc2 2021-01-25 08:25:40 -05:00
contrib Add missing prometheus rules for persisted events (#8802) 2020-12-02 15:18:41 +00:00
debian Update debian changelog. 2021-01-27 12:45:02 -05:00
demo Remove broken and unmaintained 'webserver.py' script (#9039) 2021-01-08 14:09:06 +00:00
docker Replace 'perspectives' config block with 'trusted_key_servers' in docker homeserver.yaml template (#9157) 2021-01-19 16:19:32 +00:00
docs Prefix idp_id with "oidc-" (#9189) 2021-01-21 12:25:02 +00:00
scripts Add background update for add chain cover index (#9029) 2021-01-14 15:18:27 +00:00
scripts-dev Add type hints to the push module. (#8901) 2020-12-11 11:43:53 -05:00
snap Added explicit Python build tools to snap requirements (#7213) 2020-04-17 17:28:00 +01:00
stubs Run the linters on a consistent list of files (#9038) 2021-01-08 14:08:44 +00:00
synapse Merge remote-tracking branch 'upstream/release-v1.26.0' 2021-01-27 20:40:41 +02:00
synmark Support generating structured logs in addition to standard logs. (#8607) 2020-10-29 07:27:37 -04:00
tests Fix chain cover update to handle events with duplicate auth events (#9210) 2021-01-22 19:44:08 +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 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 Automatically delete empty groups/communities (#6453) 2019-12-16 12:12:40 +00:00
CHANGES.md Move note above changes. 2021-01-27 11:02:04 -05: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 Add some extra notes for getting Synapse running on macOS. (#8997) 2021-01-15 06:58:31 -05: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 Support icons for Identity Providers (#9154) 2021-01-20 08:15:14 -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 Remove bad pusher validation 2021-01-16 14:24:15 +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 Note support for Python 3.9 (#8665) 2020-10-27 23:24:33 +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 Add a way to run tests in PostgreSQL in Docker (#3699) 2018-09-20 18:12:45 +10:00
tox.ini Bump psycopg2 version (#9204) 2021-01-22 11:14:49 +00:00
UPGRADE.rst Formatting. 2021-01-20 10:54:06 -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.

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"