Not Getting Any Mac Mail

Hi all,
I know there's lots of similar items posted but I have the same problem that I can't seem to fix, would appreciate some input - thanks!
Basically one minute I was getting mail on my Mac, the next I'm not and it errors, I can log in via the web no problem and read and reply to mail but our internet connection is not the fastest, so it's a struggle.
I have tried sending myself a test email but it just times out and says "Cannot send message using the server smtp.mac.com" Have tried changing the port from 25 to 587 and unchecking the SSL setting but still no joy. And have tried using the Connection Doctor but get more "Could not connect" messages on both the email address and the smtp.
All I did recently was installed a couple of OSX updates and restarted, since then (could be a coincidence) I no longer get mail.
Can anyone shed any light?
Thanks!

Hi s1mon.
Depending on what it is that you really mean, the following two statements can or cannot both be true. Could you please clarify?
Basically one minute I was getting mail on my Mac, the next I'm not and it errors
All I did recently was installed a couple of OSX updates and restarted, since then (could be a coincidence) I no longer get mail.It looks like there is a problem with either the network or the server. Go to Apple Menu > System Preferences > Network, choose Network Port Configurations from the Show popup menu, and make sure that the configuration used to connect to Internet appears at the top of the list.
Also, try using a different method to connect to Internet, if possible, or connecting the computer to Internet as directly as possible, i.e. bypassing any routers that might be present, using an ethernet cable instead of wireless, etc., and see whether that makes a difference.
Try this to determine the scope of the problem:
1. Go to Apple Menu > System Preferences > Accounts, and create a new user account for testing purposes.
2. Either log out of your main user account or just quit Mail so that it does not interfere with the other user account.
3. Log in as the newly created user and set up Mail anew there.
4. Check whether the problem also happens when logged in as another user.
If the problem happens there as well, you may want to report the problem to .Mac email support in case there is a problem with your account at their end.

