This repository was archived by the owner on Apr 26, 2024. It is now read-only.
register_user() with bind_emails broken#6326
Closed
arekinath wants to merge 1 commit into
Closed
Conversation
This is still used by the ldap auth module but has been broken since pr matrix-org#5964 was merged Signed-off-by: Alex Wilson <alex@uq.edu.au>
Member
|
sorry, we missed this and it's now been sorted by #6441. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This is still used by the ldap auth module (
matrix-synapse-ldap3) but has been broken since pr #5964 was merged.The ldap auth module is calling
register()in the module API (the deprecated one which creates a dummy device), but even if it was updated to call the non-deprecatedregister_userit would still run into this problem --register_userin the module API callsregister_userin the registration handler withbind_emailsset to the third argument, leading to this crash:The fix is simply to stop giving the additional
Falseargument to_register_email_threepid().Signed-off-by: Alex Wilson alex@uq.edu.au
Pull Request Checklist