Could not send mails from iPad nor from iMac

Hello,
very strange. I use Maverick and iCloud. With Mail on my iPad (latest update installed) and on my iMac I cannot send any mail. I receive mails and using iCloud in Safari on my iMac works fine and I also see the sent mails on my iPad and on my iMac.
Any idea?
Michael

Just some more information.
If I check the connection Mail says that the IMAP connection to iCloud is okay and working. But no mail leaves Mail, they stay in the outbox.
I got my to be send mail back on the screen and a window with the message, that there is a time overrun for server „p04-smtp.mail.me.com“ and I should try another server (have e.g. GMX) or try later. Later and e.g. GMX doesn't work either.
Any help is really appreciated.
Thanks in advance.

Similar Messages

  • Could not send mail using outlook when tethered (m...

    I have had a problem for a long time where I could not send email from my laptop when connected to the internet via a hotspot on my 3 mobile phone.
    After a long conversation with three where we determined that if I used three's SMTP server settings I could send email no problem, but once I was back on wifi i had to change my settings back to the BT settings (mail.btinternet.com), I decided to try and tackle BT support to get a resolution to the issue.
    I knew this would be challenge and that I would end up speaking to someone who could speak english but actually didn't really understand it, and Bt didn't disappoint!!
    I had a long online chat where it was explained to me that if I was connected via my 3g/4g connection I would have to use my providers SMTP because that is just the way it is. O.k. what did I expect!!
    Anyway I am just posting here so if anyone has the same problem I may be able to help you as I have now managed to get this up and running. How?? I hear you ask.
    In my case I used the mail checker on BT to see who's mail service I was with and it varified I was still with BT yahoo rather than BT Mail.
    I decided to try the yahoo setting for the SMTP server rather than the stock mail.btinternet.com and I am now up and running.
    My SMTP Setting is now -  smtp.mail.yahoo.co.uk (port 465 with SSL)
    Hope this helps someone else as I just could not find an answer by googling the issue.

    There is absolutely no reason why it shouldn't work using mail.btinternet.com port 465 with SSL. Works fine for me, albeit on O2 rather than Three, but the principle is the same.

  • Gmail Could not Send Mail

    Hi,
    I've wrote a code to send a mail to recepient from my gmail account.
    My Code is as below:
    import java.io.*;
    import java.security.Security;
    import java.net.*;
    import java.sql.*;
    import java.util.Properties;
    import javax.mail.*;
    import javax.mail.internet.*;
    import javax.servlet.*;
    import javax.servlet.http.*;
    import javax.activation.*;
    public void sendMail(String mailTo, String text)
          String host = "smtp.gmail.com";
          String port = "465";
          String ssl_factory = "javax.net.ssl.SSLSocketFactory";
         final String from = "[email protected]";
          String to = mailTo;
          String user_name = "my_id";
         final String pass = "mypass";
          Security.addProvider(new com.sun.net.ssl.internal.ssl.Provider());
          Properties prop = new Properties();
          prop.put("mail.smtp.host", host);
          prop.put("mail.smtp.auth", "true");
          prop.put("mail.debug", "true");
          prop.put("mail.smtp.port", port);
          prop.put("mail.smtp.socketFactory.port", port);
          prop.put("mail.smtp.socketFactory.class", ssl_factory);
          prop.put("mail.smtp.socketFactory.fallback", "true");
          prop.put("mail.smtp.user",user_name);
          Session ses = Session.getDefaultInstance(prop,
                 new javax.mail.Authenticator(){
             protected javax.mail.PasswordAuthentication getPasswordAuthentication(){
                return new javax.mail.PasswordAuthentication(from,pass);
          ses.setDebug(true);
          MimeMessage msg = new MimeMessage(ses);
          try
             msg.setFrom(new InternetAddress(from));
             msg.setRecipient(Message.RecipientType.TO, new InternetAddress(to));
             msg.setSubject("Password has been set");
             msg.setText("Your new password has been set to: "+text);
             Transport.send(msg);
          catch(Exception ex2)
                ex2.printStackTrace();
       }I Call this method in my Servlet to send reset password to appropriate
    person. Now problem is it is showing error message as below:
    (javax.mail.MessagingException)javax.mail.MessagingException:
    Could not connect to SMTP host: smtp.gmail.com, port:465;
    nested exception is:
    java.net.ConnectionException: Connection timed out: connect
    I've gone thru JavaMail API FAQ, but couldn't find the solution.
    Please help me.
    Thanks.

    The key information is this:
    java.net.ConnectionException: Connection timed out: connectThe JavaMail FAQ has tips for debugging connection problems, start there.
    Possibly someone has changed your firewall configuration to
    prevent such connections.

  • Could not send email to group in my iMac Cloud

    due to: they kept saying found 1 or more invalid addresses.  I could not understand why does it happened.  All my contacts have corrected addresses, when I send one each email and it sent alright but not in group.

    If you don't like the new ways that iPhoto handles emailing then you can access the old way with a small change in how you work:
    1. Drag the pics from the iPhoto Window to the Mail icon in the Dock.
    or
    2. Use the Photo browser in Mail - or any Media browser in the entire OS
    Uploaded with plasq's Skitch!
    You can then resize the image in the iPhoto Window
    Uploaded with plasq's Skitch!
    Finally, you can make a simple OS Service to to automate the procedure. For more on this have a read of this:
    http://discussions.apple.com/thread.jspa?threadID=2627690&tstart=0
    Regards
    TD

  • Could not send mail through smtp

    try
    props.put("mail.smtp.host", this.getSmtpHost());
    props.put("mail.transport.protocol", "smtp");
    props.put("mail.server", this.getSmtpHost());
    mailConnection = Session.getInstance(props, null);
    mailConnection.setDebug(true);
    trans = mailConnection.getTransport();
    msg = new MimeMessage(mailConnection);
    Date date = new Date();
    msg.setSentDate(date); // sets sent date for the message
    msg.setFrom(from);
    msg.setSubject(this.getSubject());
    MimeBodyPart html = new MimeBodyPart();
    to = new InternetAddress(this.getToAddress());
    msg.setRecipient(Message.RecipientType.TO, to);
    text.setContent(messageContent, "text/plain");
    text.setDisposition(Part.INLINE);
    mp.addBodyPart(text, 0);
    msg.setContent(mp);
    msg.saveChanges();
    trans.sendMessage(msg, msg.getAllRecipients());
    catch (Exception ex)
    ex.printStackTrace();
    this gives the following error message
    DEBUG: getProvider() returning javax.mail.Provider[TRANSPORT,smtp,com.sun.mail.smtp.SMTPTransport,Sun Microsystems, Inc]
    java.lang.IllegalStateException: Not connected
         at com.sun.mail.smtp.SMTPTransport.checkConnected(SMTPTransport.java:985)
         at com.sun.mail.smtp.SMTPTransport.sendMessage(SMTPTransport.java:286)
         at emailmerge.SendEmail1.sendMail(SendEmail1.java:239)
         at emailmerge.EmFrm.jButSend_actionPerformed(EmFrm.java:1613)
         at emailmerge.EmFrm_jButSend_actionAdapter.actionPerformed(EmFrm.java:2649)
         at javax.swing.AbstractButton.fireActionPerformed(AbstractButton.java:1453)
         at javax.swing.AbstractButton$ForwardActionEvents.actionPerformed(AbstractButton.java:1507)
         at javax.swing.DefaultButtonModel.fireActionPerformed(DefaultButtonModel.java:373)
         at javax.swing.DefaultButtonModel.setPressed(DefaultButtonModel.java:245)
         at javax.swing.plaf.basic.BasicButtonListener.mouseReleased(BasicButtonListener.java:211)
         at com.apple.mrj.swing.ThemeButtonListener.mouseReleased(ThemeButtonListener.java:111)
         at java.awt.Component.processMouseEvent(Component.java:3711)
         at java.awt.Component.processEvent(Component.java:3540)
         at java.awt.Container.processEvent(Container.java:1159)
         at java.awt.Component.dispatchEventImpl(Component.java:2589)
         at java.awt.Container.dispatchEventImpl(Container.java:1208)
         at java.awt.Component.dispatchEvent(Component.java:2493)
         at java.awt.LightweightDispatcher.retargetMouseEvent(Container.java:2446)
         at java.awt.LightweightDispatcher.processMouseEvent(Container.java:2211)
         at java.awt.LightweightDispatcher.dispatchEvent(Container.java:2120)
         at java.awt.Container.dispatchEventImpl(Container.java:1195)
         at java.awt.Window.dispatchEventImpl(Window.java:966)
         at java.awt.Component.dispatchEvent(Component.java:2493)
         at java.awt.EventQueue.dispatchEvent(EventQueue.java:334)
         at java.awt.EventDispatchThread.pumpOneEventForHierarchy(EventDispatchThread.java:126)
         at java.awt.EventDispatchThread.pumpEventsForHierarchy(EventDispatchThread.java:93)
         at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:88)
         at java.awt.EventDispatchThread.run(EventDispatchThread.java:80)
    can any one suggest the remedy please
    Regards,
    AS

    transport.send(msg)
    throws the similar exception and authentication on the smtp is not required for my case
    As such i get connection to smtp. The exception is thrown only when i try to send the message
    Regards,
    AS

  • HT6030 I downloaded Mail Update for Mac OS X 10.5.6 and was told it could not be installed because it was from an unidentified developer.  Tried installing download from MailUpdate & advised the disk did not meet the requirements for update. Hmmmm.

    I downloaded Mail Update for Mac OS X 10.5.6 and was told it could not be installed because it was from an unidentified developer.  Tried installing download from MailUpdate & advised the disk did not meet the requirements for update.   Expect it's due to being at 10.9.1.  Mail is still teetering between dysfunctional and non-functional.  Advice?

    I'm not sure what "Mail Update for Mac OS X 10.5.6" is. Mac OS X 10.5.6 is Leopard, a system that is quite old at this point. There have not been any Mail updates for Leopard in quite some time. If you are trying to install some old Mail update for Mac OS X 10.5.6 in Mavericks, that won't work.
    If you are trying to install the Mavericks Mail update manually, that's not necessary if you have updated through the App Store. If the App Store shows no updates, you don't need this. (The error message doesn't make sense, and may indicate some other problem with your system, assuming that you were downloading this update from Apple's site.)
    I'd advise you to start a new topic in the Mavericks forum and describe the problems you are having with Mail. Be sure to include specifics, but try to avoid speculating on causes, as responses that may be related to an inaccurate assumption on your part can cloud the issue.

  • Itunes could not connect to the ipad because an invalid response was received from the device

    Hello
    I just installed the maximus v extreme motherboard with a ocz vertex 4 ssd with windows 7 x64. Installation was fine and installing drivers went without a hitch. Re-installing the software i use went fine as well.
    However, when i went to use iTunes( v10.7) to sync my ipad i got an error message saying:
    "Itunes could not connect to the ipad because an invalid response was received from the device"
    I then connected my ipod nano to see if it will cause the same error, but it worked fine. So i tried an iphone and the same error I got for my ipad came up.
    I tried reinstalling the usb drivers, but the same error came up. I also updated BIOS to the latest version, but the error still came up. I also reinstalled itunes numerous times and still got the error. I reinstalled and updated all drivers as well. Again this did not fix the issue. I also tried to run itunes in vista compatability and xp compatability mode. Again this did not fix the issue.
    I have also followed all the steps apple recommends to do on their website with regards to this issue, again it did not fix the issue.
    It is a real pain as everything else works like a dream! Is there anything i can do to get itunes to work properly on my pc?
    Thank you for your help!
    System specs:
    asus rampage v extreme motherboard
    OCZ vertex 4 SSD
    8 Gb DDR3 RAM (1600 mHz)
    windows7 x64
    Intel i7 3.5Ghz 1155
    nvidia GTX295  (x2 running in Sli)

    I fixed this problem.  Believe the problem is iOS 7 incompatibility with older iTunes Versions on older MacOS systems or platforms.
    My iPad 2 would no longer sync with my old  PowerPC Mac mini running MacOS. My iPhone 3GS synced fine.  IPad2 updated to iOS 7 which doesn't run on my iPhone 3GS. Error message for iPad sync problem was "invalid response received from iPad" out of iTunes.  I then applied update iOS 7.1.2 to iPad and error message changed to indicate this version of iTunes not supported, use 11.1.
    iPad 2 used to sync prior to iOS 7 installation. 
    Research on Apple web site shows iOS 7 on iPhones and iPads does not support older MacOS and iTunes versions.
    Upgraded with new Mac mini and iTunes 11.1 and MacOS 10.9.2. (put this off as long as I could.  )
    all good now.

  • TS5185 Hi After I have report a junk message I coudl not get Imessge from other iphone. and could not send any message in blue color but green which need to pay for.

    Hi After I have report a junk message to 7726, I coudl not get Imessge from other iphones. and could not send any message in blue color but green which need to pay for. Does Apple blocked my imessage ? I have checked the setting. imessage is on.
    Thanks,
    J

    Make sure that your date and time settings and time zone are accurate (Settings - General - Date and Time). Reset your phone to 'Set Automatically' and then try signing in again - this worked for me.  My date/time settings were not automatic (candy crush cheats!!).

  • How can I upload photos from ipad onto facebook whithout using adobe flash player which I could not download onto my ipad?

    How can I upload photos from ipad onto facebook whithout using adobe flash player which I could not download onto my ipad?

    http://www.google.com/search?q=upload+photos+to+facebook+from+ipad

  • HT2500 without changing settings, iMac mail V4.6, 1)will not save password 2)takes accounts offline 3)will not except password 4)will not send mail from accounts every time.     What happen?

    without changing settings, iMac mail V4.6,  1)will not save password   2)takes accounts offline  3)will not except password   4)will not send mail from accounts every time.
        What happen?  How do I correct this?

    Hi Nuch1,
    I found an article that is contains very thorough Mail troubleshooting steps:
    OS X Mail: Troubleshooting sending and receiving email messages
    http://support.apple.com/kb/TS3276
    You can use that article to figure out what part of the email "ecosystem" is the cause of the issue, and it can also help you attempt to resolve it.
    Hope that helps,
    David

  • I bought my ipad from ksa and am from egypt .. my ipad connected to the itunes in ksa but from someone else laptop and i came here to egypt and it says itunes could not connect to this ipad becuz an unknown error :S what should i do please someone tell me

    i bought my ipad from ksa and am from egypt .. my ipad connected to the itunes in ksa but from someone else laptop and i came here to egypt and it says itunes could not connect to this ipad becuz an unknown error :S what should i do please someone tell me !!?

    Your iPad is syncd with iTunes on your computer and your iTunes account controls what's in your iPad.   Previously it must have been sync'd with another person's iTunes account in which case you need to completely clear it out to make it your own.
    Go to Settings > General > Reset (at bottom) > Erase All Content and Settings
    Then plug it into your computer and restore it with YOUR iTunes account.
    Or if your have an iTunes account already setup under your name with your own apps and media -
    Plug it into your computer, open iTunes if it doesn't open automatically and on your iPad page, click Restore
    Let it proceed.  Then the iPad will no longer be looking for someone else's account.

  • Error message "itunes could not connect to the ipad because an invalid response was received from the device".

    Hi, I am having problems with itunes and my ipad........
    I can use my ipad on my laptop but it will not connect to my main PC, I get the error message:
    "itunes could not connect to the ipad because an invalid response was received from the device"
    I have done all the Apple support ideas including re-installing itunes twice but no joy.
    It used to work a week or so ago and no, I can't think of anything I have done which would have stopped it.
    I have run msconfig and disabled everything but still no connection.
    Anyone got any ideas?????

    iPad not appearing in iTunes
    http://www.apple.com/support/ipad/assistant/itunes/
    iOS: Device not recognized in iTunes for Mac OS X
    http://support.apple.com/kb/TS1591
    iOS: Device not recognized in iTunes for Windows
    http://support.apple.com/kb/TS1538
    iTunes for Windows: iTunes can't contact the iPhone, iPad, or iPod software update server
    http://support.apple.com/kb/ts1814
    iTunes for Windows: Device Sync Tests
    http://support.apple.com/kb/HT4235
    IOS: Syncing with iTunes
    http://support.apple.com/kb/HT1386
    Apple - Support - iPad - Syncing
    http://www.apple.com/support/ipad/syncing/
    iTunes 10.5 and later: Troubleshooting iTunes Wi-Fi Syncing
    http://support.apple.com/kb/ts4062
     Cheers, Tom
    Did you get an error message number? See this similar post.
    https://discussions.apple.com/message/24102115#24102115

  • Alias address from iCloud alias address cannot be used to send mails via iPad

    Alias address from iCloud alias address cannot be used to send mails via iPad

    If you still have this concern: You can only use the alias address linked to the main iCloud account that you backup your iPad to. You can check that going to Setting-iCloud and check the Account email address.
    I think this restriction is rather rediculous. I don't see why we can't configure an alias from a different iCloud account the same way we do for a Gmail account. I hope Apple fixes this in iOS 6.

  • Mail 10.8.3 not sending mail from intended account

    Since upgrading from 10.8.2 to 10.8.3, my wife is having a new problem where Mail is not sending mail from the intended account. 
    She has 2 mail acocunts, and normally sends most e-mail from one of them.  That mail account is set as the default to send messages from. 
    Now when she composes messages, it sends them from the other account, even if she has made certain that the pull-down choice of "send message as..." is set to the correct/desired mail account.
    The only way she was able to stop this was to deactivate the other e-mail account in Mail's preferences.
    Is anyone else having this problem?

    Hi.
    Please click on the Mail > Prefrence > Account.
    then click on the first account on the left side & Uncheck the option 'Use onlythis server'
    repeat the step for the second account aswell.
    this should fix your issue.
    Kind regards,
    Ayaz

  • I want to download face time on iPad 2 I could not find it a bought it from Dubai and am living in canada

    I want to download face time on iPad 2 I could not find it a bought it from Dubai and am living in canada

    You cannot get it ever.
    Your iPads serial number is blocked because you bought it in a country that does not allow FaceTime.
    No matter where you go, you can not get it.

Maybe you are looking for

  • Search issue with Outlook 2010 SP2 in Online mode

    We are dealing with a weird issue that started after a routine maintenance window this past week.  We took our Exchange 2010 server down while we performed maintenance on our SANs.  After bring the servers back up we have developed an issue in Outloo

  • Issues with Account Balance Report in chart of accounts

    Dear All, What i need is to bring remarks of all the documents,in ref2 column of Account Balance Report. What i thought is to create a new report but for that the i need to find the object id of the corresponding documents from orgin no column and fe

  • Proforma Invoice Billing Qty CO-PA

    Hi, We have used BAPI to flow Proforma Invoice Billing Qty & Revenue to CO-PA through KE21n. We have developed other CO-PA in ke35 to capture other proforma invoice billing qty & value field. But billing qty of proforma is also reflecting in other co

  • Question on best practice/optimization

    So I'm working with the Custom 4 dimension and I'm going to be reusing the highest member in the dimension under several alternate hierarchies. Is it better to drop the top member under each of the alternate hierarchies or create a single new member

  • Adobe Form built in designer to redirect to FTP Server

    Hello: I had created a Adobe form connected to a MIcrosoft Database which will provide data connections and import data into the access database. As the information in the PDF form is used to populate a application, I would like to have the form when