-
-
Notifications
You must be signed in to change notification settings - Fork 694
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Links containing two @ signs can't be added #6448
Comments
I saw this thing, this bug would only occur when links starts with Doing all these checks in regex, is not possible in my opinion, we'll need to allow multiple repitions of email groups at multiple places with a valid order and valid formats. Or maybe some REGex Chad developer could do this with regex. One simpler approach would be sort of compromise check for cc and multiple receiver, i.e., allow user to enter |
Links containing two @ signs can't be added plone#6448 github- Harshit-7373
Hi @bbastin if this issue is still open i would like to take a look |
@dsawebappayush please read and follow First-time contributors, especially Things not to do, Contributing to Plone, and Contributing to Volto. |
Describe the bug
Links with two @ signs, like
mailto:[email protected],[email protected]
ormailto:[email protected][email protected]
, are not accepted when entered into the Edit Link field.To Reproduce
Steps to reproduce the behavior:
Expected behavior
The URL is accepted and the link is now set to the specified URL.
Software (please complete the following information):
I currently do not have access to this information, but I also verified it on the demo system. I can provide this information later on if necessary.
Additional context
It works when using percent encoding to mask the second @ sign (e. g.
mailto:[email protected]?cc=test2%40example.com
, leading me to suspect that the URL parser is incorrectly parsing the second @ sign as the userinfo delimiter and gets confused.The text was updated successfully, but these errors were encountered: