up vote 1 down vote favorite
3
share [g+] share [fb]

How can I check for duplicate email addresses in PHP, with the possibility of Gmail's automated labeler and punctuation in mind?

For example, I want these addressed to be detected as duplicates:

         username@gmail.com
        user.name@gmail.com
   username+label@gmail.com
  user.name+label@gmail.com

Despite what Daniel A. White claims: In Gmail, dots at random places before the '@' (and label) can be placed as much as you like. user.name@gmail.com and username@gmail.com are in fact the same user.

link|improve this question

4  
fyi a period is a unique part of an email address. i wouldnt exclude it as different. – Daniel A. White Oct 18 '09 at 23:58
2  
Not for Gmail it isn't. These addresses are all the same: user.name@gmail.com, u.s.e.r.n.a.m.e@gmail.com, username@gmail.com – Kriem Oct 19 '09 at 0:00
2  
@Kriem: I have an gmail account and I sent an email to it from yahoo mail with a period (".") inserted into the email address (abcdef@gmail.com -> ab.cdef@gmail.com, doesn't reach my mailbox. – o.k.w Oct 19 '09 at 0:12
1  
@o.k.w: I just tried gmail to gmail with a period between my gmail email and I got the email. – MitMaro Oct 19 '09 at 0:17
2  
There are some early Gmail users whose email must include a period and they will not get mail if sent to a version without. The period for all was later added. It's not blanket universal to mean the same user. – random Oct 19 '09 at 1:16
show 5 more comments
feedback

6 Answers

up vote 3 down vote accepted
$email_parts    = explode('@', $email);

// check if there is a "+" and return the string before
$before_plus    = strstr($email_parts[0], '+', TRUE);
$before_at      = $before_plus ? $before_plus : email_parts[0];

// remove "."
$before_at      = str_replace('.', '', $before_at);

$email_clean    = $before_at.'@'.$email_parts[1];
link|improve this answer
2  
You likely only want to remove the "."s from GMail addresses. As mentioned in the comments on the OP, most mail providers will recognise "." as a valid character, making the addresses different. – Brenton Alker Oct 19 '09 at 1:00
You are right if you are running this code on other addresses than the gmail ones. Just check after line 1 of my script if (in_array($email_parts[1], 'gmail.com', 'googlemail.com')) { // run the rest of the code... } – powtac Oct 19 '09 at 9:35
This, including powtac's addition would do the trick. – Kriem Oct 19 '09 at 13:55
feedback

Strip the address to the basic form before comparing. Make a function normalise() that will strip the label, then remove all dots. Then you can compare the addresses via:

normalise(address1) == normalise(address2)

If you have to do it very often, save the addresses in the normalised form too, so you don't have to convert them back too often.

link|improve this answer
Beat me to it. :) – musicfreak Oct 19 '09 at 0:05
feedback

Perhaps this would be better titled "How to normalize gmail addresses in PHP, considering (user.name+label@gmail.com)"

You have two technical solutions above. I'll go a different route and ask why you're trying to do this. It doesn't feel right to me. Are you trying to prevent someone registering multiple times at your site using different e-mail addresses? This will only prevent a specialized case of that.

I have my own domain, example.com, and any e-mail that goes to any address at that domain goes to my single mailbox. Do you, now, want to put a check to normalize anything at my example.com to a single address on your end?

By the official e-mail address format, those addresses you are trying to match as the same are different.

link|improve this answer
feedback

Email address parsing is really, really hard to do correctly, without breaking things and annoying users..

First, I would question if you really need to do this? Why do you have multiple email addresses, with different sub-addresses?

If you are sure you need to do this, first read rfc0822, then modify this email address parsing regex to extract all parts of the email, and recombine them excluding the label..

Slightly more.. practically, the Email Address wikipedia page has a section on this part of the address format, Sub-addressing.

The code powtac posted looks like it should work - as long as you're not using it in an automated manner to delete accounts or anything, it should be fine.

Note that the "automated labeler" isn't a GMail specific feature, Gmail simply popularised it.. Other mail servers support this feature, some using + as the separator, others using -. If you are going to special-case spaces in GMail addresses, remember to consider the googlemail.com domain also

link|improve this answer
feedback
function normalize($input) {
     $input = str_replace('.', '', $input);
     $pattern = '/\+(\w+)@/';
     return preg_replace($pattern, '@', $input);
}
link|improve this answer
2  
$input = str_replace('.', '', $input); seems a bit brutal. It will make "bob@ex.ample.com" and "bob@example.com" the same.. – dbr Oct 19 '09 at 0:31
feedback

I have extended Zend Validator like this.

<?php
class My_Validate_EmailAddress extends Zend_Validate_EmailAddress
{
    public function isValid($value)
    {
        $valid = parent::isValid($value);
        if ($valid
                && in_array($this->_hostname, array('gmail.com', 'googlemail.com'))
                && substr_count($this->_localPart, '.') > 1) {
            $this->_error(parent::INVALID_HOSTNAME);
            $valid = false;
        }
        return valid;
    }
}

Email with more than one "dot" symbol in gmail address are considered invalid. For some cases this is not logical solution, but that works for me.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.