We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent aacaf1b commit cd2eed6Copy full SHA for cd2eed6
func/main.sh
@@ -612,7 +612,7 @@ is_dns_record_format_valid() {
612
613
# Email format validator
614
is_email_format_valid() {
615
- if [[ ! "$1" =~ ^[A-Za-z0-9._%+-]+@[A-Za-z0-9.-]+\.[A-Za-z]{2,63}$ ]] ; then
+ if [[ ! "$1" =~ ^[A-Za-z0-9._%+-]+@[[:alnum:].-]+\.[A-Za-z]{2,63}$ ]] ; then
616
check_result $E_INVALID "invalid email format :: $1"
617
fi
618
}
0 commit comments