mirror of
https://github.com/M66B/FairEmail.git
synced 2026-04-05 00:23:09 +02:00
Revert "Allow semi colon in email addresses"
This reverts commit c8e774aa74.
This commit is contained in:
@@ -1341,10 +1341,10 @@ public class InternetAddress extends Address implements Cloneable {
|
||||
}
|
||||
if (c <= 040 || c == 0177)
|
||||
throw new AddressException(
|
||||
"Local address contains control or whitespace (" + Integer.toString(c) + ")", addr);
|
||||
if (c != ':' && specialsNoDot.indexOf(c) >= 0)
|
||||
"Local address contains control or whitespace", addr);
|
||||
if (specialsNoDot.indexOf(c) >= 0)
|
||||
throw new AddressException(
|
||||
"Local address contains illegal character '" + c + "'", addr);
|
||||
"Local address contains illegal character", addr);
|
||||
}
|
||||
if (inquote)
|
||||
throw new AddressException("Unterminated quote", addr);
|
||||
|
||||
Reference in New Issue
Block a user