What are valid and invalid email address characters

What are valid and invalid email address characters in Exchange 2010, for example can you have Conan.O'[email protected] is there a document that shows the valid and invalid sysmbols?

Hi
    The format of email addresses is
local-part@domain where the local-part may be up to 64 characters long and the
domain name may have a
maximum of 253 characters - but the maximum 256 characters length of a forward or reverse path restricts the entire email address to be no more than 254 characters.<sup id="cite_ref-0">[1]</sup>
The formal definitions are in RFC 5322 (sections 3.2.3
and 3.4.1) and RFC 5321 - with a more readable form given in
the informational RFC 3696<sup id="cite_ref-1">[2]</sup>
and the associated errata.
Local part
The local-part of the email address may use any of these
ASCII characters
RFC 5322 Section
3.2.3:
Uppercase and lowercase English letters (a–z, A–Z) (ASCII: 65-90, 97-122)
Digits
0 to
9 (ASCII: 48-57)
Characters
!#$%&'*+-/=?^_`{|}~ (ASCII: 33, 35-39, 42, 43, 45, 47, 61, 63, 94-96, 123-126)
Character
. (dot, period, full stop) (ASCII: 46) provided that it is not the first or last character, and
provided also that it does not appear two or more times consecutively (e.g. [email protected] is not allowed.).
Special characters are allowed with restrictions. They are:
o   
Space and
"(),:;<>@[\] (ASCII: 32, 34, 40, 41, 44, 58, 59, 60, 62, 64, 91-93)
The restrictions for special characters are that they must only be used when contained between quotation marks, and that 3 of them (The
space, backslash \ and
quotation mark " (ASCII: 32, 92, 34)) must also be preceded by a backslash
\ (e.g.
A quoted string may exist as a dot separated entity within the local-part, or it may exist when the outermost quotes are the outermost characters of the local-part
(e.g. abc."defghi"[email protected] or
"abcdefghixyz"@example.com are allowed. Conversely,
abc"defghi"[email protected] is not; neither is
abc\"def\"[email protected]). Quoted strings and characters however, are not commonly used.
RFC 5321 also
warns that "a host that expects to receive mail SHOULD avoid defining mailboxes where the Local-part requires (or uses) the Quoted-string form".
The local-part "postmaster" is treated specially - it is case-insensitive, and should be forwarded to the server's administrator. Technically all other local-parts
are case sensitive, therefore [email protected] and [email protected] specify different mailboxes. However most organizations treat uppercase and lowercase letters as equivalent, and also do not allow use of the technically valid characters
(space, ? and ^). Organizations are free to restrict the forms of their own email addresses as desired, e.g.,
Windows Live Hotmail,
for example, only allows creation of email addresses using alphanumerics, dot (.), underscore (_)
and hyphen (-).<sup id="cite_ref-2">[3]</sup>
Systems that send mail must be capable of handling outgoing mail for all valid addresses. Contrary to the relevant standards, some defective systems treat certain
legitimate addresses as invalid and fail to handle mail to these addresses. Hotmail, for example, refuses to send mail to any address containing any of the following standards-permissible characters:
!#$%*/?^`{|}~
Domain part
The domain name part of an email address has to conform to strict guidelines: it must match the requirements for a
hostname,
consisting of letters, digits, hyphens and dots. In addition, the domain part may be an
IP address
literal, surrounded by square braces, such as jsmith@[192.168.2.1], although this is rarely seen except
in email spam.
Examples
Valid email addresses
<tt>[email protected]</tt>
<tt>[email protected]</tt>
<tt>[email protected]</tt>
<tt>much."more\ unusual"@example.com</tt>
<tt>very.unusual."@"[email protected]</tt>
<tt>very."(),:;<>[]".VERY."very@\\\ \"very"[email protected]</tt>
Invalid email addresses
<tt>Abc.example.com</tt> (an @ character must separate the local and domain parts)
<tt>[email protected]</tt> (character dot(.) is last in local part)
<tt>[email protected]</tt> (character dot(.) is double)
<tt>A@b@[email protected]</tt> (only one @ is allowed outside quotation marks)
<tt>a"b(c)d,e:f;g<h>i[j\k][email protected]</tt> (none of the special characters in this local part
is allowed outside quotation marks)
<tt>just"not"[email protected]</tt> (quoted strings must be dot separated, or the only element making
up the local-part)
<tt>this is"not\[email protected]</tt> (spaces, quotes, and backslashes may only exist when within
quoted strings and preceded by a slash)
<tt>this\ still\"not\\[email protected]</tt> (even if escaped (preceded by a backslash), spaces, quotes,
and backslashes must still be contained by quotes)
Terence Yu
TechNet Community Support

Similar Messages

  • What are Validation and simulator

    can any one explain what are Validation and Simulators are ???
    what is there importance and how they work in SAP ??
    Regards,
    Milindkumar

    Are you referring to validation rules and simulations? Whereby validations allow the checking of values and combinations of data as they are being entered in SAP. Because the data is validated before it is posted, only correct information enters the system. For example if you have a cost center X that should not post to account Y. You create a validation that checks to see if cost center X is entered whether the account is Y. If the account is Y the validation will stop the entry from being made.
    Simulations normally are when data is checked for accuracy or verfied before posting. Simulations usually allow the verification of data by displaying that entries that will post or will be created only after the post button or process occurs.

  • Needto find no. of valid and invalid objects in a tablespace

    Hi,
    Can anyone tell me how to find the no. of objects that are valid and invalid in a tablespace.Below are the 2 tablespace that i want the info for
    SQL> select
      2  fs.tablespace_name "Tablespace",
    (df.totalspace - fs.freespace) "Used MB",
      3    4  fs.freespace "Free MB",
      5  df.totalspace "Total MB",
      6  round(100 * (fs.freespace / df.totalspace)) "Pct. Free"
      7  from
      8  (select
      9  tablespace_name,
    10  round(sum(bytes) / 1048576) TotalSpace
    11  from
    12  dba_data_files
    13  group by
    14  tablespace_name
    15  ) df,
    16  (select
    17  tablespace_name,
    18  round(sum(bytes) / 1048576) FreeSpace
    19  from
    20  dba_free_space
    21  group by
    22  tablespace_name
    23  ) fs
    24  where
    25  df.tablespace_name = fs.tablespace_name
    26  and fs.tablespace_name IN ('FPR_GL_I02','FPR_GL_D02');
    Tablespace                        Used MB    Free MB   Total MB  Pct. Free
    FPR_GL_I02                             18       4500       4518        100
    FPR_GL_D02                           1980     119250     121230         98Thanks in advance...........

    You can try with below query too.
    idle> select b.object_name,b.object_type,b.status,b.owner,a.tablespace_name from dba_objects b, dba_segments a where b.status='INVALID' and a.tablespace_name='USERS';
    OBJECT_NAME OBJECT_TYPE STATUS OWNER TABLESPACE
    QSRO_DDL_TRIG TRIGGER INVALID DB_QIPS USERS
    QSRL_USRDT_TRIG TRIGGER INVALID DB_QIPS USERS
    QSRL_DDL_TRIG TRIGGER INVALID DB_QIPS USERS
    DEMO VIEW INVALID DAVID USERS
    QSRO_DDL_TRIG TRIGGER INVALID DB_QIPS USERS
    QSRL_USRDT_TRIG TRIGGER INVALID DB_QIPS USERS
    QSRL_DDL_TRIG TRIGGER INVALID DB_QIPS USERS
    DEMO VIEW INVALID DAVID USERS
    QSRO_DDL_TRIG TRIGGER INVALID DB_QIPS USERS

  • When trying to set up Sync account and enter my actual password, I get an "invalid email address"warning. Help...

    When I go into Sync and try to set up an account, I am asked for email address (which is <[email protected]>. Immediately as I enter the "meinig58" the "invalid email address" red warning comes up. How do I solve this problem and establish my Sync account?

    Write the whole email address and wait for a second to validate it.
    The validator tells you that you have entered the wrong email until you finish typing a valid one. Developers are working to fix it.

  • My iPhone is using my work email to sign in to the cloud, but my apple id and password are with my "personal" email address.  I can't get rid of my "work" email address on my iPhone 4S

    My iPhone is using my work email to sign in to the cloud, but my apple id and password are with my "personal" email address.  I can't get rid of my "work" email address on my iPhone 4S

    Hi Sister Kate,
    If you change the Apple ID you are using on an iPhone or other iOS device, there are several places you need to change it on the device. See this article -
    Apple ID: What to do after you change your Apple ID
    Thanks for using Apple Support Communities.
    Best,
    Brett L 

  • How can I find out what apple IDs are tied to an email address

    We are trying to set up FaceTime and got the verification error on the email address.  We went in to the Apple ID account and when we verify the email address, it tells us that it's tied to another AppleID.  My daughter has 3 other AppleIDs and we've checked each one of them and the email address is not tied to any of them.
    How can we find out what apple ID is tied to this email address?
    We have used the "Forgot my Apple ID" function and used all 3 of the different email addresses she's used on the accounts and when we access the one that says there's a duplicate, it takes us to the account and it's the one with the email address that I noted above.
    Any thougts or help?
    Thanks!

    Itunes limit includes computers. 
    http://www.ilounge.com/index.php/articles/comments/managing-devices-in-your-itun es-store-account/

  • I changed my Apple ID that using an invalid email address to a new one and I am trying to update iCloud account on iPhone5 with iOS 7.1.2, and I am not able to delete iCloud account without the old password.

    I changed my Apple ID that using an invalid email address and I am trying to update iCloud account with my new Apple ID on iPhone 5 with iOS 7.1.2. I am not able to delete iCloud account without the old password. Is there a way to update the Apple ID of my iCloud account?

    Many people are having probalems with this right now.  The only solution I've seen that seems to consistently work is the one posted by Brackers28 here: https://discussions.apple.com/message/23020591#23020591.  This only works if you still have access to your old email account.  If you don't, you'll have to have Apple help you reset the password for your old account so you can turn off Find My iPhone and sign into your account with your correct ID.

  • I want to change my Apple ID for IPad because forgot password and all email addresses changed so cannot get informations for password reset. What can I do?

    I want to change my Apple ID for IPad because forgot password and all email addresses changed so cannot get informations for password reset. What can I do?

    I was wondering if you ever figured this out. I have the same issue. When I try to use the support communities, there are so many with the same problems and never seem to be any replys?? Not very helpful and I can not get Apple to return my emails.

  • My apple id email address is no longer valid. my current email address is recognised as my rescue email...i need to cancel old, change my current and add a new recue email...cant seem to be able too

    my apple id email address is no longer valid. my current email address is recognised as my rescue email...i need to cancel old, change my current and add a new recue email...cant seem to be able too

    How are you trying to do it ? You can change the rescue email address on your account by, from http://support.apple.com/kb/HT5312 :
    Navigate to appleid.apple.com using your web browser.
    Click "Manage your account"
    When prompted, sign in using your Apple ID and password.
    Click Password & Security
    You'll be asked to answer 2 of your 3 security questions before you can make any modifications. If you are unable to remember your answers, you can choose to send an email to your rescue email to reset your security questions.
    After you've validated your identity by correctly answering your security questions, click Edit to the right of your rescue email address.
    Once you've finished editing your rescue email address, click the Save button directly below the email field.
    You can then try using your current rescue email address as your primary email address - you may need to log out of that page and back in. Or you can then try changing the primary email address via the Store > View Account menu option on your computer's iTunes
    If you have an iPhone, iPad and/or iPod Touch you may then need to log out of your account on them by tapping on it in Settings > iTunes & App Store and log back in for the account to be 'refreshed' on it.

  • Hello can someone help me I have an iphone 4 and my daughter has an ipod touch we are on the same email address but somehow with in the last 25hrs all of my contacts are gone and only hers on on my phone is there a way for me to get all my contacts back?

    Hello can someone help me I have an iphone 4 and my daughter has an ipod touch we are on the same email address but somehow with in the last 25hrs all of my contacts are gone and only hers on on my phone is there a way for me to get all my contacts back?

    If you need assistance with finding any of your restores or attempting to restore from any that happened prior to his incident follow this article
    http://support.apple.com/kb/ht1766
    IF you do find a backup that has your contacts; I'd /highly/ recommand turning off your wifi network after the restore is finished because if the issue is with your iCloud your contacts may merge back with her's.
    With iCloud you DO NOT want to share the account; bad things happen Evil evil thigns...
    But in all seriousness; if two devices have the same iCloud; iCloud is told to merge and sync infomation between hte two and can't tell that it doesn't belong to the same person

  • I have forgotten my password for icloud, have an invalid email address and do not know my security answers. How can I transfer all my data from my old iphone to the new one?

    I have forgotten my password for icloud, have an invalid email address and do not know my security answers. How can I transfer all my data from my old iphone to the new one?

    In this case you won't be able to do that?

  • My apple id for icloud is linked to an invalid email address and i do not have the password for the account.  I need to delete the account to access my icloud on my iphone.  any ideas?

    my apple id for icloud is linked to an invalid email address and i do not have the password for the account.  I need to delete the account to access my icloud on my iphone.  any ideas on how to override this issue?

    If you updated the old ID at one point to create your current iCloud ID, temporarily recreate the old ID by going to https://appleid.apple.com, click Manage my Apple ID and sign in with your current iCloud ID.  Click edit next to the primary email account, change it back to your old email address and save the change.  Then edit the name of the account to change it back to your old email address.  You can now use your current password to turn off Find My iDevice, even though it prompts you for the password for your old account ID. Then save any photo stream photos that you wish to keep to your camera roll.  When finished go to Settings>iCloud, tap Delete Account and choose Delete from My iDevice when prompted (your iCloud data will still be in iCloud).  Next, go back to https://appleid.apple.com and change your primary email address and iCloud ID name back to the way it was.  Now you can go to Settings>iCloud and sign in with your current iCloud ID and password.

  • Apple ID and Primary Email Address are locked and cannot be edited

    Apple ID and Primary Email Address are locked and cannot be edited... I accidentally clicked "make my apple ID and Primary Email address one" and now I cannot edit it. I don't use my @mac account and am not receiving any notifications. How can I change my primary email address back to an address I actually check?

    Found a solution...
    • Go to your country's Apple Store website http://store.apple.com/
    • Click on the Account button in the top-right corner
    • Under Account Settings, click on Change your default shipping or billing info
    • Sign in with your usual Apple ID and password
    • The email address listed under Payment Information is the key
    • Click on Edit next to Payment Information and change that email address to your preferred address
    This worked for me!

  • Trying to send a gift on iTunes and it keeps saying invalid email address, but I know it's correct.

    iTunes keeps popping up saying that I have put in an invalid email address but I know it is correct.

    You made an error when entering the settings into the iPod.  Sometimes it is easier to just delete the mail account from the iPod and reenter the setting vice trying to find the error.

  • When trying to set up sync, why does it always tell me invalid email address?

    I've downloaded Sync, I registered and signed up for Firefox add-ons.
    When I try to set up Firefox Sync.. I type in my username, password, then when it comes to email address, whatever letter I type first a red/white X box comes up saying invalid email address. Why?

    telliot, your reply is a bit cryptic, but I finally understood what you meant. What he/she meant, folks, is to keep on typing what you know to be your valid email address. When you enter ".com" (or whatever extension) the error signal will disappear

Maybe you are looking for

  • I would like to see the added keywords under the picture like iPhoto does it. Is that possible? I cannot find an answer

    I would like to see the added keywords under the picture like iPhoto does it. Is that possible? I cannot find an answer in Aperture 3.2.1

  • How do i copy music from my ipod classic to itunes on my macbook pro?

    I have a lot of music on my ipod classic from an old computer I no longer have.  How do I copy this to my itunes library on my macbook pro so that when i synch my ipod and my computer, the music already on the computer won't be wiped out and replaced

  • Words cut off at bottom of page

    I have a nicely formated document and on some pages the words get cut off at the bottom when the linespacing pushes them right to the bottom margin. The footer is fine just below it. How can I fix that?

  • Cisco MSE starting up problem

    hi all  I installed MSE virtual appliance 7.4.100 and cannot add it on the PI 2.0  I tried to reboot the MSE i found this log  starting ipmi drivers: ipmi_si: unable to find any system interface(s)                                                     

  • Quicktime Error on XP

    Im running on XP and ever since I updated my Quicktime, ive been getting this error message on my Firefox browser. "The Quicktime Plug-In requires the Quicktime System Extension Version 5 or later." Whats going on?? It never plays the file, that mess