Skip to content
Snippets Groups Projects
Commit 29812c62 authored by Richard van der Hoff's avatar Richard van der Hoff
Browse files

Allow = in mxids and groupids

... because the spec says we should.
parent 58fbbe0f
No related branches found
No related tags found
No related merge requests found
......@@ -794,5 +794,5 @@ def _validate_group_id(group_id):
if types.contains_invalid_mxid_characters(localpart):
raise SynapseError(
400,
"Group ID can only contain characters a-z, 0-9, or '_-./'",
"Group ID can only contain characters a-z, 0-9, or '=_-./'",
)
......@@ -49,7 +49,7 @@ class RegistrationHandler(BaseHandler):
if types.contains_invalid_mxid_characters(localpart):
raise SynapseError(
400,
"User ID can only contain characters a-z, 0-9, or '_-./'",
"User ID can only contain characters a-z, 0-9, or '=_-./'",
Codes.INVALID_USERNAME
)
......@@ -255,8 +255,7 @@ class RegistrationHandler(BaseHandler):
if types.contains_invalid_mxid_characters(localpart):
raise SynapseError(
400,
"User ID must only contain characters which do not"
" require URL encoding."
"User ID can only contain characters a-z, 0-9, or '=_-./'",
)
user = UserID(localpart, self.hs.hostname)
user_id = user.to_string()
......
......@@ -162,7 +162,7 @@ class GroupID(DomainSpecificString):
SIGIL = "+"
mxid_localpart_allowed_characters = set("_-./" + string.ascii_lowercase + string.digits)
mxid_localpart_allowed_characters = set("_-./=" + string.ascii_lowercase + string.digits)
def contains_invalid_mxid_characters(localpart):
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment