ICloud mail via IMAP stopped working

iCloud Mail via IMAP in Mail stopped working
Hi!
For a few months now I have been using iCloud mail configured in mail.app as an IMAP account, not as an iCloud account. The reason for this is that I want to use a different SMTP server, so outgoing mail has a different sender address. This has worked until a few days ago.
Now mail.app doesn't accept my user authentication anymore and asks for a password. I have entered it several times, and I'm sure it's correct. Logging into the account via icloud.com does work, and the same settings still work on my iPad and iPhone. Console doesn't log anything, only when I use the "check connection" feature in mail.app, there's an entry that says "Mail[447]: [<_LibSasl2SASLClient: 0x7fbebc0a76b0> mechanism: PLAIN security layer: no] Failed to start the SASL connection SASL(-1): generic failure:"
Things I have tried so far:
- deleting password from keychain - doesn't help
- configuring the account as an iCloud account instead of IMAP - works
- using the same settings in a (almost) fresh ML install - doesn't work
- using the same settings in Outlook - works
- using p01-imap.mail.me com instead of imap.mail.me.com - doesn't work
Any help with this would be appreciated. Thank you!
Regards,
Timo

OK, I have now removed the "@me.com" from the username in the IMAP settings, and now it seems to work. I still don't understand why that's necessary, since it has been working like this for a long time and still does in iOS, but at least it does work now.