Similar Messages

  • I am not getting any e-mail in inbox

    Hello Experts,
    I have created 1 report at localobject and i am sending resulat via e-mail with attachment(EXCEL or TXT).
    But I m not getting e-mail to my mail box even I am getting success message from function
    SO_NEW_DOCUMENT_ATT_SEND_API1
    Is ther any configuration needed?
    Points awarded soon.
    Regards,
    Nimesh

    *& Report  ZEMAIL_ATTACH                                               *
    *& Example of sending external email via SAPCONNECT                    *
    REPORT  ZEMAIL_ATTACH                   .
    TABLES: ekko.
    PARAMETERS: p_email   TYPE somlreci1-receiver
                                      DEFAULT '[email protected]'.
    TYPES: BEGIN OF t_ekpo,
      ebeln TYPE ekpo-ebeln,
      ebelp TYPE ekpo-ebelp,
      aedat TYPE ekpo-aedat,
      matnr TYPE ekpo-matnr,
    END OF t_ekpo.
    DATA: it_ekpo TYPE STANDARD TABLE OF t_ekpo INITIAL SIZE 0,
          wa_ekpo TYPE t_ekpo.
    TYPES: BEGIN OF t_charekpo,
      ebeln(10) TYPE c,
      ebelp(5)  TYPE c,
      aedat(8)  TYPE c,
      matnr(18) TYPE c,
    END OF t_charekpo.
    DATA: wa_charekpo TYPE t_charekpo.
    DATA:   it_message TYPE STANDARD TABLE OF solisti1 INITIAL SIZE 0
                    WITH HEADER LINE.
    DATA:   it_attach TYPE STANDARD TABLE OF solisti1 INITIAL SIZE 0
                    WITH HEADER LINE.
    DATA:   t_packing_list LIKE sopcklsti1 OCCURS 0 WITH HEADER LINE,
            t_contents LIKE solisti1 OCCURS 0 WITH HEADER LINE,
            t_receivers LIKE somlreci1 OCCURS 0 WITH HEADER LINE,
            t_attachment LIKE solisti1 OCCURS 0 WITH HEADER LINE,
            t_object_header LIKE solisti1 OCCURS 0 WITH HEADER LINE,
            w_cnt TYPE i,
            w_sent_all(1) TYPE c,
            w_doc_data LIKE sodocchgi1,
            gd_error    TYPE sy-subrc,
            gd_reciever TYPE sy-subrc.
    *START_OF_SELECTION
    START-OF-SELECTION.
      Retrieve sample data from table ekpo
      PERFORM data_retrieval.
      Populate table with detaisl to be entered into .xls file
      PERFORM build_xls_data_table.
    *END-OF-SELECTION
    END-OF-SELECTION.
    Populate message body text
      perform populate_email_message_body.
    Send file by email as .xls speadsheet
      PERFORM send_file_as_email_attachment
                                   tables it_message
                                          it_attach
                                    using p_email
                                          'Example .xls documnet attachment'
                                          'XLS'
                                          'filename'
                                 changing gd_error
                                          gd_reciever.
      Instructs mail send program for SAPCONNECT to send email(rsconn01)
      PERFORM initiate_mail_execute_program.
    *&      Form  DATA_RETRIEVAL
          Retrieve data form EKPO table and populate itab it_ekko
    FORM data_retrieval.
      SELECT ebeln ebelp aedat matnr
       UP TO 10 ROWS
        FROM ekpo
        INTO TABLE it_ekpo.
    ENDFORM.                    " DATA_RETRIEVAL
    *&      Form  BUILD_XLS_DATA_TABLE
          Build data table for .xls document
    FORM build_xls_data_table.
      CONSTANTS: con_cret(02) TYPE C VALUE '0D',  "OK for non Unicode
                 con_tab(02) TYPE C VALUE '09'.   "OK for non Unicode
    *If you have Unicode check active in program attributes thnen you will
    *need to declare constants as follows
    *class cl_abap_char_utilities definition load.
    *constants:
       con_tab  type c value cl_abap_char_utilities=>HORIZONTAL_TAB,
       con_cret type c value cl_abap_char_utilities=>CR_LF.
      CONCATENATE 'EBELN' 'EBELP' 'AEDAT' 'MATNR'
             INTO it_attach SEPARATED BY con_tab.
      CONCATENATE con_cret it_attach  INTO it_attach.
      APPEND  it_attach.
      LOOP AT it_ekpo INTO wa_charekpo.
        CONCATENATE wa_charekpo-ebeln wa_charekpo-ebelp
                    wa_charekpo-aedat wa_charekpo-matnr
               INTO it_attach SEPARATED BY con_tab.
        CONCATENATE con_cret it_attach  INTO it_attach.
        APPEND  it_attach.
      ENDLOOP.
    ENDFORM.                    " BUILD_XLS_DATA_TABLE
    *&      Form  SEND_FILE_AS_EMAIL_ATTACHMENT
          Send email
    FORM send_file_as_email_attachment tables pit_message
                                              pit_attach
                                        using p_email
                                              p_mtitle
                                              p_format
                                              p_filename
                                              p_attdescription
                                              p_sender_address
                                              p_sender_addres_type
                                     changing p_error
                                              p_reciever.
      DATA: ld_error    TYPE sy-subrc,
            ld_reciever TYPE sy-subrc,
            ld_mtitle LIKE sodocchgi1-obj_descr,
            ld_email LIKE  somlreci1-receiver,
            ld_format TYPE  so_obj_tp ,
            ld_attdescription TYPE  so_obj_nam ,
            ld_attfilename TYPE  so_obj_des ,
            ld_sender_address LIKE  soextreci1-receiver,
            ld_sender_address_type LIKE  soextreci1-adr_typ,
            ld_receiver LIKE  sy-subrc.
      ld_email   = p_email.
      ld_mtitle = p_mtitle.
      ld_format              = p_format.
      ld_attdescription      = p_attdescription.
      ld_attfilename         = p_filename.
      ld_sender_address      = p_sender_address.
      ld_sender_address_type = p_sender_addres_type.
    Fill the document data.
      w_doc_data-doc_size = 1.
    Populate the subject/generic message attributes
      w_doc_data-obj_langu = sy-langu.
      w_doc_data-obj_name  = 'SAPRPT'.
      w_doc_data-obj_descr = ld_mtitle .
      w_doc_data-sensitivty = 'F'.
    Fill the document data and get size of attachment
      CLEAR w_doc_data.
      READ TABLE it_attach INDEX w_cnt.
      w_doc_data-doc_size =
         ( w_cnt - 1 ) * 255 + STRLEN( it_attach ).
      w_doc_data-obj_langu  = sy-langu.
      w_doc_data-obj_name   = 'SAPRPT'.
      w_doc_data-obj_descr  = ld_mtitle.
      w_doc_data-sensitivty = 'F'.
      CLEAR t_attachment.
      REFRESH t_attachment.
      t_attachment[] = pit_attach[].
    Describe the body of the message
      CLEAR t_packing_list.
      REFRESH t_packing_list.
      t_packing_list-transf_bin = space.
      t_packing_list-head_start = 1.
      t_packing_list-head_num = 0.
      t_packing_list-body_start = 1.
      DESCRIBE TABLE it_message LINES t_packing_list-body_num.
      t_packing_list-doc_type = 'RAW'.
      APPEND t_packing_list.
    Create attachment notification
      t_packing_list-transf_bin = 'X'.
      t_packing_list-head_start = 1.
      t_packing_list-head_num   = 1.
      t_packing_list-body_start = 1.
      DESCRIBE TABLE t_attachment LINES t_packing_list-body_num.
      t_packing_list-doc_type   =  ld_format.
      t_packing_list-obj_descr  =  ld_attdescription.
      t_packing_list-obj_name   =  ld_attfilename.
      t_packing_list-doc_size   =  t_packing_list-body_num * 255.
      APPEND t_packing_list.
    Add the recipients email address
      CLEAR t_receivers.
      REFRESH t_receivers.
      t_receivers-receiver = ld_email.
      t_receivers-rec_type = 'U'.
      t_receivers-com_type = 'INT'.
      t_receivers-notif_del = 'X'.
      t_receivers-notif_ndel = 'X'.
      APPEND t_receivers.
      CALL FUNCTION 'SO_DOCUMENT_SEND_API1'
           EXPORTING
                document_data              = w_doc_data
                put_in_outbox              = 'X'
                sender_address             = ld_sender_address
                sender_address_type        = ld_sender_address_type
                commit_work                = 'X'
           IMPORTING
                sent_to_all                = w_sent_all
           TABLES
                packing_list               = t_packing_list
                contents_bin               = t_attachment
                contents_txt               = it_message
                receivers                  = t_receivers
           EXCEPTIONS
                too_many_receivers         = 1
                document_not_sent          = 2
                document_type_not_exist    = 3
                operation_no_authorization = 4
                parameter_error            = 5
                x_error                    = 6
                enqueue_error              = 7
                OTHERS                     = 8.
    Populate zerror return code
      ld_error = sy-subrc.
    Populate zreceiver return code
      LOOP AT t_receivers.
        ld_receiver = t_receivers-retrn_code.
      ENDLOOP.
    ENDFORM.
    *&      Form  INITIATE_MAIL_EXECUTE_PROGRAM
          Instructs mail send program for SAPCONNECT to send email.
    FORM initiate_mail_execute_program.
      WAIT UP TO 2 SECONDS.
      SUBMIT rsconn01 WITH mode = 'INT'
                    WITH output = 'X'
                    AND RETURN.
    ENDFORM.                    " INITIATE_MAIL_EXECUTE_PROGRAM
    *&      Form  POPULATE_EMAIL_MESSAGE_BODY
           Populate message body text
    form populate_email_message_body.
      REFRESH it_message.
      it_message = 'Please find attached a list test ekpo records'.
      APPEND it_message.
    endform.                    " POPULATE_EMAIL_MESSAGE_BODY
    Also check the following link
    send PDF-Spool via email-Attachment
    http://www.sap-basis-abap.com/abap011.htm
    Reward if useful.

  • I am not getting a confirmation mail for our newly registered account. What can i do to get it changed?

    Hi Team,
    I registered this account https://addons.mozilla.org/en-US/firefox/user/6043725/ but am not getting any confirmation-mail to [email protected]
    I already reported this profile several times in order to have the email-address changed.
    Can you please change it to [email protected], so that I can confirm this account?
    Thanks a lot

    This is support forum..everything related about support.mozilla and Firefox support, i suggest you to connect addons.mozilla admin or moderator through irc and ask thhem, they will guide you properly
    * irc://irc.mozilla.org/addons
    * irc://irc.mozilla.org/amo

  • MAIL on my MAC does not load any new mail or delete any mail in any of my other folders

    I've been having this problem for a couple of days now. Its as if MAIL just doesn't respond to anything. I can't get any New MAIL to load. And if i try to delete anything from SPAM, JUNK... and so on. They won't delete, they just show up again after deleting.
    I restarted the computer, and checked all my settings as well. I also uodated the computer.
    MAIL works from my iphone ans ipad. Just not MACBOOK PRO.
    Any help is appreciated.
    Jimmy

    Drafts, ToDos (Notes), and Outbox are found normally in the Mailboxes folder but do not usually appear in the On My Mac section. As for Deleted Messages that may be a remnant from before you used an IMAP account or if you at one time configured Mailbox Behaviors in Mail preferences to keep deleted messages locally instead of on the IMAP server.

  • How to I get a link with a "Mail to" address to open up a Compose window in my Yahoo mail, rather than in the Mail progrom on my Mac. I do not use the Mac Mail program.

    How to I get a link with a "Mail to" address to open up a Compose window in my Yahoo mail, rather than in the Mail progrom on my Mac. I do not use the Mac Mail program.
    == This happened ==
    Not sure how often
    == always

    Thank you, "the-edmeister" -- You render a great service, one that lifts my spirits.
    Your answer also taught me to be a little more persistent, as I had started looking at Preferences, and just didn't notice the icons (including Applications) at the top of that window that would have led me to my answer.
    Dave

  • Upgrading to Lion, used cloud, now my apple mail no longer syncs on my computer. Can't get any apple mail to come in. Mail window not working properly. Connection to Internet fine. Anyone know how to fix this issue? All worked fine until I opted for Cloud

    Hello,
    I am using a MacBook Pro. Bought in April 2011. Upgraded to Lion, OSX 10.7.3
    I have an Apple mail account that synced with a gmail account in my Mail Program.
    I then chose the CLOUD activation. I can find my mail if I go to cloud.com but I no longer get any Apple mail delivered to my Mail program on my computer. My gmail account syncs just fine. In fact, the Mail program doesn't even open any longer when I double click. I have to go to the Mail menu, select Message Viewer to even view my mail program now. The Internet connection is testing fine using the Connection Doctor. But when the Connection Doctor program just whirs for eternity and never finishes checking the accounts.
    Is this a bug? Do you have to set up your mailbox again for Apple mail to get it to sync after having mail hosted on the Cloud? Or does hosting on the Cloud mean I now always have to go the hassle of logging in at the cloud site to even access my Apple mail?
    Any ideas out there? I am sure there are Mac geniuses, the real ones, floating around in cyber space and would love to get some intelligent directions to solve this new issue.
    Cheers
    Anne

    I would like to add that Comcast is my internet provider. Perhaps that is part of the issue although the Connection Doctor confirms the mail box is connecting to the internet. No other function processes when Connection Doctor program is used to find the source of the issue. I have read forum posts but am unable to find a way to get my Apple mail to be delivered to my computer. It worked fine up until I chose to transfer mail to the Cloud. My mail account is a .mac account.
    Still hoping someone out there can help me.
    thanks,
    anne

  • Sending mail to invalid mail address but domain valid.im not getting any NDR

    Hi,
    In my organisation I'm sending mail to invalid email address but domain is valid ...i'm not getting any NDR. I want NDR like this
     The e-mail address you entered couldn't be found. Please check the recipient's e-mail address and try to resend the message. If the problem continues, please contact your helpdesk

    Hi,
    Please check whether other users can receive NDR message when sending mails to invalid email address. If the issue happens to all users and all related configurations are proper, please check whether there are any transport rules directly
    deleted the mails that send to an invalid address.
    Thanks,
    Winnie Liang
    TechNet Community Support

  • Hello, I am running a Mac book pro soft. 10.5.8 version. Since june the current year I did not get any updates for the software or any kinds of other application, in my opinion that's weird for such a company.

    Hello, I am running a Mac book pro soft. 10.5.8 version. Since June the current year I did not get any updates for the software or any kinds of the other application, in my opinion that's weird for such a company.
    The problem that I have now is with the Iphone 5 which is not supported for the current Itunes and I can not download the Itunes 10.7 version. What I supposed to do in this case because I can not syncronize at all.
    Please give me a hand as soon as possible.
    Many thanks

    Mac OS X 10.5.8 is years old, 3 major versions out-of-date and unsupported at this point. You will never get any further updates for 10.5.8, and more and more applications will stop supporting 10.5.8 as time goes on. As mende1 points out, you can buy Snow Leopard (Mac OS X 10.6), which will let you use your new iPhone with your computer, but you need to make sure your computer's hardware is supported. See the system requirements for Snow Leopard:
    http://support.apple.com/kb/SP575
    If your computer cannot run Snow Leopard, you will need to either buy a new computer or abandon any thoughts of syncing the iPhone with that computer.
    Also, note that you'll get far better integration of your iPhone and your Mac if you're using Lion (Mac OS X 10.7) or Mountain Lion (Mac OS X 10.8), which are required to use iCloud. Of course, the requirements of those systems are even steeper than those of Snow Leopard:
    http://support.apple.com/kb/HT4949
    http://support.apple.com/kb/HT5444

  • I just updated to Maverick and now my .mac mail account is not receiving any incoming mail.  Please help!

    I just updated to Maverick and now my .mac mail account is not receiving any incoming mail.  Please help!

    Try going to Mail/Preferences/Accounts/iCloud/Advanced and setting Authentication to Apple Token.

  • I have set up 3 mails in my outlook macbook pro, i am getting old mails for my company account mail, and i am not getting any mail to my hotmail, please help

    I have set up 3 mails in my outlook macbook pro, i am getting old mails for my company account mail, and i am not getting any mail to my hotmail, please help

    daily i receive 100 old mails, which are already read

  • I updated to iOS5 weeks ago; but suddenly I can't open the mail, contacts, calendar settings and I am not getting any email to my iPad2 AND it keeps trying to connect and it is runnijng the battery down...any help?

    I updated to iOS5 weeks ago; but suddenly I can't open the mail, contacts, calendar settings and I am not getting any email to my iPad2 AND it keeps trying to connect and it is runnijng the battery down...any help?
    I already tried rebooting, and I tried hooking it up to itunes as well, no luck there either.

    Try to reset all settings.
    Settings > General > Reset > Reset all Settings.  It won't delete your data.
    When you say reboot, do you mean you pressed the home and sleep button at the same time until it restarted? 

  • Hello. Please help. for unknow reasons, I am not getting any of my mail on anything, nothing on my iphone, my outlook or even when I log into icloud online ???   any one else having troble??   please help   I need my mail

    Hello. Please help. for unknow reasons, I am not getting any of my mail on anything, nothing on my iphone, my outlook or even when I log into icloud online>???
    any one else having troble??
    please help
    I need my mail

    Hello, DragonStudios. 
    Thank you for visiting Apple Support Communities.
    Here are a couple troubleshooting resources I would recommend when experiencing issues with iCloud Mail.
    iCloud: Troubleshooting iCloud Mail
    http://support.apple.com/kb/TS4002
    iCloud: Account troubleshooting
    http://support.apple.com/kb/TS3988
    Cheers,
    Jason H.

  • My ipad2 is asking old id password, when i go to forget password link for that id then I am not getting any mail to reset the same. Please help how can i remove or change the old id.

    my ipad2 is asking old id password, when i go to forget password link for that id then I am not getting any mail to reset the same. Please help how can i remove or change the old id.

    You cannot remove or change the old ID. This is Find My iPhone Activation Lock. You need to recover the credentials for the Apple ID originally used to activate the iPad.
    Check your spam and junk folders.

  • I am signed into my iTunes account.  However, Im asked for answers to security questions I can't remember.  I have clicked to reset through e-mail, yet I am not getting any email from iTunes.  Any advice on fixing this?

    I am signed into my iTunes account.  However, Im asked for answers to security questions I can't remember.  I have clicked to reset through e-mail, yet I am not getting any email from iTunes.  Any advice on fixing this?

    If you are not getting the email, you can contact Apple Support to have your Security Questions reset:
    ACCOUNT SECURITY CONTACT NUMBERS
    Once you get them reset, check your Rescue Email address on Manage Your Apple ID to make sure it is still a functional address. It is not the same as your primary or alternate address.
    Cheers,
    GB

  • I was working on a project a few days ago and now I'm not getting any audio or visuals out of it. In the project file the screen went grey. Not sure how to fix this. I'm new to iMovie, but the program seems easy to use and my Mac is new. Any help?

    I used to use Movie Maker and it would be able to handle lots of file uploads and big projects. I figure iMovie can do the same since it's newer and it's on my iMac. I was working on a project for a few months, it was working fine up until about a few days ago when the project file just stopped working. Not getting any audio or visuals and the screen went grey. I hope to not lose the project file as I've spent a lot of time on it. The project will still show up in iMovie, but it won't play. Other project files will, but this one won't for some reason. It's my first time using this program and I assumed it would be fine, but now it's causing me big problems. Anyone else run into a similar problem?

    But it is I jsut can sync, back up files, or anything becuase its stuck at this screene and wont do execute when i click either of those button

Maybe you are looking for