You can make a difference in the Apple Support Community!

When you sign up with your Apple Account, you can provide valuable feedback to other community members by upvoting helpful replies and User Tips.

Looks like no one’s replied in a while. To start the conversation again, simply ask a new question.

Mail not working after update OS X 10.10.4 and IOS 8.4

Hi everyone,

Yesterday, after upgrading to OS X 10.10.4 in my Mac and IOS 8.4 in my Ipad and Iphone, the Apple Mail stop working in all devices. It does not receive mails anymore.

Any lead on how to solve this?

Thanks in advance.

Regards.



Mario

Posted on Jul 1, 2015 5:51 AM

Reply
117 replies

Jul 6, 2015 4:11 AM in response to MaEdCaSa

OK, what I did (not mentioned in this thread so far) was to delete the saved state file. I saw this somewhere else, tried it and it worked for me. The reason I wrote a script is that I have to do it *every* time I run Mail or it will hang again.


To do this, I created a bash script mymail.sh and run it instead of Mail:


#!/bin/bash

cd ~/Library/Containers/com.apple.mail/Data/Library/Saved\ Application\ State

rm -R -f com.apple.mail.savedState

open /Applications/Mail.app


and that worked for me.


Just this morning, I forgot and opened Mail the normal way and of course it hung. After a force quit, I tried again and it still hung. The problem was multiple Mail tasks still running after the main Mail program was force quit. You can view them from the command line:


ps auxw | egrep -i mail

fredlaxton 66117 0.0 0.1 2543040 13784 ?? S 6:50AM 0:00.11 /System/Library/Frameworks/CoreServices.framework/Frameworks/Metadata.framework /Versions/A/Support/mdworker -s mdworker-mail -c MDSImporterWorker -m com.apple.mdworker.mail

fredlaxton 66116 0.0 0.1 2552540 14000 ?? S 6:50AM 0:00.12 /System/Library/Frameworks/CoreServices.framework/Frameworks/Metadata.framework /Versions/A/Support/mdworker -s mdworker-mail -c MDSImporterWorker -m com.apple.mdworker.mail

fredlaxton 66115 0.0 0.1 2543040 13856 ?? S 6:50AM 0:00.12 /System/Library/Frameworks/CoreServices.framework/Frameworks/Metadata.framework /Versions/A/Support/mdworker -s mdworker-mail -c MDSImporterWorker -m com.apple.mdworker.mail

fredlaxton 66114 0.0 0.1 2543040 14128 ?? S 6:50AM 0:00.14 /System/Library/Frameworks/CoreServices.framework/Frameworks/Metadata.framework /Versions/A/Support/mdworker -s mdworker-mail -c MDSImporterWorker -m com.apple.mdworker.mail

fredlaxton 1692 0.0 0.1 2584360 19524 ?? S 4:33PM 0:00.32 /System/Library/PrivateFrameworks/MailService.framework/Versions/A/XPCServices/ com.apple.MailServiceAgent.xpc/Contents/MacOS/com.apple.MailServiceAgent


so I killed them manually from the command line by specifying the task number (the second column):


sudo kill 66117 66116 66115 66114 1692


and then verified by running:


ps auxw | egrep -i mail


again, which only showed itself (the egrep command).


Now when I run my bash script, Mail starts and acts normally, including sending and receiving email...

Jul 6, 2015 6:00 AM in response to David Goodall

The shift key solution does not work for me either. Seems to work for when the mail app crashes or hangs up. I can't send or receive, but the Mail app opens fine, shows old mail, lets me open archived mailboxes etc.


The connection doctor in the App is showing red on connecting to both the incoming and outgoing servers of my ISP.


Checking or unchecking Automatically detect and maintain account settings has not helped. I created another user account and configured the mail app manually. Connection doctor shows red here also.


Downloaded Thunderbird and configured it. This did work.


Problem seem related to the update. It is Version 8.2 (2102) correct?


Jim

Jul 6, 2015 11:27 AM in response to MaEdCaSa

From my ISP:


"The most recent Apple update has adjusted a few of the outgoing SMTP mail settings which is required to send mail."

They then set out my settings - these may be different from yours, so check with your ISP - but these worked.

I deleted the old SMTP server, then as follows:

Outgoing server: [as your server]

Outgoing server port: 587

SSL: Off


Allow insecure authentication: on


Authentication: Password

Username: [as per your settings]

Password: [as per your settings]

Jul 6, 2015 11:31 AM in response to MaEdCaSa

I updated my macbook pro the other day to 10.10.4 and my email crashes almost immediately upon opening the app. I click on any email and it crashes. I try to switch to another account and it crashes. Very frustrating. I tried going into mail preferences and accounts to try someone else's advice and it crashes as well.

Jul 6, 2015 5:44 PM in response to MaEdCaSa

i had to tweak my servers for other reasons and i think i have found the underlying cause. the new ios code (and probably macos as well) has activated a new feature that doesn't like talking with systems doing diffie hellman (dh) ciphers with less that 768 bits for the random generator. i updated my servers to 1024 to deal with a new openssl release and suddenly the iphone was happy again.


i hope there are some other folks on this issue that runs servers and can see if this does fix the issue.


i have confirmed this with another server and set of apple devices.


this really makes sense because i imagine that apple is using the new openssl library that has this restriction, but there are still a lot of servers running older sendmail that defaults to 512 bits. anyone having this problem, contact their isp and tell them to google about for sendmail, dhparam, 512 and to update their servers.

Jul 6, 2015 11:43 PM in response to MaEdCaSa

NOTE: I fixed the Sending Issue on Server side.


I've had the same issue as all (10.10.4), but the issue was on the Mail Server, not Apple Mail. This was a big pain, but I was able to fix the issue on the Mail Server side (since I'm the administrator). This post is for Mail Server Administrators using Sendmail.


Sendmail server on CentOS / Linux:

I added the following to the /etc/mail/sendmail.mc file before re-make (make -C /etc/mail) and restart of sendmail only (service sendmail restart). It instantly worked:


dnl # Added to resolve issues with Mac Mail

define(`confDH_PARAMETERS',`/etc/mail/certs/dh_2048.pem')

Before you do that, create the dh_2048.pem file using (openssl gendh -out dh_2048.pem -2 2048) in the relevant path (/etc/mail/certs or what you use).


I hope this helps,


Regards,

Peet

Mail not working after update OS X 10.10.4 and IOS 8.4

Welcome to Apple Support Community
A forum where Apple customers help each other with their products. Get started with your Apple Account.