Email addresses should not contain <>

This commit is contained in:
M66B 2024-04-28 08:28:59 +02:00
parent 855b9d56da
commit ee110b35ed
1 changed files with 1 additions and 1 deletions

View File

@ -236,7 +236,7 @@ public class Helper {
static final String REGEX_UUID = "[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}";
static final Pattern EMAIL_ADDRESS = Pattern.compile(
"[\\S&&[^\"@]]{1,256}" +
"[\\S&&[^\"@<>]]{1,256}" +
"\\@" +
"[\\p{L}0-9][\\p{L}0-9\\-\\_]{0,64}" +
"(" +