Similar Messages

  • Mail Server suddenly stopped working

    My mail server has stopped working, and I can't figure out why. This is a brand new MacMini with the latest Maverics Server (preinstalled) that I just setup last month. (We migrated from an Xserve running 10.6.) Up to this point, mail has worked flawlessly.
    This afternoon I used the Server app to create a new user. I then went about setting them up for ssh access and installing a public/private keypair (this is for a git repository). Around the same time, my mail server simply stopped working. As far as I know, no other configuration changes were made.
    When I go into the Mail service in the Server app the status perpetually says "Starting...". The 'postfix status' command says that postfix is not running. I've checked every log and error file, and I can only find three anomolies:
    The SMTP log file reports:
    Feb 11 01:31:06 mail.gloaming.com postfix/postmap[7152]: warning: /Library/Server/Mail/Data/scanner/amavis/local_domains.db: duplicate entry: "mail.gloaming.com"
    This warning has been logged before, several weeks earlier, so I assume it's not a serious problem.
    The other warning is:
    Feb 11 00:10:49 mail.gloaming.com postfix/postfix-script[23141]: warning: not owned by _postfix: /Library/Server/Mail/Data/mta/./guid_device_maps.plist
    Other threads seem to indicate that this warning is benign.
    The only other problem that looks really suspicious (to me) is in the system.log:
    Feb 11 01:22:52 mail.gloaming.com ocspd[4947]: ERROR: unable to get the receiver data from the DB!
    I'm not sure what that means, but it doesn't sound good.
    Some threads point a finger at the virus and junk mail scanners. If I disable all mail filtering, the mail server status will finally change to "Serving mail at mail.gloaming.com". But it isn't. All attempts to get mail from the server are refused.
    (Oh, and I've restarted the server several times.)
    The postconf command tells me that the postfix system isn't accepting outside connections:
    inet_interfaces = loopback-only
    So it would appear that Server is setting this. Any attempt to change it back to "= all" fails, as the server software overwrites it with "= loopback-only" at its first possible opportunity. (Editing the main.cf file and reloading postfix doesn't fix it either.)
    Here's the really strange part. The server just started do this today. I recovered a backup of the main.cf file from yesterday and diffed it with the one that's not working:
    mail:postfix root# diff /Library/Server/Mail/Config/postfix/main.cf /Users/admin/Desktop/main.cf
    675c675
    < inet_interfaces = loopback-only
    > inet_interfaces = all
    682c682
    < smtpd_helo_restrictions = reject_non_fqdn_helo_hostname reject_invalid_helo_hostname
    > smtpd_helo_restrictions = reject_invalid_helo_hostname reject_non_fqdn_helo_hostname
    692c692
    < mydestination = $myhostname, localhost.$mydomain, localhost, mail.gloaming.com
    > mydestination = $myhostname, localhost.$mydomain, localhost, mail.gloaming.com, $mydomain
    712d711
    < postscreen_dnsbl_sites = zen.spamhaus.org*2
    As you can see, the Server software has deliberatly started setting inet_interfaces to loopback-only and I can't figure out how to get it to set it back to "all".
    Some of the other threads have suggested "wipe and reinstall", but I've spent three weeks setting up this sever and shipping it to a co-location facility—starting over really isn't an option.
    I'd really just want to know why the Server software is suddently configuring the mail server so it won't receive any mail!

    The mystery continues.
    This morning, I decided to take a fresh look at what's going on by recovering a backup copy of my entire /Library/Server/Mail/Config directory from last month. Looking at the item capture list, it shows that none of the files in my Mail/Config directory have changed since late last month.
    Here are the disturbing changes.
    In Server/Mail/Config/dovecot/dovecot.conf, there is one different line.
    working:
         protocols = imap pop3 lmtp sieve
    now:
         protocols = lmtp sieve
    So clearly, the server doesn't think we should be running IMAP or POP. Which is probably the root of the problem.
    In Server/Mail/Config/postfix/mail.cf, there are a number of minor/cosmetic differences, but the problematic ones appear to be
    working:
         inet_interfaces = all
         mydestination = $myhostname, localhost.$mydomain, localhost, mail.gloaming.com, $mydomain
    now:
         inet_interfaces = loopback-only
         mydestination = $myhostname, localhost.$mydomain, localhost, mail.gloaming.com
    Again, this configuration would imply that there are no public mail services.
    Some other odd change occured in the Server/Mail/Config/postfix/main.cf file
    working:
         smtpd     pass  -       -       n       -       -       smtpd
         pickup    fifo  n       -       n       60      1       pickup
              -o content_filter=smtp-amavis:[127.0.0.1]:10024
    now:
         smtpd     pass  -       -       n       -       -       smtpd
              -o receive_override_options=no_address_mappings
         pickup    fifo  n       -       n       60      1       pickup
              -o content_filter=
    Reading through some other posts, I also found another inexplicable change reported by other users having similar problems. The /System/Library/LaunchDaemons/org.postfix.master.plist suddenly changed.
    working:
        <key>OnDemand</key>
        <false/>
        <key>ProgramArguments</key>
        <array>
            <string>master</string>
            <string>-c</string>
            <string>/Library/Server/Mail/Config/postfix</string>
        </array>
    now:
        <key>OnDemand</key>
        <true/>
        <key>ProgramArguments</key>
        <array>
            <string>master</string>
            <string>-c</string>
            <string>/Library/Server/Mail/Config/postfix</string>
            <string>-e</string>
            <string>60</string>
        </array>
    The postfix service is now "OnDemand" with a new, and myserious, "-e 60" option added. (I can find no documentation for an -e option in the postfix control tool.)
    Ultimately, I "fixed" the problem by restoring the backup copy of my entire /Library/Server/Mail/Config folder, the /System/Library/LaunchDaemon/org.postfix.master.plist file, and immedately restarting the server. The mail servers started and everything appears to be normal.
    But this whole experience has made me very learly of the Server app. Why did these configuration changes occur? What settings or circumstances caused them to spontaniously change to an, essentually, unusable state? I'm now afriad of making any changes via Server.app for fear it will decide I shouldn't have a working mail server again.
    If anyone has any insights, I'd ver very interested in hearing them.
    Message was edited by: James Bucanek

  • Can I setup Mail app to access Yahoo mail via IMAP?

    Can I setup Mail app to access Yahoo mail via IMAP? I think that my iPhone is doing this, but what about the Apple Mail app on my Mac? I don't like the fact that the Mac downloads the e-mail messages and removes them from the server, therefore making them inaccessible from Yahoo's online mail or my iPhone.
    I'd like to get to work just like my Mobile Me e-mail... Any thoughts?

    There is an option in the 'Advanced' section of the account setup to delete the messages from the server after a specified period rather than immediately on download; you could leave them for a week or whatever, then they will still be there when the iPhone accesses them.

  • TS3276 My yahoo.co.uk e-mail account has stopped working on my iMac.  Connection doctor states that my connections are OK.  Help.

    My yahoo.co.uk e-mail account has stopped receiving new mail.  I have deleted the account and reinstalled but after receiving a few new e-mails it has stopped working again.   I cannot delete mail and my 'sent' box is empty.   I can access Yahoo mail via the web but would like to continue using Mail.  What setting should I use (my son had a look at the problem and may have altered some specs).   Connection Doctor indicates I am connected OK.  Any suggestions?

    well, everything appears to have resolved itself. Let me put this down in case it is of use to other iphone/gmail types.
    1. apparently I must have had either a lot of different computers/devices accessing gmail at the same time and it locked me out. As sailman says above, what precisely is locked out is a mystery, but in my case it was my pc/outlook, my apple mail 4.1 and my iphone. Web access worked fine
    2. when i ran the https://www.google.com/accounts/DisplayUnlockCaptcha command I had to do it on both my pc and my mac and eventually they came back up. The iphone was last, and took at least 24hours
    3. one thing that google doesn't communicate well is that you can sync your contacts and calendar by setting the iphone up via an exchange account, i.e. http://www.google.com/support/mobile/bin/answer.py?hl=en&answer=138740 . Then you need to set up mail separately by adding it as an "other" type of account - i.e http://mail.google.com/support/bin/answer.py?hl=en&answer=77702

  • ICloud shared photo stream stopped working with new photo app

    iCloud shared photo stream stopped working since the last OX update with the new photo app.  I don't have access anymore to the sharing albums, even those that I own

    iCloud shared photo stream stopped working since the last OX update with the new photo app.  I don't have access anymore to the sharing albums, even those that I own
    Don't the albums show at all?
    Are you signed in  with the same Apple ID that you used with iCloud before?  And are you currently browsing the System Photos Library? Only one Photos library, enabled as the System Photos library can sync with iCloud.
    For me it helped to disable iCloud Photo sharing in the System Preferences > iCloud > Photos > Options
    and in the Photos. app Preferences < iCloud.
    Then restart the Mac and enable the same Preferences again.
    And wait.
    The Shared albums came slowly back and were all back after one day.

  • When I am logged in to iCloud mail via internet browser, why can't I view my sent emails?

    When I am logged in to iCloud mail via internet browser, why can't I view my sent emails?

    Who is the mail provider, what is the mail client, which version of Windows is this.

  • When in e-mail internet explorer stops working, when i click on help it suggests DEP settings

    when in aol mail internet explorer stops working intermitently, any suggestions?

    Its known issue, See:
    * https://bugzilla.mozilla.org/show_bug.cgi?id=713014
    this issue may have been fixed in beta/nightly, you should try it
    * firefox.com/beta

  • HT1349 So everything on this page relates to Apple products. I am running a Sony laptop with Windows and as soon as I install iCloud desktop iTunes has stopped working. The only time I ever needed it. GREAT! Do you do this on purpose?

    So everything on this page relates to Apple products. I am running a Sony laptop with Windows and as soon as I install iCloud desktop iTunes has stopped working. The only time I ever needed it. GREAT! Do you do this on purpose?

    The latest version of iTunes tends to act up occassionaly. See this support document http://support.apple.com/kb/HT1923 and remove and reinstall iTunes. This will not affect your music library, apps or other content in iTunes. Make sure you follow the steps exactly.
    Also, just copying the ringtone will not get it into your phone. iPhone ringtones have an extension of m4r, and you have to first take the Media player file and covert it to an AAC version. From there you need to change the extension from m4a to m4r. If you cannot see file extensions in Windows Explorer, which is actually the default action, go into Organize>Folder and search options, then hit the View tab, and then remove the checkmark by hide file extensions from known file types. After you have created the m4a version and changed the file extension, you can double-click on it and it should show up in the Tones folder in iTunes. From there, sync the phone and it should show up in the list of ringtones.

  • Send Link and Mail To are stop working after update to FF v.13 on WinXP

    Send Link and Mail To where stopped working after upgrade to FF13 on win XP. I'd appreciate any suggestions.
    Thank you in advance

    Can you check to see whether your mailto setting got changed?
    orange Firefox button ''or'' classic Tools menu > Options > Applications
    In the Search box above the list, type or paste '''mailto''' and pause while Firefox filters the list. On the right side, you can select your mail application. Unless it's missing. Are you able to establish the connection?

  • Cannot access iCloud mail via Mail.app

    Starting this afternoon, I have not been able to access my iCloud mail via the Mail.app program on my iMac. I am, however, able to access my iCloud mail via my iPod touch. Is anyone having a similar problem?

    I'm trying to fix this on my husband's Windows 7 machine. Same problem. Rotating gear, page never loads. Would appreciate guidance.
    Thanks!
    Barb

  • Mail and Notes stopped working on my Macbook after 10.8.5 upgrade   iOS7 upgrade

    Hello
    I recently upgraded my system to 10.8.5.
    I also recently upgraded my 2 iphones to iOS7.
    Then i found out my Notes were not syncing on my macbook pro, but the sync works fine on both iphones and when i check the iCloud website, they are also updated.
    Then mail also stopped working and after reading some posts on this forum, i understand that mail and notes are somehow connected (both using IMAP?)..
    I can't configure my iCloud email account on the mail app, i get a "iCloud IMAP « p03-imap.mail.me.com » not responding" answer, whatever i do. I tried deleting the account, deleting all entries linked to the mail app in the keychain, changing my iCloud password to match new apple password requirements.... nothing works.
    And all my other email accounts don't work anymore either. Mail just won't connect with any Imap or Pop server.
    My internet works fine, I can access all those emails account via webmail interfaces.
    Again, my iCloud works fine on all other iOS7 devices.
    What's the problem??
    Thanks
    jk

    Mail.
    Hold down the option key and go to Finder/Go, then select your User Library. Select Containers/com.apple.mail. Move the folder com.apple.mail to your desktop. You must move the entire folder, not just the contents.
    Re-launch Mail and test. If the problem is solved, recreate any required Mail settings and import any emails you want to save from the folder on the desktop. You can then put the folder in the Trash. If the problem remains, return the folder to where you got it replacing the one that is there. 
    Information learned from Linc Davis.

  • Icloud mail sending doesn't work for outlook2010

    I am trying to setup icloud on my PC, but smtp send is not working. I used icloud control panel as well to get the settings. Does anyone know how to fix it? I am using IMAP and receiving works, but sending doesn't work. I tried these settings also: https://discussions.apple.com/thread/3109623?start=0&tstart=0

    Add me to the list.  I can receive fine via IMAP settings but cannot send.  I also set my client up with the same IMAP settings you referenced.
    It had been working for the last week or so fine.
    I'm using Windows Live Mail.

  • Mail 4.6 stopped working in Snow Leopard

    I am running Snow Leopard and Mail version 4.6. I have never had any troubles but starting today I keep getting a login error on the server. I know there is nothing wrong with my email account or password as I can get to my mail with my iPhone or webmail. Has the mail client stopped supporting IMAP to the iCloud mail server?

    I believe the problem is that Apple was having trouble with an authentication server. The problem seems to have resolved itself.

  • Mail with gmail stopped working

    About a week ago my computer stopped downloading my mail from gmail. I can send mail, but it won't receive new mail. I tried deleting the gmail account and adding it again, but that didn't work. I also tried switching it to IMAP instead of POP, but that didn't work either. When I control+click the gmail account and select get info, it says there are no new messages on the server, but I know there are about 90.
    I've tried repairing permissions and that didn't work.
    I have another account for my school mail and it still receives and sends emails perfectly. Only the gmail account is giving me trouble.
    Any ideas?

    Did you upgrade to 10.5.5 just before it stopped working? In my case, I couldn't SEND mail after upgrading. I had to change the smtp port from default to 465, and then it worked again. My son, who also has a macbook, upgraded to 10.5.5, and is on the same network as I am, had no problem. Strange, right?
    Can you try changing the incoming port?

  • Mail on Mac stopped working

    In last 24hrs my mail has stopped working on my Mac Pro. It is an iCloud account. All other accounts are working and the same iCloud account is working on my iPhone and iPad. I notice that the incoming servere info is grayed out wit the p01- infron of the incoming server info. Also, Mail is taking up a huge amount of memory. Also, I cannot delete the drafts of emails I was thinking of sending but couldn't. Thanks

    Hi Roger,
    Yes, thanks for all your help with your very informative links, Apple could (should) learn customer support from you.
    However my wife's MacBookPro was changed over to iCloud a couple of weeks ago as she inherited my iPad 2 when I got a new iPad 3 (mind you it was always a fight as to who got the iPad 2 anyway) Unfortunately even though its still going strong it can't be upgraded to Lion so I went through all your very informative 'how to' when her mail suddenly stopped, as the OP said, due to the password being constantly rejected.
    Having had Apples since 1988 I tried all the usual work abouts and fixes but to no avail and even your 'how to' gets nowhere either and believe me I've tried it three times being especially careful as to what I entered and yes the password is correct as she can get webmail on iCloud and on the iPad 2. 
    As JLStom says its a shame when "Apple help" say that the only thing is to go to Lion knowing full well you have a machine that can't install that version and just give up on you.
    Anyway thanks again for all your help. Apple should appoint you Senior VP of Customer Services.
    Mike

Maybe you are looking for

  • Error while saving the OBIEE repository in AIX

    Hi, In my current project OBIEE is installed on the AIX server.Now I need to migrate the rpd from one DEV to Test instance. When I try to take the back up of the rpd and try to ftp the rpd I get an error-"Permission denied". Has anyone faced this iss

  • Does my external hard drive have to be always connected to my Mac for T.M?

    Hi there, I have a MacBook and I back up my files onto a external hard drive using Time Machine, but when I come to back it up a second time it always say's failed so I have to reformat it and start all over. I was wondering if it needs to be constan

  • Plain J2SE vs DAE vs AEX

    Hi PI/PO experts, I was always having some questions on the topic in the title here though I have been working on them and know some use cases of each of them individually, I still wanted to get more insight into this topic which would help me in dec

  • Clearing the eprint queue after error

    We sent two print jobs to eprint and got an email error message that the printer was not connected. We discovered the IP address was missing and traced that to the cable being disconnected accidentally. That is all cleared now and in the process of t

  • Create a New Calc Script from VB.

    Does anyone know how to create a calc script using the VB Essbase API? We are going thru a large modification. Most of our calc scripts are stored on an oracle database. The idea is to send the stored scripts to a text file and then using the essbase