diff options
author | Andrew Morgan <1342360+anoadragon453@users.noreply.github.com> | 2020-07-02 11:01:02 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-07-02 11:01:02 +0100 |
commit | 21821c076a9335efbdc13a5875fe548f3726b8bc (patch) | |
tree | b4407227e3614580c484b74470c81144e0898a2a /changelog.d/51.feature | |
parent | Merge pull request #50 from matrix-org/dinsic-release-v1.15.x (diff) | |
download | synapse-21821c076a9335efbdc13a5875fe548f3726b8bc.tar.xz |
Add option to autobind user's email on registration (#51)
Adds an option, `bind_new_user_emails_to_sydent`, which uses Sydent's [internal bind api](https://github.com/matrix-org/sydent#internal-bind-and-unbind-api) to automatically bind email addresses of users immediately after they register. This is quite enterprise-specific, but could be generally useful to multiple organizations. This aims to solve the problem of requiring users to verify their email twice when using the functionality of an identity server in a corporate deployment - where both the homeserver and identity server are controlled. It does with while eliminating the need for the `account_threepid_delegates.email` option, which historically has been a very complicated option to reason about.
Diffstat (limited to 'changelog.d/51.feature')
-rw-r--r-- | changelog.d/51.feature | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/changelog.d/51.feature b/changelog.d/51.feature new file mode 100644 index 0000000000..e5c9990ad6 --- /dev/null +++ b/changelog.d/51.feature @@ -0,0 +1 @@ +Add `bind_new_user_emails_to_sydent` option for automatically binding user's emails after registration. |