php.net |  support |  documentation |  report a bug |  advanced search |  search howto |  statistics |  random bug |  login
Request #71893 Email address with long (>64) local-part rejected by FILTER_VALIDATE_EMAIL
Submitted: 2016-03-24 19:08 UTC Modified: 2016-03-25 01:45 UTC
Votes:1
Avg. Score:3.0 ± 0.0
Reproduced:1 of 1 (100.0%)
Same Version:0 (0.0%)
Same OS:0 (0.0%)
From: bfarber at invisiopower dot com Assigned:
Status: Open Package: Filter related
PHP Version: 7.0.4 OS: CentOS / Windows
Private report: No CVE-ID: None
View Add Comment Developer Edit
Welcome! If you don't have a Git account, you can't do anything here.
You can add a comment by following this link or if you reported this bug, you can edit this bug over here.
(description)
Block user comment
Status: Assign to:
Package:
Bug Type:
Summary:
From: bfarber at invisiopower dot com
New email:
PHP Version: OS:

 

 [2016-03-24 19:08 UTC] bfarber at invisiopower dot com
Description:
------------
I have a valid email address that is being rejected by filter_var on two different servers.  If this has already been addressed, I apologize in advance for the duplicate bug report. I've tested with 5.5.12 and 5.4.43 with the same results, and I don't have another environment loaded right now with a more recent version of PHP.  That said, I looked through the changelog and no fixes stood out after 5.5.12 that would address this issue.

The example email address is loop-300mcconvillerdlisti-Folder-b5d8dbce-201f-4fdb-be88-ea6b9a486736z55662107@upload.dotloop.com. This is an email provided by a newer service "DotLoop" but when we attempt to validate the email address on our end it fails. The email address is valid and has nothing out of the ordinary going on with it.  I did note several past bugs related to dash symbols and/or multiple dash symbols in the email address, so that may be relevant here since the email address has multiple dash symbols. 

Test script:
---------------
<?php

$email = "loop-300mcconvillerdlisti-Folder-b5d8dbce-201f-4fdb-be88-ea6b9a486736z55662107@upload.dotloop.com";

var_dump( filter_var( $email, FILTER_VALIDATE_EMAIL ) );

Expected result:
----------------
filter_var should return the email address as provided

Actual result:
--------------
filter_var returns FALSE

Patches

Add a Patch

Pull Requests

Add a Pull Request

History

AllCommentsChangesGit/SVN commitsRelated reports
 [2016-03-25 01:45 UTC] requinix@php.net
-Summary: Valid email address rejected by FILTER_VAR +Summary: Email address with long (>64) local-part rejected by FILTER_VALIDATE_EMAIL -Type: Bug +Type: Feature/Change Request -PHP Version: 5.5.33 +PHP Version: 7.0.4
 [2016-03-25 01:45 UTC] requinix@php.net
The email regex PHP uses [1] was written against RFC 2821, which imposes [2] a limit of 64 characters on the local part (stuff before the @). And while it was obsoleted by RFC 5321, the length limitation was unchanged [3].

Meanwhile the complementary RFC 5322 (which obsoleted 2822) uses "[a] liberal syntax" with no mention of a length limit, and does comment that "[t]he local-part portion is a domain-dependent string" [4].

The regex is behaving as expected but isn't quite flexible enough for your usage.

[1] https://git.io/vapjB (/ext/filter/logical_filters.c line 601)
[2] http://tools.ietf.org/html/rfc2821#section-4.5.3.1
[3] http://tools.ietf.org/html/rfc5321#section-4.5.3.1
[4] http://tools.ietf.org/html/rfc5322#section-3.4.1
 
PHP Copyright © 2001-2024 The PHP Group
All rights reserved.
Last updated: Tue Mar 19 08:01:29 2024 UTC