1
0
Fork 0
mirror of https://github.com/M66B/FairEmail.git synced 2025-01-01 12:44:42 +00:00

Added remark

This commit is contained in:
M66B 2022-05-29 14:38:34 +02:00
parent fd1013b6ad
commit 09be65bb76

View file

@ -4325,6 +4325,8 @@ public class MessageHelper {
// flag-keyword = atom
// atom = 1*ATOM-CHAR
// ATOM-CHAR = <any CHAR except atom-specials>
// CHAR8 = %x01-ff ; any OCTET except NUL, %x00
// So, basically ISO 8859-1
char kar = keyword.charAt(i);
// atom-specials = "(" / ")" / "{" / SP / CTL / list-wildcards / quoted-specials / resp-specials
if (kar == '(' || kar == ')' || kar == '{' || kar == ' ' || Character.isISOControl(kar))