Project

General

Profile

Actions

Feature #17334

closed

[Code] Improved t3lib_div::validEmail() satisfying RFC 3696

Added by Andreas Bulling almost 17 years ago. Updated over 5 years ago.

Status:
Closed
Priority:
Should have
Category:
-
Target version:
-
Start date:
2007-05-26
Due date:
% Done:

0%

Estimated time:
PHP Version:
4.3
Tags:
Complexity:
Sprint Focus:

Description

Hi all,

as noted by several other people, the t3lib_div::validEmail() method is quite... "simplistic" at the moment - lets put it that way ;-)
I suggest to incorporate the following code developed in an article in the June 2007 Issue of Linux Journal by Douglas Lovell.

/**
SOURCE: http://www.linuxjournal.com/article/9585

Validate an email address.
Provide email address (raw input)
Returns true if the email address has the email
address format and the domain exists.
*/

function validEmail($email) {
$isValid = true;
$atIndex = strrpos($email, "@");
if (is_bool($atIndex) && !$atIndex) {
$isValid = false;
} else {
$domain = substr($email, $atIndex+1);
$local = substr($email, 0, $atIndex);
$localLen = strlen($local);
$domainLen = strlen($domain);
if ($localLen < 1 || $localLen > 64) {
// local part length exceeded
$isValid = false;
} else if ($domainLen < 1 || $domainLen > 255) {
// domain part length exceeded
$isValid = false;
} else if ($local0 '.' || $local[$localLen-1] '.') {
// local part starts or ends with '.'
$isValid = false;
} else if (preg_match('/\\.\\./', $local)) {
// local part has two consecutive dots
$isValid = false;
} else if (!preg_match('/^[A-Za-z0-9\\-\\.]+$/', $domain)) {
// character not valid in domain part
$isValid = false;
} else if (preg_match('/\\.\\./', $domain)) {
//domain part has two consecutive dots
$isValid = false;
} else if (!preg_match('/^(\\\\.|[A-Za-z0-9!#%&`_=\\/$\'*+?^{}|~.-])+$/', str_replace("\\\\","",$local))) {
// character not valid in local part unless
// local part is quoted
if (!preg_match('/^"(\\\\"|[^"])+"$/', str_replace("\\\\","", $local))) {
$isValid = false;
}
}
if ($isValid && !(checkdnsrr($domain,"MX") || checkdnsrr($domain,"A"))) {
// domain not found in DNS
$isValid = false;
}
}
return $isValid;
}
(issue imported from #M5688)


Related issues 2 (0 open2 closed)

Related to TYPO3 Core - Bug #15054: Gremlin: Insufficient email validationClosedDmitry Dulepov2005-10-14

Actions
Is duplicate of TYPO3 Core - Bug #20285: t3lib_div::validEmail seems to not validate all addresses correctlyClosedOliver Hader2009-04-06

Actions
Actions #1

Updated by Andreas Bulling almost 17 years ago

Also related to #0003660

Actions #2

Updated by Christian Kuhn almost 15 years ago

Resolved as duplicate of #20285

t3lib_div::validEmail now uses native PHP filter in 4.3

Actions #3

Updated by Benni Mack over 5 years ago

  • Status changed from Resolved to Closed
Actions

Also available in: Atom PDF