Opened 3 years ago

Closed 3 years ago

Last modified 3 years ago

#15379 closed defect (bug) (duplicate)

is_email should be RFC complient

Reported by: jorbin Owned by:
Priority: normal Milestone:
Component: General Version:
Severity: normal Keywords: needs-unit-test
Cc:

Description

#blamenacin

Attachments (2)

email.php (8.8 KB) - added by jorbin 3 years ago.
email.patch (8.8 KB) - added by jorbin 3 years ago.

Download all attachments as: .zip

Change History (11)

jorbin3 years ago

I like this alot.

  • Resolution set to duplicate
  • Status changed from new to closed

Duplicate of #4616

jorbin3 years ago

comment:3   ryan3 years ago

Viewing that regex will insert a malicious easter egg in your brain.

There are alot of slashes in that patch. Can we use less? They are a natural resource after all.

Willing to commit this if you can produce 100% unit test coverage. I'll wait.

  • Keywords needs-unit-test added

This patch has one main flaw and that is the lack of a capital P I think it needs-improvement

Hmm, looks like that one parenthesis is out of place...

comment:8 follow-up: ↓ 9   filosofo3 years ago

If we wait until 3.2 with PHP 5.x, we can just do

filter_var( $email, FILTER_VALIDATE_EMAIL ) instead, right?

comment:9 in reply to: ↑ 8   nacin3 years ago

  • Milestone Awaiting Review deleted

Replying to filosofo:

If we wait until 3.2 with PHP 5.x, we can just do

filter_var( $email, FILTER_VALIDATE_EMAIL ) instead, right?

Probably not. Those can be buggy. We could potentially leverage it internally but we need to watch out for vulnerabilities and what not across PHP versions.

Note: See TracTickets for help on using tickets.