Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Improve documentation around user registration (#13640) | Richard van der Hoff | 2022-08-26 | 1 | -91/+116 |
| | | | | | Update a bunch of the documentation for user registration, add some cross links, etc. | ||||
* | Generate missing configuration files at startup (#13615) | Richard van der Hoff | 2022-08-26 | 1 | -1/+7 |
| | | | | | | | | If things like the signing key file are missing, let's just try to generate them on startup. Again, this is useful for k8s-like deployments where we just want to generate keys on the first run. | ||||
* | Support `registration_shared_secret` in a file (#13614) | Richard van der Hoff | 2022-08-25 | 1 | -0/+18 |
| | | | | A new `registration_shared_secret_path` option. This is kinda handy for k8s deployments and things. | ||||
* | Drop support for delegating email validation, round 2 (#13596) | David Robertson | 2022-08-23 | 1 | -1/+4 |
| | |||||
* | Add support for compression to federation responses (#13537) | Ayush Anand | 2022-08-18 | 1 | -1/+1 |
| | | | | | | Closes #13415. Signed-off-by: Ayush Anand <iamayushanand@gmail.com> | ||||
* | Add missing links in `user_consent` section of configuration manual (#13536) | Dirk Klimpel | 2022-08-16 | 1 | -2/+2 |
| | | | Signed-off-by: Dirk Klimpel <dirk@klimpel.org> | ||||
* | Add a warning to retention documentation regarding the possibility of ↵ | Shay | 2022-08-15 | 1 | -1/+5 |
| | | | | database corruption (#13497) | ||||
* | Add note to `redaction_retention_period` documentation mentioning that event ↵ | Andrew Morgan | 2022-08-11 | 1 | -0/+4 |
| | | | | purging runs at most every 5m (#13492) | ||||
* | Make the configuration for the cache clearer (#13481) | Dirk Klimpel | 2022-08-09 | 1 | -4/+5 |
| | |||||
* | Update doc for setting `macaroon_secret_key` (#13443) | Dirk Klimpel | 2022-08-03 | 1 | -3/+7 |
| | | | | | * Update doc for setting `macaroon_secret_key` * newsfile | ||||
* | Remove 'Contents' section from the Configuration Manual (#13438) | Dirk Klimpel | 2022-08-03 | 1 | -43/+0 |
| | | | Fixes: #13053 | ||||
* | Fix wrong headline for `url_preview_accept_language` in docs (#13437) | Dirk Klimpel | 2022-08-03 | 1 | -1/+1 |
| | | | Fixes: #13433 | ||||
* | Merge tag 'v1.64.0rc2' into develop | Richard van der Hoff | 2022-07-29 | 1 | -181/+181 |
|\ | | | | | | | | | | | | | Synapse 1.64.0rc2 (2022-07-29) ============================== This RC reintroduces support for `account_threepid_delegates.email`, which was removed in 1.64.0rc1. It remains deprecated and will be removed altogether in a future release. ([\#13406](https://github.com/matrix-org/synapse/issues/13406)) | ||||
| * | Revert "Drop support for delegating email validation (#13192)" (#13406) | 3nprob | 2022-07-29 | 1 | -181/+181 |
| | | | | | | | | | | Reverts commit fa71bb18b527d1a3e2629b48640ea67fff2f8c59, and tweaks documentation. Signed-off-by: 3nprob <git@3n.anonaddy.com> | ||||
* | | Explicitly mention which resources support compression in the config guide ↵ | Brendan Abolivier | 2022-07-29 | 1 | -1/+2 |
|/ | | | | (#13221) | ||||
* | Support Implicit TLS for sending emails (#13317) | Jan Schär | 2022-07-25 | 1 | -1/+10 |
| | | | | | | | | | | Previously, TLS could only be used with STARTTLS. Add a new option `force_tls`, where TLS is used from the start. Implicit TLS is recommended over STARTLS, see https://datatracker.ietf.org/doc/html/rfc8314 Fixes #8046. Signed-off-by: Jan Schär <jan@jschaer.ch> | ||||
* | Update config_documentation.md (#13364) | Richard van der Hoff | 2022-07-22 | 1 | -2/+2 |
| | | | "changed in" goes before the example | ||||
* | Merge branch 'master' into develop | David Robertson | 2022-07-21 | 1 | -0/+8 |
|\ | |||||
| * | Document `rc_invites.per_issuer`, added in v1.63. | David Teller | 2022-07-21 | 1 | -0/+8 |
| | | | | | | | | | | | | | | Resolves #13330. Missed in #13125. Signed-off-by: David Teller <davidt@element.io> | ||||
* | | Merge branch 'master' into develop | Brendan Abolivier | 2022-07-19 | 1 | -3/+8 |
|\| | |||||
| * | Remove 'anonymised' from the phone home stats documentation (#13321) | Andrew Morgan | 2022-07-19 | 1 | -3/+8 |
| | | |||||
* | | Add notes when config options were changed to config documentation (#13314) | Jörg Behrmann | 2022-07-19 | 1 | -0/+5 |
| | | | | | | | | Signed-off-by: Jörg Behrmann <behrmann@physik.fu-berlin.de> | ||||
* | | Rate limit joins per-room (#13276) | David Robertson | 2022-07-19 | 1 | -0/+19 |
| | | |||||
* | | Drop support for delegating email validation (#13192) | Richard van der Hoff | 2022-07-12 | 1 | -16/+12 |
|/ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * Drop support for delegating email validation Delegating email validation to an IS is insecure (since it allows the owner of the IS to do a password reset on your HS), and has long been deprecated. It will now cause a config error at startup. * Update unit test which checks for email verification Give it an `email` config instead of a threepid delegate * Remove unused method `requestEmailToken` * Simplify config handling for email verification Rather than an enum and a boolean, all we need here is a single bool, which says whether we are or are not doing email verification. * update docs * changelog * upgrade.md: fix typo * update version number this will be in 1.64, not 1.63 * update version number this one too | ||||
* | Document the 'databases' homeserver config option (#13212) | Andrew Morgan | 2022-07-11 | 1 | -0/+92 |
| | |||||
* | Add missing links to config options (#13166) | Dirk Klimpel | 2022-07-05 | 1 | -3/+3 |
| | |||||
* | Cleanup references to sample config in the docs and redirect users to ↵ | Shay | 2022-06-30 | 2 | -3/+3 |
| | | | | configuration manual (#13077) | ||||
* | Add a link to the configuration manual from the homeserver sample config ↵ | Andrew Morgan | 2022-06-30 | 1 | -0/+3 |
| | | | | documentation page (#13139) | ||||
* | Fix documentation header for `allow_public_rooms_over_federation` (#13116) | Moritz Stückler | 2022-06-29 | 1 | -1/+1 |
| | | | | Signed-off-by: Moritz Stückler <moritz.stueckler@gmail.com> Co-authored-by: Patrick Cloke <clokep@users.noreply.github.com> | ||||
* | Add custom well-known (#13035) | Jacek Kuśnierz | 2022-06-16 | 1 | -0/+17 |
| | | | Co-authored-by: David Robertson <david.m.robertson1@gmail.com> | ||||
* | Add headers to individual options in config documentation to allow for ↵ | Shay | 2022-06-15 | 1 | -163/+163 |
| | | | | linking. (#13055) | ||||
* | Change default `sync_response_cache_duration` (#13042) | Erik Johnston | 2022-06-15 | 1 | -2/+2 |
| | |||||
* | Replace pyjwt with authlib in `org.matrix.login.jwt` (#13011) | Hannes Lerchl | 2022-06-15 | 1 | -2/+4 |
| | |||||
* | Prevent local quarantined media from being claimed by media retention (#12972) | Andrew Morgan | 2022-06-07 | 1 | -0/+6 |
| | |||||
* | Add config options for media retention (#12732) | Andrew Morgan | 2022-05-31 | 1 | -1/+28 |
| | |||||
* | Add a background job to automatically delete stale devices (#12855) | Brendan Abolivier | 2022-05-27 | 1 | -0/+12 |
| | | | Co-authored-by: Patrick Cloke <clokep@users.noreply.github.com> | ||||
* | Merge tag 'v1.60.0rc2' into develop | Sean Quah | 2022-05-27 | 1 | -0/+3 |
|\ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Synapse 1.60.0rc2 (2022-05-27) ============================== This release of Synapse adds a unique index to the `state_group_edges` table, in order to prevent accidentally introducing duplicate information (for example, because a database backup was restored multiple times). If your Synapse database already has duplicate rows in this table, this could fail with an error and require manual remediation. Additionally, the signature of the `check_event_for_spam` module callback has changed. The previous signature has been deprecated and remains working for now. Module authors should update their modules to use the new signature where possible. See [the upgrade notes](https://github.com/matrix-org/synapse/blob/develop/docs/upgrade.md#upgrading-to-v1600) for more details. Features -------- - Add an option allowing users to use their password to reauthenticate for privileged actions even though password login is disabled. ([\#12883](https://github.com/matrix-org/synapse/issues/12883)) Bugfixes -------- - Explicitly close `ijson` coroutines once we are done with them, instead of leaving the garbage collector to close them. ([\#12875](https://github.com/matrix-org/synapse/issues/12875)) Internal Changes ---------------- - Improve URL previews by not including the content of media tags in the generated description. ([\#12887](https://github.com/matrix-org/synapse/issues/12887)) | ||||
| * | Add an option allowing users to use their password to reauthenticate even ↵ | reivilibre | 2022-05-27 | 1 | -0/+3 |
| | | | | | | | | though password authentication is disabled. (#12883) | ||||
* | | Remove user-visible groups/communities code (#12553) | Patrick Cloke | 2022-05-25 | 1 | -19/+0 |
|/ | | | | | | | | | Makes it so that groups/communities no longer exist from a user-POV. E.g. we remove: * All API endpoints (including Client-Server, Server-Server, and admin). * Documented configuration options (and the experimental flag, which is now unused). * Special handling during room upgrades. * The `groups` section of the `/sync` response. | ||||
* | Add detail to `cache_autotuning` config option documentation (#12776) | Shay | 2022-05-19 | 1 | -4/+9 |
| | |||||
* | Update configuration manual to document size-related suffixes (#12777) | Shay | 2022-05-19 | 1 | -0/+8 |
| | |||||
* | Fix YAML parsing error in `url_preview_accept_language` (#12785) | Andrew Morgan | 2022-05-18 | 1 | -6/+6 |
| | |||||
* | Add some documentation around the `rc_invites` option to the config docs ↵ | Andrew Morgan | 2022-05-18 | 1 | -0/+14 |
| | | | | (#12759) | ||||
* | Fix typo in name of 'run_background_tasks_on' option in config manual (#12749) | Andrew Morgan | 2022-05-16 | 1 | -1/+1 |
| | |||||
* | Fix typo in listener config (#12742) | Dirk Klimpel | 2022-05-16 | 1 | -2/+2 |
| | |||||
* | Add config flags to allow for cache auto-tuning (#12701) | Shay | 2022-05-13 | 1 | -2/+15 |
| | |||||
* | add default_power_level_content_override config option. (#12618) | Andy Balaam | 2022-05-12 | 1 | -0/+26 |
| | | | Co-authored-by: Matthew Hodgson <matthew@matrix.org> | ||||
* | Reload cache factors from disk on SIGHUP (#12673) | David Robertson | 2022-05-11 | 1 | -0/+17 |
| | |||||
* | Add `mau_appservice_trial_days` config (#12619) | Will Hunt | 2022-05-04 | 1 | -0/+14 |
| | | | | | | | | | | | | | | | | | | | | | * Add mau_appservice_trial_days * Add a test * Tweaks * changelog * Ensure we sync after the delay * Fix types * Add config statement * Fix test * Reinstate logging that got removed * Fix feature name | ||||
* | Disable device name lookup over federation by default (#12616) | Andrew Morgan | 2022-05-04 | 1 | -3/+3 |
| | |||||
* | Add a table of contents to config manual (#12527) | Shay | 2022-04-25 | 1 | -2/+44 |
| | | | * Update config_documentation.md | ||||
* | Add a manual documenting config file options (#12368) | Shay | 2022-04-18 | 1 | -0/+3412 |
| | |||||
* | Document the usage of refresh tokens. (#11427) | reivilibre | 2021-12-08 | 1 | -0/+139 |
| | | | Co-authored-by: David Robertson <davidr@element.io> | ||||
* | Add documentation page stubs for Single Sign-On, SAML and CAS pages (#11298) | Andrew Morgan | 2021-11-10 | 3 | -0/+21 |
| | |||||
* | Remove false warning about copying the log config to a homeserver.yaml (#11092) | Travis Ralston | 2021-10-20 | 1 | -6/+6 |
| | | | Co-authored-by: Andrew Morgan <1342360+anoadragon453@users.noreply.github.com> | ||||
* | Fix some links in `docs` and `contrib` (#10370) | Dirk Klimpel | 2021-07-13 | 1 | -1/+1 |
| | |||||
* | Compile and render Synapse's docs into a browsable, mobile-friendly and ↵ | Andrew Morgan | 2021-06-03 | 4 | -0/+47 |
searchable website (#10086) |