You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Because usernames and passwords are not necessarily url-encoded by Chorus, users should avoid using special characters and we should tell them that and probably just restrict passwords to ([a-Z][0-9]-)+.
E.g. I noticed that
For project-lookup the password test-temp-0:?"!$ worked, but the & character didn't.
Send/Receive didn't work with the password: test-temp-0:?"!$. I'm not sure what the culprit is exactly
test-temp is fine for both.
The text was updated successfully, but these errors were encountered:
Three characters cause problems: & (always), + (always), and % (if followed by two alphanumerics that look like a hex code, which happens often enough that it will cause problems and should be warned about). Every other punctuation character, as well as space characters and non-Roman scripts, worked. So we only need to scan for the three characters +&% and we'll be able to warn people whose passwords might not work.
Because usernames and passwords are not necessarily url-encoded by Chorus, users should avoid using special characters and we should tell them that and probably just restrict passwords to
([a-Z][0-9]-)+
.E.g. I noticed that
test-temp-0:?"!$
worked, but the&
character didn't.test-temp-0:?"!$
. I'm not sure what the culprit is exactlytest-temp
is fine for both.The text was updated successfully, but these errors were encountered: