IPhone Mail bug: Account Name with a comma

I seem to have found a bug in the SMTP implementation on the iPhone's Mail.app. When the iPhone sends an email the recipient will actually see two distinct senders, one sender is "Appleseed" and the other is "John" <[email protected]>. Both sending addresses will be wrong and un-reply-able. Somehow, during the SMTP conversation, the iPhone is mishandling the from address if the display name contains a comma.
Here at the university we have a naming convention for email addresses as:
"Last, First" <[email protected]>
For example, assume your email account is set up like this:
Name: Appleseed, John
Address: [email protected]
When the iPhone sends email the recipient will actually see two distinct senders, one sender is "Appleseed" and the other is "John" <[email protected]>
The sender should of course be: "Appleseed, John" <[email protected]>
I've tested this out sending email from the iPhone through various email servers and I'm fairly certain the bug is on the iPhone, as it happens no matter which SMTP server I use. If the email account has a comma in the display name the message will have a corrupt "From:" address, and the recipient will be unable to reply (since the address gets munged in transport).
I've also tested this out with other email clients, and they all properly send email from accounts with "Appleseed, John" as the display name.

If you NOTICED the iPhone email setup only allows you to input characters that are allowed in any given field. For example it removes from your keyboard non-standard characters when inputing an email address.
Though a comma in the display name of either a "from" or "to" address is fine in the format of
"Appleseed, John" <[email protected]>
If a comma in the display name causes Mail.app problems then that too should be fixed.
The display name field of an email address is allowed by RFC to have (if I remember correctly) quite a few of the non-alpha numeric ascii character.
iPhone Mac OS X (10.4.8)

Similar Messages

  • IPhone Mail App cannot connect with gmail iMap server

    So my gmail address list or contacts seems to have been hacked and all my contacts who are still talking to me have told me so.
    So I changed my gmail password.
    No more complaints, and probably no more friends as contacts.
    But seriously, I have been able to get gmail (web) working with my new double authentication password(s). Also, my outlook for MAC is working using the special "generated App Password". (because Outlook cannot do the double authentication thingie)
    Ditto for the gmail app from google on my iPhone. (it works too)
    BUT
    I cannot get the iPhone Mail App to connect to Gmail.
    I have deleted (i thought) my existing gmail setup from my iPhone. When I try to re establish the gmail settings, using either the password generated by the MAC / iCloud keychain generator or the App password, I get the message "My Name" is already added.
    It looks to me that there is something in the iPhone that matches my gmail address, even though I deleted the account.
    Any suggestions before I call Apple for help?
    Thanks
    Barry

    I think so.
    Actually I think I need to get the App Password for Mail on my phone. It generates the app password and I enter it into the password in the gmail setup for mail.
    The problem is that when I hit next on that page, I get the message:
    "my name" is already added" and I cannot proceed.
    Before doing this setup I deleted my gmail account by tapping the email address and hitting delete in the Mail, Contact and Calendars setup..
    but, there is something hiding in my iPhone that remembers my old gmail password (I guess) and doesn't let me proceed.
    If I enter my gmail iChain password I get the same thing.
    If i do this in airplane mode (no connection to google) i also get the same.
    I talked to an apple care person who had me reset all my settings... still the same thing.
    I am trying to avoid a gull reset of the iPhone, but that may be in the cards.
    Going to go to the apple store and ask there, but i am not hopeful.
    Barry

  • IPhone Mail inbox not syncing with Mac inbox

    Greetings
    Since upgrading my MBP recently, mail in my iPhone Mail inbox/sent items has not been syncing fully with my Mac Mail inbox/sent items.
    Messages which are moved to folders stored On My Mac remain in my iPhone inbox.
    Messages which are moved to folders stored in iCloud are removed from my iPhone in inbox and are visible as they should be in the iCloud folders on my iPhone.
    I use both an iCloud email account as well as an account through my domain host. I do not use Gmail or an Exchange account, and tis problem dud not occur with my old MBP.
    Any advice most gratefully received.
    Sashina.

    Hi KiltedTIm
    Hmmm. I've changed my Mac, iPhone and iPad all from POP to IMAP. On my Mac there are only two items in the inbox in question, but on both mobile devices are every bit of mail from that account (not in filed iCloud folders) going back to 17 April. I've restarted both devices but everything is still in the inbox.
    Any further ideas?
    Thanks!
    Sashina

  • IPhone Mail Bug

    I have an imap account with 2 different email addresses.
    In my iPhone mail settings, both email adresses are typed in the address input field: email1,email2
    If I get a message to my email2 address and click reply, the mail app uses automatically email1 address. So the email address first in row is always used instead of the address the email was sent to.
    Can anyone help?

    In settings>mail>default mail account What is selected? That's the account that will be used.

  • Why does text field in InfoPath 2010 show user name with two commas between first name and last?

    Here's the problem. I have a text field called Manager in an InfoPath 2010 form that is getting populated by a drop down field called
    Business Unit.
    The Business Unit drop-down field is pulling information from
    column A in a custom list via a managed data connection. The custom List has two columns:
    Title & Manager. 
    The Manager column in the custom list is a 'Person or Group' type column.
    The Data Connection pulls both the Title, Manager
    (and ID) data.
    There is a rule on the Business Unit drop-down field to change the value of the
    Manager text field with the Manager data on the custom list. The rule pulls the
    Manager information and filters the value to match the
    Business Unit on the Data Connection with the Business Unit drop-down
    field value (Main).
    The Business Unit drop-down field works great and pulls the value from the custom list, and the rule populates the Manager text field. The problem is that Manager text field shows the name as such:
    [smith,, john]. Notice the two commas between the last and first name. There should only be
    one comma!
    Anyone have an idea why the text field is appearing with two commas?
    Arnel

    Hi all,
    I have a workaround for this. I have an InfoPath 2010 form pulling data from a SP2010 list. The user chooses a System (Business Unit) from the dropdown list and that choice auto populates the associated user (Manager) for that system. I had to
    use concatenation, substring before and substring after to display the correct data.
    concat(substring-before(DisplayName, ",, "), ", ", substring-after(DisplayName, ",, "))
    DisplayName is the original data for the field. I am able to cut & paste this field into the formula. Therefore, I added a few spaces to separate it from the actually formula for future use.
    Select Insert Function
    Select concat
    Select the first link to double-click to insert field
    and then select Insert Function
    Select the Text category and choose substring-before
    Select the third link to double-click to insert field
    and then select Insert Function
    Select the Text category and choose substring-after
    Copy and paste your fieldname (in my case DisplayName) in the
    double-click to insert field
    parts of the substring-before and substring-after links.
    Delete the middle double-click to insert field link
    Add quotes, spaces and commas so that they match the following format:
    concat(substring-before(DisplayName, ",, "), ", ", substring-after(DisplayName,
    Translation:
    concat(substring-before(Doe,, John, ",, "), ", ", substring-after(Doe,,
    John, ",, "))
    Bring together all of the text before ",," (i.e. Doe) with ", " (comma, space) and all text after ",," (i.e. John).
    It should return
    Doe, John.
    I hope this makes sense. I have these instructions with screenshots if you need them, contact me.

  • How to sign in on a domain (account name) with a mac only wifi connected

    Hello,
    I'm a french IT and whant ton know if it's possible to connect a MAC PRO only wifi connected with multiple account name of domain?
    Thanks to reply in french or basic english if it's possible . :-)

    First, you will have to get onto the WiFi. You can log onto the local Mac as the admin, enter the WiFi password, and get it so that it connects and reconnects after a Restart without issue.
    Second, you have to get onto the Domain. If this (Active Directory or Open Directory) Domain is used to Store ALL User files, you will need to use:
    Directory Utility
    Directory Utility determines how a Mac OS X computer uses directory services, discovers network services, and searches directory services for authentication and contacts information. You use Directory Utility to:
    •          Configure advanced connections to LDAP directories, an Active Directory domain, and Network Information Services (NIS) domain
    •          Configure data mapping for LDAP directories           Define policies for searching multiple directory services for authentication and
    contact information
    •          Enable or disable types of directory services and types of network service discovery
    Directory Utility can connect to other servers on your network so you can configure them remotely.
    For more information about using Directory Utility, see Chapter 8, “Advanced Directory Client Settings.”
    Directory Utility is installed on every Mac OS X computer and can be accessed through Accounts preferences.

  • How do I delete my iCloud account name with a new one without deleting my pics?

    I need to. Delete my iCloud account name and change it..how do I do that without deleting all my pics?

    If you haven't got a Mac, then find a friend that has and ask him to upload them onto iPhoto, then you can downlod them later onto a memory stick. 

  • IOS 8.1.1 iPhone mail app not working with Yahoo

    Since upgrading my iPhone 4S to iOS 8.1.1 I have been unable to access my (UK) Yahoo mail account. Following advice from other posters I have tried deleting the account, doing a hard reset and then adding the account again. Also tried different settings for Push and Fetch but all to no avail. I have an iPad2 that I have also upgraded to 8.1.1 and I can access my mail ok on this although I have noticed that one of my mail folders is showing empty despite it containing many emails when I access it directly via Yahoo mail on my Windows laptop. To get round the problem on my phone I have resorted to downloading the Yahoo! Mail app and this works 100% ok. Can anyone please throw some light on this? Thanks

    Hi, Big Alma.  
    Thank you for visiting Apple Support Communities.
    I would need more information regarding what issue you are exactly experiencing with Yahoo and your iOS device to provide a better answer.  However, here is an article I would recommend going through when experiencing issues with mail.  I would also recommend checking with your email provider for security procedures such as two-step verification as this could cause this issue. 
    Get help with Mail on iPhone, iPad, and iPod touch
    http://support.apple.com/kb/ts3899
    Cheers,
    Jason H.

  • IPhone mail/calendar account password syncing?

    When I update the password for a mail account using OS X Mail or do a similar thing for a iCal account on my Macbook Pro, should I expect that password change to occur for the same accounts that are on my iPhone when I sync the iPhone with iTunes on the MBP?  From what I can tell this isn't happening which is irritating.

    I just noticed that if I use the Advanced section in the Info section of the iphone device display in iTunes and select Mail accounts and Apply then the updated mail account password appears to the synced with my iPhone.  Unfortunately, since I have configued the Calendar accounts to sync via iCloud, the password for the calendar accounts does not appear to be updated and I have to manually enter them on the iPhone even though I already updated the password using iCal on my Mac.  How is this supposed to be working?

  • Can not access my gmail account from Thunderbird mail client - account marked with padlock

    I am moving from an telia.com to a gmail.com mail account using a thunderbird mail client. Has been working fine until last evening. When my client could not access gmail anymore. The problem is displayed with a padlock o n the mail account.

    Yes OK padlock has been there before problem occurred - still I have the problem Thunderbird just keeps on working and is not able to access gmail server and I do not see any error indication

  • IPhone MAIL Bug -"TO" Label does not Function in MAIL

    Selecting "Show To/CC Label" in "Settings" for "Mail" does not work. If you select the "Show To/CC Label"ON, you do NOT get the contents of "TO". What you get is the "FROM" and "Subject" contents! For example, if you look at your SENT MAIL with the "TO/CC" setting turned ON, what you see is: "YOUR OWN NAME" in the "TO" section and "subject line" in the "CC."! Very unuseful! I KNOW I sent the email, so I don't need to see every email with MYNAME in bold letters. I'd like to be able to see WHO I sent the email to....
    And "CC" never shows up in either SENT or RECEIVED email in either case...
    Could we get a fix?
    And, anyone know how to collapse contents of mailboxes? under "SAVED" I have all the old, obsolete mailboxes that I never use - all 12 of them, and have to scroll past them to get to SENT... i can't delete them on Mail, either, but at least I can collapse them.
    Thanks!

    Hi Canovac,
    Auto Archive works as expected in my environment.   I noticed you said that you created a new mail folder in your inbox.  Did you just create the folder and move the mail to that folder?  Auto archive looks at modified date and if you
    move the mail to that folder that changed the modified date so the mail will not archive.
    To determine the modified date, do the following:
    While on the folder in question:
    Click View > View Settings > Columns
    In the Select available columns from dropdown choose
    All Mail Fields locate Modifed in the Available colums: and click
    Add
    If the mail has not been modified within the last two week span, please test the following for me.
    Start Outlook with the /safe switch and then run Auto-Archive. 
    Does auto-archive work when starting with the /safe switch?
    Regards, Teresa Microsoft Online Community Support Please remember to click “Mark as Answer” on the post that helps you, and to click “Unmark as Answer” if a marked post does not actually answer your question. This can be beneficial to other community
    members reading the thread.

  • IPhone Mail and Calendar Setup With Entourage..Can This Be Done?

    I need help on this one, guys and gals. Does anyone know if the original iPhone can be setup to sync to Entourage? I can't seem to find anything on this. I have a macbook and a PC, but I'd like to keep everything on the macbook and sync my iPhon from that as I have thus far. Any suggestions? Any assistance in this capacity is greatly appreciated. Thank you all in advance!

    It can not be set up to sync with Entourage. Address Book and iCal only on the mac.
    However - Entourage can be set up to sync with iCal and AB. Once E syncs with them,the iPhone will sync with iCal/AB and the results will be the same.

  • Yosemite server email accounts name with only domain and extension

    Hello Again,
    Yosemite Server 10.10.1
    Domain name, static IP
    What are the tricks to get email in and out to use username example.com instead of [email protected]?
    François

    Hello Again,
    I'm sending from :  username @ xyz.example.com
    and receiving to :  username @ example.com
    Suggestions please?

  • Since the upgrade, my Icloud account is picking up a former account name-e mail address  I no longer have that address and cannot seem to be able to edit it to change it   the password is always wrong, no matter what i try

    since the upgrade, my I phone I cloud account is picking up my former e mail address/account name and I cannot access it because it keeps denying the passwords I try   I no longer have that e mail address either    I can access I cloud and I tunes on my laptop with the correct account name/password,but not my phone     the i tunes account works fine on the phone--correct name--just not  i cloud       i tried changing it from my computer back to the old address then changing it to the new address and verifying by e mail but nothing happened   

    Hello there, Nana2054.
    The following Knowledge Base article provides some great recommendations for resolving your issue:
    iOS 7: If you're asked for the password to your previous Apple ID when signing out of iCloud
    http://support.apple.com/kb/TS5223
    This additional article can provide some assistance as well, if you are still getting an error message concering your password for that account:
    iCloud: "Incorrect Apple ID or Password" alert when setting up iCloud after upgrading to iOS 7
    http://support.apple.com/kb/TS5207
    Thanks for reaching out to Apple Support Communities.
    Cheers,
    Pedro.

  • Mail Creating Accounts Differently

    Hi, Everyone...
    I'm having to rebuild my Mail accounts from scratch due to a corrupt database.  Fortunately, most were IMAP accounts so I figured they would simply download properly as I created each new account (I have several accounts due to different work clients).
    My question is why does Mail create each account with different folders/subfolders, etc.?  For example, one account it created had the main account name with a pop-out arrow to the left which when clicked opens up and shows all the subfolders.  This would be my preference.  However, after adding 2 more accounts, they each created one folder at the top with all the subfolders way down at the bottom.  In addition, some have "Deleted Messages" AND "Trash" and also another "Trash" folder under the Trash with the trash can icon!  I just want ONE trash folder for each account, 1 spam folder for each, and 1 Sent folder for each - how do I accomplish this?   And how do I make all the folders the same for each account?  I'm attaching 2 screenshots (one is what is underneath the other - couldn't get it all in one shot) to show how it looks currently...
    Thanks a bunch for any help with this!  Since I'm having to "start over" I'd like to get it nice and clean.
    - Jacki

    Thanks for the info - I do realize that the actual folders created would be pulled down from the server - my point (and issue) is why are some accounts being displayed with the pop-out arrow with all the folders right there under the main account name - and others being split up into 3 sections and displayed all over the place like that?!  That has to be coming from the Mail app itself since all my accounts are set up the same on the server...  I would really liked them all to show up with the pop-out arrow so they're not separated like they are currently.

Maybe you are looking for

  • Mail Read Receipt Issue I Don't See Addressed

    I have a company e-mail account that I use for work along with other accounts that are all in my Mail client. I use my MacBook Pro and my iPhone to send and receive mail. Everything works fine. My employer has recently asked that I have a return rece

  • Error during Exchange 2007 mailbox provisioning with IDM 8.1.1.1

    Hi We want to create Exchange 2007 mailboxes from IDM. When we let Exchange set the SMTP address (EmailAddressPolicyEnabled=true), it works fine But when we set the SMTP address in IDM with the attribute PrimarySmtpAddress (and EmailAddressPolicyEnab

  • Free Goods Pricing Error

    Dear SAP Gurus, I have configurde the Free Goods as Exclusive and accordingly kept the condition records. When I am creating Sales Order, I have given the first line item as 1482 and when I entered , the second line item automaticaly vame with item c

  • Design View Refresh doesn't work on mac CC

    Hi Y'all, I'm having horrible trouble with Dreamweaver CC on mac, (10.8) quad core, 32GB RAM... when highlighting something in design view, it does not highlight the respective code anymore like the older versions used to. and the design view refresh

  • Mac Mini and LG 1080p TV

    Hello all. I have a 2011 mac mini. When connected to my LG HD TV via HDMI, with both the mini and the TV set to 1080p, the picture looks great but the icons and text are very small. From my couch it is very difficult to work with. Is there any way to