-
Notifications
You must be signed in to change notification settings - Fork 368
Description
This issue has been migrated from #15271.
We have an undocumented and unspecced Account Validity feature currently implemented in Synapse. This was originally written for DINUM. Since then, all of the functionality has been moved into the module API (matrix-org/synapse#9884), and can be implemented by modules. https://github.com/matrix-org/synapse-email-account-validity is the only known implementation of this API.
Synapse still has an implementation of account validity however, gated behind an undocumented account_validity config option. Completely removing the account validity feature out of Synapse's main codebase is not what this issue is about though.
In the original implementation of account validity (https://github.com/matrix-org/synapse/pull/5047/files#diff-6fc5658389633ef773a5c9ed669e5273eecff1c01311d7ac2c0721119a9ad21b, https://github.com/matrix-org/synapse/pull/5073/files#diff-6fc5658389633ef773a5c9ed669e5273eecff1c01311d7ac2c0721119a9ad21b), the following endpoints were registered:
GET /_matrix/client/{unstable,r0,v3}/account_validity/renew
POST /_matrix/client/{unstable,r0,v3}/account_validity/send_mail
plus one Admin API endpoint:
In the effort to move towards a module in April 2021, account validity module API callbacks were created which were tied to these "legacy" endpoints. If one of the legacy endpoints were called, then these callbacks would fire.
At the same time, modules were also given the ability to register their own endpoints under /_synapse/client/
, which is what synapse-email-account-validity does does. Client implementations were encouraged to move to these /_synapse/client/email_account_validity/...
endpoints instead.
https://github.com/matrix-org/synapse-email-account-validity still implements these legacy callbacks though: in case a client still uses them, or a user clicks on an email still containing an old GET /_matrix/client/v3/account_validity/renew
link.
However, it has been sufficiently long since matrix-org/synapse#9884 (April 2021), that I think we can remove the legacy endpoints and module API callbacks. The legacy module API callbacks are also not documented, so it's unlikely their usage has spread much.
I will ask DINUM if they are still using the unspecced According to @giomfo, DINUM are not currently using the feature at all, but plan to again in the future. While Tchap clients have not yet been updated to point to the new endpoint, they're just going to use a proxy to rewrite the request path to ensure clients switch immediately./_matrix/client/...
endpoints in any form.
Therefore I suggest we just rip out the "legacy" endpoints and module API callbacks without a deprecation period.