Remove + as a valid char in emails
This commit is contained in:
parent
2ba32f752d
commit
dc7f828e13
@ -14,7 +14,8 @@ import java.util.regex.Pattern;
|
||||
public class EmailUtils {
|
||||
|
||||
private static final Pattern VALID_EMAIL_PATTERN = Pattern.compile(
|
||||
"^[A-Z0-9._%+-]+@[A-Z0-9.-]+\\.[A-Z]{2,6}$",
|
||||
// this pattern is a slight modification (remove + as a valid char due to 'duplicate emails') of the standard one
|
||||
"^[A-Z0-9._%-]+@[A-Z0-9.-]+\\.[A-Z]{2,6}$",
|
||||
Pattern.CASE_INSENSITIVE
|
||||
);
|
||||
private static final HttpClient httpsClient = APIv3.getVertxInstance().createHttpClient(new HttpClientOptions().setSsl(true).setTrustAll(true));
|
||||
|
Loading…
Reference in New Issue
Block a user