vote up 6 vote down star
1

I expect this should be a pretty easy question. It is in two parts:

  1. Are email addresses case sensitive? (i.e. is foo@bar.com different from Foo@bar.com?)
  2. If so, what is the correct locale to use for capitalising an email address? (i.e. capitalising the email tim@foo.com would be different in the US and Turkish locales)
flag

36% accept rate
if you have anything to do with it, you should aim for case insensitive email names – DrG Feb 17 at 11:16
Sadly, this won't be the case. – johnstok Feb 17 at 12:11

4 Answers

vote up 6 vote down

The local-part of the email address (i.e. before the @) is case-sensitive in general. From the Wikipedia entry on E-mail address:

The local-part is case sensitive, so "jsmith@example.com" and "JSmith@example.com" may be delivered to different people. This practice is, however, discouraged by RFC 5321. However, only the authoritative mail-servers for a domain may make that decision.

For the detailed specifications, you may wish to consult the following RFCs:

  • RFC 5321: Simple Mail Transfer Protocol
  • RFC 5322: Internet Message Format
  • RFC 3696: Application Techniques for Checking and Transformation of Names
link|flag
vote up 9 vote down

Judging from the specs the first part can be case sensitive, but normally it's not.
Since it's all ASCII you should be safe using a "naive" uppercase function.

Check out the RFC spec part of the wikipedia article on E-mail adresses

If you're in for some heavier reading RFC5322 and RFC5321 should be useful too.

link|flag
Trying to avoid the pain of reading the RFC :-) – johnstok Feb 17 at 9:54
vote up 3 vote down

domain names are case insensitive. so foo@BAR.COM is the same email as foo@bar.com

for user names, it depends of the mail server. in the Outlook server my company uses it is also case insensitive

link|flag
vote up -1 vote down

Email address are not case sensitive.

The local-part of the e-mail address may use any of these ASCII characters:

  1. Uppercase and lowercase English letters (a-z, A-Z)
  2. Digits 0 through 9
  3. Characters ! # $ % & ' * + - / = ? ^ _ ` { | } ~
  4. Character . provided that it is not the first nor last character, nor may it appear two or more times consecutively.

    Source :Wikipedia

link|flag

Your Answer

Get an OpenID
or

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