Can't fetch mail after sleep

I have a really annoying problem with an iMac and can't just figure out what's wrong:
Since mid December this iMac (model 11,1: 2.66Ghz core i5/OS 10.6.5) has been dropping the network connections when it's waken up from sleep mode.
If you try to hit the "Get mail" button after that, Mail tells +"the connection to the server 'nnn' on port 995 timed out."+
It doesn't matter if youre using port 995 or 110, they both are allowed on the server we're using and there's no problems with the rest of the Macs in our office with similar Mail and Network configurations.
And the computer drops the connection to our file server at the same time as well. The OS is up-to-date.

I have exactly the same problem on Snow Leopard with Mail 4.5 except re-booting doesn't work. even re-installing Mail has made no difference.

Similar Messages

  • Mail 3.6: Can't fetch mail after initial run of fetched mail

    I'm running mail 3.6 with OSX 10.5.8. It has always worked well, but lately it has stopped fetching mail unless I restart or re-boot mail, then it fetches everything but the next time it tries to fetch, it gets hung up and the activity window shows "fetching mail" with the candy cane spinning around, but nothing happens. The activity window also shows attempts to fetch mail that has already been fetched, but nothing is fetched unless I restart the computer or reboot mail. Very strange behavior, and it only happens on my Mac Pro. I can fetch mail from all accounts normally with my power book, so the problem is not with my server.

    I have exactly the same problem on Snow Leopard with Mail 4.5 except re-booting doesn't work. even re-installing Mail has made no difference.

  • I can't launch Mail after i update the OS to X Yosemite

    I can't launch Mail after i update the OS to X Yosemite.

    can't open mail after installing yosemite

  • Can't fetch XMLType after getting first row

    Hi - when I call OCIDefineObject in a sub function, after getting the first row of XMLType value, the program can't fetch subsequent rows and stops. If I call OCIDefineObject in the same memory space of where the fetch call locates, it works out fine. Somehow the persistency of xmldocnode can not last.
    Any clues? I can email out both working/non-working programs upon request.
    my environment is Oracle 11g on Solaris box.
    Sample Code: (fetch only the first row and stop)
    char orderNumData[4001];
    xmldocnode* xmlData = (xmldocnode *) 0;
    xmldocnode** xmlDatap = &xmlData;
    defineStr(define_orderNum, (char*)&orderNumData, 4001);
    defineXML(define_customerdata, xmlDatap );
    rc = OCIStmtExecute ( svc, stmt, err,
              1,
              0, NULL, NULL,
              OCI_DEFAULT);
    cout << "OrdNum: " << orderNumData << endl;
    displayXML (xmlData);
    while ((rc = OCIStmtFetch2 (stmt, err, 1,
    OCI_FETCH_NEXT,
    (ub4) 1,
    OCI_DEFAULT )) == OCI_SUCCESS)
    cout << "OrdNum: " << orderNumData << endl;
    displayXML (xmlData);
    void defineXML ( OCIDefine defineHdn, xmldocnode *xmlDatap )
    ociStatus = OCITypeByName( env,
    err,
    svc,
    (const text *) "SYS",
    (ub4) strlen((char *)"SYS"),
    (const text *) "XMLTYPE",
    (ub4) strlen((char *)"XMLTYPE"),
    (CONST text *) 0,
    (ub4) 0,
    OCI_DURATION_SESSION,
    OCI_TYPEGET_HEADER,
    (OCIType **) &xmltdo);
    ociStatus = OCIDefineByPos ( stmt,
    &defineHdn,
    err,
    pos,
    (dvoid *) 0,
    (sb4) 0,
    SQLT_NTY,
    (dvoid *) 0,
    (ub2 *)0,
    (ub2 *)0,
    (ub4) OCI_DEFAULT );
    ociStatus = OCIDefineObject( defineHdn,
    err,
    (OCIType *) xmltdo,
    (dvoid **) xmlDatap,
    &xmlSize,
    (dvoid **) &indp,
    (ub4 *) 0);
    Working one:
    Instead if I call OCITypeByName, OCIDefineByPos,
    and OCIDefineByPos right before the OCIStmtExecute() in the main,
    then all results can be returned.
    OCITypeByName(...)
    OCIDefineByPos(...)
    OCIDefineObject(...)
    rc = OCIStmtExecute ( svc, stmt, err,
    1,
    0, NULL, NULL,
    OCI_DEFAULT);
    cout << "OrdNum: " << orderNumData << endl;
    displayXML (xmlData);
    while ((rc = OCIStmtFetch2 (stmt, err, 1,
    OCI_FETCH_NEXT,
    (ub4) 1,
    OCI_DEFAULT )) == OCI_SUCCESS)
    cout << "OrdNum: " << orderNumData << endl;
    displayXML (xmlData);
    Thanks,
    Terrence

    void defineXML ( OCIDefine defineHdn, xmldocnode *xmlDatap ) { ...
    ociStatus = OCIDefineObject(
    defineHdn, err, (OCIType *) xmltdo, (dvoid **) xmlDatap,
    &xmlSize, (dvoid **) &indp, (ub4 *) 0);
    Instead if I call OCITypeByName, OCIDefineByPos,
    and OCIDefineByPos right before the OCIStmtExecute()
    in the main, then all results can be returned.I ran into this issue myself (was going nuts until a smarter colleague open my eyes on the issue). The problem is that you passing addresses of local variables in defineXML for xmlSize and indp, when the addresses you pass must remain valid for the whole fetch. (xmlSize is not written to apparently, by indp is for sure, so you are writing/corrupting your program stack...)
    To resolve this, I use a stack allocated helper struct whose lifetime extends the fetch, and which is referenced in the bind_object method. --DD
    struct ObjectBindInfo {
        void* p_value;
        void* p_indicator;
        ub4 value_size;
        ub4 indicator_size;
    static void insert_one_object(ub4 id) { ...
        sql_point pt(id);
        ObjectBindInfo pt_info(pt, &pt.indicator_);
        stmt.bind_object(conn, 2, pt, pt_info);
    ... void Statement::bind_object(
        Connection& conn, ub4 position, ..., ObjectBindInfo& obj_info
        // WARNING: Addresses passed to OCIBindObject MUST still be
        // valid after OCIStmtExecute, so cannot be addresses to local
        // (stack) vars. Thus the use of ObjectBindInfo...
        checkerr(
            OCIBindObject(
                bind_hndl, errhp(), tdo,
                (void**)&obj_info.p_value,     &obj_info.value_size,
                (void**)&obj_info.p_indicator, &obj_info.indicator_size
            errhp()
    }Of course, you've noticed that I talk about binds above, but the fact that you need to provide non-local var addresses to OCI applies to defines as well. --DD
    Message was edited by: ddevienne

  • Can't open mail after updating to Safari 7.0.6.

    I can't open my Mail after updating to Safari 7.0.6.

    Launch the Console application in any of the following ways:
    ☞ Enter the first few letters of its name into a Spotlight search. Select it in the results (it should be at the top.)
    ☞ In the Finder, select Go ▹ Utilities from the menu bar, or press the key combination shift-command-U. The application is in the folder that opens.
    ☞ Open LaunchPad. Click Utilities, then Console in the icon grid.
    The title of the Console window should be All Messages. If it isn't, select
              SYSTEM LOG QUERIES ▹ All Messages
    from the log list on the left. If you don't see that list, select
              View ▹ Show Log List
    from the menu bar at the top of the screen. Click the Clear Display icon in the toolbar. Then take one of the actions that you're having trouble with. Select any messages that appear in the Console window. Copy them to the Clipboard by pressing the key combination command-C. Paste into a reply to this message by pressing command-V.
    The log contains a vast amount of information, almost all of which is irrelevant to solving any particular problem. When posting a log extract, be selective. A few dozen lines are almost always more than enough.
    Please don't indiscriminately dump thousands of lines from the log into this discussion.
    Please don't post screenshots of log messages—post the text.
    Some private information, such as your name, may appear in the log. Anonymize before posting.

  • Can't get mail after recently changing password on iPhone 5c

    Can't mail after recently changing password on iPhone 5c iOS 6

    If you are talking about changing your email password on your email provider's server did you also change the password in Settings > Mail, Contacts, Calendars for this email account?

  • Mail not checking for new mail after sleep

    Mail will not check for new mail when waking from sleep unless I log off and back on first. I tried quitting Mail, which works once in a while. I tried putting all Accounts back online, which works occasionally. But most often nothing works except logging off. Must I change to another mail program, or is there a better solution.

    After trying various solutions, I found that the fault was not with Apple Mail or my iMac but with Airport taking time to warm up after sleep. I switched to an Ethernet connection instead and it works fine now

  • Can't open mail after installing update with 10.6.8 says my mail is out of date

    Please help - new to Macs and I installed automatic update of 10.6.8 - 4 days ago and now I can't open up mail  - it says "You can't use this version of Mail with this version of Mac OS X. You tried to open Mail version 4.5 (1084/1085) in Applications/ Mail.
    So I went to  Applications, says this message again. So I   used my discs that  came with the computer adn installed again  Applications - no luck.
    I had luckily  backed up 2 days before this update - so went to Time Machine - did restore - now good still - can't  open mail. CLick on Iconand get same messgae .
    Please help. Thank you

    rainbowmum wrote:
    Thank you for the very clear basic instructions—helpful for a newbie.…Also my first screen shot !! I see that it does not have .App next to it
    Most likely because you have Finder's preferences->Advanced->Show all filename extensions unchecked. Check it, log out, and back in and all the apps should display the .app extension.
    Now, back to your problem. If you installed the Security Update 2012-004, it failed to update Mail to 4.6; thus, your problem. Manually DL it from http://support.apple.com/kb/DL1586 and reinstall it.

  • Can't open mail after Mavericks upgrade on macbook air

    I cannot open mail after upgrading to mavericks.
    The mail icon appears to recognise it is open as it has the mark under it while in the taskbar alone the bottom. But that is as far as it goes, the mail window does not open to view emails. The email icon in the task bar on the bottom looks like it does when you have an application open and have minimised it. I have tried running repair disk utlity which did nothing.
    Is there any easy fix for someone who is only moderately confident with the back end of a computer.

    17/02/2014 7:47:54.000 pm syslogd[19]: Configuration Notice:
    ASL Module "com.apple.mail" claims selected messages.
    Those messages may not appear in standard system log files or in the ASL database.
    17/02/2014 8:50:48.830 pm Mail[1420]: CoreData: error: (11) Fatal error.  The database at /Users/kylie/Library/Application Support/AddressBook/MailRecents-v4.abcdmr is corrupted.  SQLite error code:11, 'database disk image is malformed'
    17/02/2014 8:50:48.830 pm Mail[1420]: CoreData: error: exception during fetchRowForObjectID: Fatal error.  The database at /Users/kylie/Library/Application Support/AddressBook/MailRecents-v4.abcdmr is corrupted.  SQLite error code:11, 'database disk image is malformed' with userInfo of {
        NSFilePath = "/Users/kylie/Library/Application Support/AddressBook/MailRecents-v4.abcdmr";
        NSSQLiteErrorDomain = 11;
    17/02/2014 8:50:48.831 pm Mail[1420]: CoreData: error: (11) Fatal error.  The database at /Users/kylie/Library/Application Support/AddressBook/MailRecents-v4.abcdmr is corrupted.  SQLite error code:11, 'database disk image is malformed'
    17/02/2014 8:50:48.832 pm Mail[1420]: CoreData: error: exception during fetchRowForObjectID: Fatal error.  The database at /Users/kylie/Library/Application Support/AddressBook/MailRecents-v4.abcdmr is corrupted.  SQLite error code:11, 'database disk image is malformed' with userInfo of {
        NSFilePath = "/Users/kylie/Library/Application Support/AddressBook/MailRecents-v4.abcdmr";
        NSSQLiteErrorDomain = 11;
    17/02/2014 8:50:48.843 pm Mail[1420]: CoreData: error: (11) Fatal error.  The database at /Users/kylie/Library/Application Support/AddressBook/MailRecents-v4.abcdmr is corrupted.  SQLite error code:11, 'database disk image is malformed'
    17/02/2014 8:50:48.844 pm Mail[1420]: CoreData: error: exception during fetchRowForObjectID: Fatal error.  The database at /Users/kylie/Library/Application Support/AddressBook/MailRecents-v4.abcdmr is corrupted.  SQLite error code:11, 'database disk image is malformed' with userInfo of {
        NSFilePath = "/Users/kylie/Library/Application Support/AddressBook/MailRecents-v4.abcdmr";
        NSSQLiteErrorDomain = 11;
    17/02/2014 8:50:49.147 pm Mail[1420]: CoreData: error: (11) Fatal error.  The database at /Users/kylie/Library/Application Support/AddressBook/MailRecents-v4.abcdmr is corrupted.  SQLite error code:11, 'database disk image is malformed'
    17/02/2014 8:50:49.148 pm Mail[1420]: CoreData: error: exception during fetchRowForObjectID: Fatal error.  The database at /Users/kylie/Library/Application Support/AddressBook/MailRecents-v4.abcdmr is corrupted.  SQLite error code:11, 'database disk image is malformed' with userInfo of {
        NSFilePath = "/Users/kylie/Library/Application Support/AddressBook/MailRecents-v4.abcdmr";
        NSSQLiteErrorDomain = 11;
    17/02/2014 8:50:49.148 pm Mail[1420]: Rethrowing (from nts_ValueForProperty:) NSInternalInconsistencyException: Fatal error.  The database at /Users/kylie/Library/Application Support/AddressBook/MailRecents-v4.abcdmr is corrupted.  SQLite error code:11, 'database disk image is malformed'
    17/02/2014 8:50:49.151 pm Mail[1420]: Fatal error.  The database at /Users/kylie/Library/Application Support/AddressBook/MailRecents-v4.abcdmr is corrupted.  SQLite error code:11, 'database disk image is malformed'
    17/02/2014 8:56:14.296 pm Mail[1420]: [<_MCLibSasl2SaslClient: 0x6080002b45e0> mechanism: PLAIN security layer: no] Failed to start the SASL connection
    SASL(-1): generic failure:
    17/02/2014 8:56:33.419 pm sandboxd[44]: ([1420]) Mail(1420) deny file-issue-extension /Applications/System Preferences.app
    17/02/2014 8:57:35.537 pm sandboxd[44]: ([1420]) Mail(1420) deny file-issue-extension /Applications/System Preferences.app
    17/02/2014 8:58:37.815 pm Mail[1450]: CoreData: error: (11) Fatal error.  The database at /Users/kylie/Library/Application Support/AddressBook/MailRecents-v4.abcdmr is corrupted.  SQLite error code:11, 'database disk image is malformed'
    17/02/2014 8:58:37.815 pm Mail[1450]: CoreData: error: exception during fetchRowForObjectID: Fatal error.  The database at /Users/kylie/Library/Application Support/AddressBook/MailRecents-v4.abcdmr is corrupted.  SQLite error code:11, 'database disk image is malformed' with userInfo of {
        NSFilePath = "/Users/kylie/Library/Application Support/AddressBook/MailRecents-v4.abcdmr";
        NSSQLiteErrorDomain = 11;
    17/02/2014 8:58:37.822 pm Mail[1450]: CoreData: error: (11) Fatal error.  The database at /Users/kylie/Library/Application Support/AddressBook/MailRecents-v4.abcdmr is corrupted.  SQLite error code:11, 'database disk image is malformed'
    17/02/2014 8:58:37.823 pm Mail[1450]: CoreData: error: exception during fetchRowForObjectID: Fatal error.  The database at /Users/kylie/Library/Application Support/AddressBook/MailRecents-v4.abcdmr is corrupted.  SQLite error code:11, 'database disk image is malformed' with userInfo of {
        NSFilePath = "/Users/kylie/Library/Application Support/AddressBook/MailRecents-v4.abcdmr";
        NSSQLiteErrorDomain = 11;
    17/02/2014 8:58:37.834 pm Mail[1450]: CoreData: error: (11) Fatal error.  The database at /Users/kylie/Library/Application Support/AddressBook/MailRecents-v4.abcdmr is corrupted.  SQLite error code:11, 'database disk image is malformed'
    17/02/2014 8:58:37.835 pm Mail[1450]: CoreData: error: exception during fetchRowForObjectID: Fatal error.  The database at /Users/kylie/Library/Application Support/AddressBook/MailRecents-v4.abcdmr is corrupted.  SQLite error code:11, 'database disk image is malformed' with userInfo of {
        NSFilePath = "/Users/kylie/Library/Application Support/AddressBook/MailRecents-v4.abcdmr";
        NSSQLiteErrorDomain = 11;
    17/02/2014 8:58:38.138 pm Mail[1450]: CoreData: error: (11) Fatal error.  The database at /Users/kylie/Library/Application Support/AddressBook/MailRecents-v4.abcdmr is corrupted.  SQLite error code:11, 'database disk image is malformed'
    17/02/2014 8:58:38.138 pm Mail[1450]: CoreData: error: exception during fetchRowForObjectID: Fatal error.  The database at /Users/kylie/Library/Application Support/AddressBook/MailRecents-v4.abcdmr is corrupted.  SQLite error code:11, 'database disk image is malformed' with userInfo of {
        NSFilePath = "/Users/kylie/Library/Application Support/AddressBook/MailRecents-v4.abcdmr";
        NSSQLiteErrorDomain = 11;
    17/02/2014 8:58:38.139 pm Mail[1450]: Rethrowing (from nts_ValueForProperty:) NSInternalInconsistencyException: Fatal error.  The database at /Users/kylie/Library/Application Support/AddressBook/MailRecents-v4.abcdmr is corrupted.  SQLite error code:11, 'database disk image is malformed'
    17/02/2014 8:58:38.139 pm Mail[1450]: Fatal error.  The database at /Users/kylie/Library/Application Support/AddressBook/MailRecents-v4.abcdmr is corrupted.  SQLite error code:11, 'database disk image is malformed'
    17/02/2014 9:04:47.000 pm syslogd[19]: Configuration Notice:
    ASL Module "com.apple.mail" claims selected messages.
    Those messages may not appear in standard system log files or in the ASL database.
    17/02/2014 9:05:11.981 pm Mail[1311]: CoreData: error: (11) Fatal error.  The database at /Users/kylie/Library/Application Support/AddressBook/MailRecents-v4.abcdmr is corrupted.  SQLite error code:11, 'database disk image is malformed'
    17/02/2014 9:05:11.982 pm Mail[1311]: CoreData: error: exception during fetchRowForObjectID: Fatal error.  The database at /Users/kylie/Library/Application Support/AddressBook/MailRecents-v4.abcdmr is corrupted.  SQLite error code:11, 'database disk image is malformed' with userInfo of {
        NSFilePath = "/Users/kylie/Library/Application Support/AddressBook/MailRecents-v4.abcdmr";
        NSSQLiteErrorDomain = 11;
    17/02/2014 9:05:11.983 pm Mail[1311]: CoreData: error: (11) Fatal error.  The database at /Users/kylie/Library/Application Support/AddressBook/MailRecents-v4.abcdmr is corrupted.  SQLite error code:11, 'database disk image is malformed'
    17/02/2014 9:05:11.983 pm Mail[1311]: CoreData: error: exception during fetchRowForObjectID: Fatal error.  The database at /Users/kylie/Library/Application Support/AddressBook/MailRecents-v4.abcdmr is corrupted.  SQLite error code:11, 'database disk image is malformed' with userInfo of {
        NSFilePath = "/Users/kylie/Library/Application Support/AddressBook/MailRecents-v4.abcdmr";
        NSSQLiteErrorDomain = 11;
    17/02/2014 9:05:11.996 pm Mail[1311]: CoreData: error: (11) Fatal error.  The database at /Users/kylie/Library/Application Support/AddressBook/MailRecents-v4.abcdmr is corrupted.  SQLite error code:11, 'database disk image is malformed'
    17/02/2014 9:05:11.996 pm Mail[1311]: CoreData: error: exception during fetchRowForObjectID: Fatal error.  The database at /Users/kylie/Library/Application Support/AddressBook/MailRecents-v4.abcdmr is corrupted.  SQLite error code:11, 'database disk image is malformed' with userInfo of {
        NSFilePath = "/Users/kylie/Library/Application Support/AddressBook/MailRecents-v4.abcdmr";
        NSSQLiteErrorDomain = 11;
    17/02/2014 9:05:12.298 pm Mail[1311]: CoreData: error: (11) Fatal error.  The database at /Users/kylie/Library/Application Support/AddressBook/MailRecents-v4.abcdmr is corrupted.  SQLite error code:11, 'database disk image is malformed'
    17/02/2014 9:05:12.299 pm Mail[1311]: CoreData: error: exception during fetchRowForObjectID: Fatal error.  The database at /Users/kylie/Library/Application Support/AddressBook/MailRecents-v4.abcdmr is corrupted.  SQLite error code:11, 'database disk image is malformed' with userInfo of {
        NSFilePath = "/Users/kylie/Library/Application Support/AddressBook/MailRecents-v4.abcdmr";
        NSSQLiteErrorDomain = 11;
    17/02/2014 9:05:12.299 pm Mail[1311]: Rethrowing (from nts_ValueForProperty:) NSInternalInconsistencyException: Fatal error.  The database at /Users/kylie/Library/Application Support/AddressBook/MailRecents-v4.abcdmr is corrupted.  SQLite error code:11, 'database disk image is malformed'
    17/02/2014 9:05:12.301 pm Mail[1311]: Fatal error.  The database at /Users/kylie/Library/Application Support/AddressBook/MailRecents-v4.abcdmr is corrupted.  SQLite error code:11, 'database disk image is malformed'
    17/02/2014 9:09:30.982 pm Mail[1351]: CoreData: error: (11) Fatal error.  The database at /Users/kylie/Library/Application Support/AddressBook/MailRecents-v4.abcdmr is corrupted.  SQLite error code:11, 'database disk image is malformed'
    17/02/2014 9:09:30.982 pm Mail[1351]: CoreData: error: exception during fetchRowForObjectID: Fatal error.  The database at /Users/kylie/Library/Application Support/AddressBook/MailRecents-v4.abcdmr is corrupted.  SQLite error code:11, 'database disk image is malformed' with userInfo of {
        NSFilePath = "/Users/kylie/Library/Application Support/AddressBook/MailRecents-v4.abcdmr";
        NSSQLiteErrorDomain = 11;
    17/02/2014 9:09:30.983 pm Mail[1351]: CoreData: error: (11) Fatal error.  The database at /Users/kylie/Library/Application Support/AddressBook/MailRecents-v4.abcdmr is corrupted.  SQLite error code:11, 'database disk image is malformed'
    17/02/2014 9:09:30.983 pm Mail[1351]: CoreData: error: exception during fetchRowForObjectID: Fatal error.  The database at /Users/kylie/Library/Application Support/AddressBook/MailRecents-v4.abcdmr is corrupted.  SQLite error code:11, 'database disk image is malformed' with userInfo of {
        NSFilePath = "/Users/kylie/Library/Application Support/AddressBook/MailRecents-v4.abcdmr";
        NSSQLiteErrorDomain = 11;
    17/02/2014 9:09:30.996 pm Mail[1351]: CoreData: error: (11) Fatal error.  The database at /Users/kylie/Library/Application Support/AddressBook/MailRecents-v4.abcdmr is corrupted.  SQLite error code:11, 'database disk image is malformed'
    17/02/2014 9:09:30.997 pm Mail[1351]: CoreData: error: exception during fetchRowForObjectID: Fatal error.  The database at /Users/kylie/Library/Application Support/AddressBook/MailRecents-v4.abcdmr is corrupted.  SQLite error code:11, 'database disk image is malformed' with userInfo of {
        NSFilePath = "/Users/kylie/Library/Application Support/AddressBook/MailRecents-v4.abcdmr";
        NSSQLiteErrorDomain = 11;
    17/02/2014 9:09:31.300 pm Mail[1351]: CoreData: error: (11) Fatal error.  The database at /Users/kylie/Library/Application Support/AddressBook/MailRecents-v4.abcdmr is corrupted.  SQLite error code:11, 'database disk image is malformed'
    17/02/2014 9:09:31.301 pm Mail[1351]: CoreData: error: exception during fetchRowForObjectID: Fatal error.  The database at /Users/kylie/Library/Application Support/AddressBook/MailRecents-v4.abcdmr is corrupted.  SQLite error code:11, 'database disk image is malformed' with userInfo of {
        NSFilePath = "/Users/kylie/Library/Application Support/AddressBook/MailRecents-v4.abcdmr";
        NSSQLiteErrorDomain = 11;
    17/02/2014 9:09:31.301 pm Mail[1351]: Rethrowing (from nts_ValueForProperty:) NSInternalInconsistencyException: Fatal error.  The database at /Users/kylie/Library/Application Support/AddressBook/MailRecents-v4.abcdmr is corrupted.  SQLite error code:11, 'database disk image is malformed'
    17/02/2014 9:09:31.309 pm Mail[1351]: Fatal error.  The database at /Users/kylie/Library/Application Support/AddressBook/MailRecents-v4.abcdmr is corrupted.  SQLite error code:11, 'database disk image is malformed'
    17/02/2014 9:12:00.420 pm CleanMyMac[1387]: Pkg bcmailjdk15143.pkg plist read error. Assume basedir as / and empty bundle ID
    17/02/2014 9:12:24.914 pm CleanMyMac[1387]: Pkg mail.pkg plist read error. Assume basedir as / and empty bundle ID
    17/02/2014 9:17:47.000 pm kernel[0]: hfs: mounted Mavericks Mail Update on device disk1s2
    17/02/2014 9:17:47.142 pm mds[60]: (Normal) Volume: volume:0x7f8f3a822800 ********** Bootstrapped Creating a default store:1 SpotLoc:(null) SpotVerLoc:(null) occlude:0 /Volumes/Mavericks Mail Update
    17/02/2014 9:43:45.000 pm kernel[0]: hfs: unmount initiated on Mavericks Mail Update on device disk1s2
    17/02/2014 9:47:25.000 pm syslogd[18]: Configuration Notice:
    ASL Module "com.apple.mail" claims selected messages.
    Those messages may not appear in standard system log files or in the ASL database.
    17/02/2014 9:48:21.100 pm Mail[1281]: CoreData: error: (11) Fatal error.  The database at /Users/kylie/Library/Application Support/AddressBook/MailRecents-v4.abcdmr is corrupted.  SQLite error code:11, 'database disk image is malformed'
    17/02/2014 9:48:21.100 pm Mail[1281]: CoreData: error: exception during fetchRowForObjectID: Fatal error.  The database at /Users/kylie/Library/Application Support/AddressBook/MailRecents-v4.abcdmr is corrupted.  SQLite error code:11, 'database disk image is malformed' with userInfo of {
        NSFilePath = "/Users/kylie/Library/Application Support/AddressBook/MailRecents-v4.abcdmr";
        NSSQLiteErrorDomain = 11;
    17/02/2014 9:48:21.107 pm Mail[1281]: CoreData: error: (11) Fatal error.  The database at /Users/kylie/Library/Application Support/AddressBook/MailRecents-v4.abcdmr is corrupted.  SQLite error code:11, 'database disk image is malformed'
    17/02/2014 9:48:21.108 pm Mail[1281]: CoreData: error: exception during fetchRowForObjectID: Fatal error.  The database at /Users/kylie/Library/Application Support/AddressBook/MailRecents-v4.abcdmr is corrupted.  SQLite error code:11, 'database disk image is malformed' with userInfo of {
        NSFilePath = "/Users/kylie/Library/Application Support/AddressBook/MailRecents-v4.abcdmr";
        NSSQLiteErrorDomain = 11;
    17/02/2014 9:48:21.121 pm Mail[1281]: CoreData: error: (11) Fatal error.  The database at /Users/kylie/Library/Application Support/AddressBook/MailRecents-v4.abcdmr is corrupted.  SQLite error code:11, 'database disk image is malformed'
    17/02/2014 9:48:21.122 pm Mail[1281]: CoreData: error: exception during fetchRowForObjectID: Fatal error.  The database at /Users/kylie/Library/Application Support/AddressBook/MailRecents-v4.abcdmr is corrupted.  SQLite error code:11, 'database disk image is malformed' with userInfo of {
        NSFilePath = "/Users/kylie/Library/Application Support/AddressBook/MailRecents-v4.abcdmr";
        NSSQLiteErrorDomain = 11;
    17/02/2014 9:48:21.425 pm Mail[1281]: CoreData: error: (11) Fatal error.  The database at /Users/kylie/Library/Application Support/AddressBook/MailRecents-v4.abcdmr is corrupted.  SQLite error code:11, 'database disk image is malformed'
    17/02/2014 9:48:21.425 pm Mail[1281]: CoreData: error: exception during fetchRowForObjectID: Fatal error.  The database at /Users/kylie/Library/Application Support/AddressBook/MailRecents-v4.abcdmr is corrupted.  SQLite error code:11, 'database disk image is malformed' with userInfo of {
        NSFilePath = "/Users/kylie/Library/Application Support/AddressBook/MailRecents-v4.abcdmr";
        NSSQLiteErrorDomain = 11;
    17/02/2014 9:48:21.426 pm Mail[1281]: Rethrowing (from nts_ValueForProperty:) NSInternalInconsistencyException: Fatal error.  The database at /Users/kylie/Library/Application Support/AddressBook/MailRecents-v4.abcdmr is corrupted.  SQLite error code:11, 'database disk image is malformed'
    17/02/2014 9:48:21.428 pm Mail[1281]: Fatal error.  The database at /Users/kylie/Library/Application Support/AddressBook/MailRecents-v4.abcdmr is corrupted.  SQLite error code:11, 'database disk image is malformed'
    18/02/2014 11:05:32.667 am SubmitDiagInfo[2026]: Removed expired file file:///Users/kylie/Library/Logs/DiagnosticReports/Mail_2014-01-17-172108_kylie -pennells-computer-2.crash
    18/02/2014 11:05:32.668 am SubmitDiagInfo[2026]: Removed expired plist file file:///Users/kylie/Library/Logs/DiagnosticReports/.Mail_2014-01-17-172108_kyli e-pennells-computer-2.crash.plist
    18/02/2014 11:05:32.751 am SubmitDiagInfo[2026]: Removed expired file file:///Users/kylie/Library/Logs/DiagnosticReports/Mail_2014-01-17-172122_kylie -pennells-computer-2.crash
    18/02/2014 11:05:32.754 am SubmitDiagInfo[2026]: Removed expired plist file file:///Users/kylie/Library/Logs/DiagnosticReports/.Mail_2014-01-17-172122_kyli e-pennells-computer-2.crash.plist
    18/02/2014 11:05:32.760 am SubmitDiagInfo[2026]: Removed expired file file:///Users/kylie/Library/Logs/DiagnosticReports/Mail_2014-01-17-172204_kylie -pennells-computer-2.crash
    18/02/2014 11:05:32.761 am SubmitDiagInfo[2026]: Removed expired plist file file:///Users/kylie/Library/Logs/DiagnosticReports/.Mail_2014-01-17-172204_kyli e-pennells-computer-2.crash.plist
    18/02/2014 6:40:40.623 pm com.apple.iCloudHelper[2324]: AOSKit ERROR: Setup request failed, [email protected], url=https://setup.icloud.com/setup/get_account_settings, requestHeaders=
        "Accept-Language" = "en-us";
        Authorization = "Basic ...";
        "X-APNS-Token" = b56c2b7e1d85a6e0e62e5042aa11f1713b173f25c6f01c736814e5bb8de65773;
        "X-Aos-Accept-Tos" = false;
        "X-Mme-Client-Info" = "<MacBookAir6,2> <Mac OS X;10.9.1;13B42> <com.apple.AOSKit/176 (com.apple.mail/7.1)>";
        "X-Mme-Country" = AU;
        "X-Mme-Timezone" = AEDT;
    error=Error Domain=AOSErrorDomain Code=5003 "The operation couldn’t be completed. (AOSErrorDomain error 5003.)" UserInfo=0x7fd7aae09810 {HttpStatusCode=409, DialogInfo={
        AlternateButtonLabel = "";
        AlternateButtonLink = "";
        Body = "MOBILEME_TERMS_OF_SERVICE_UPDATE";
        DefaultButtonLabel = "mme.setupservice.SetupServiceJS.OK";
        DefaultButtonLink = "";
        DialogType = TOSDialog;
        ErrorID = "MOBILEME_TERMS_OF_SERVICE_UPDATE";
        Header = "";
        HelpLink = "";
        description = "This account needs to accept the ToS";
        localizedError = "MOBILEME_TERMS_OF_SERVICE_UPDATE";
        protocolVersion = 2;
    }}, httpStatusCode=409, responseHeaders=
        "Cache-Control" = "no-cache, no-store, private";
        "Content-Encoding" = gzip;
        "Content-Length" = 404;
        "Content-Type" = "application/xml; charset=UTF-8";
        Date = "Tue, 18 Feb 2014 07:40:38 GMT";
        "X-Apple-Request-UUID" = "9401099f-8801-4f62-a7ca-d16db588239f";
        "X-Responding-Instance" = "setupservice:21000201:nk11p10me-setupsvc002:8001:14A51:121055";
    responseBody=
    <?xml version="1.0" encoding="UTF-8" standalone="yes"?>
    <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
    <plist version="1.0">
              <dict>
                        <key>protocolVersion</key>
                        <string>2</string>
                        <key>DefaultButtonLabel</key>
                        <string>mme.setupservice.SetupServiceJS.OK</string>
                        <key>Body</key>
                        <string>MOBILEME_TERMS_OF_SERVICE_UPDATE</string>
                        <key>ErrorID</key>
                        <string>MOBILEME_TERMS_OF_SERVICE_UPDATE</string>
                        <key>DialogType</key>
                        <string>CustomDialog</string>
                        <key>AlternateButtonLink</key>
                        <string></string>
                        <key>AlternateButtonLabel</key>
                        <string></string>
                        <key>localizedError</key>
                        <string>MOBILEME_TERMS_OF_SERVICE_UPDATE</string>
                        <key>DefaultButtonLink</key>
                        <string></string>
                        <key>Header</key>
                        <string></string>
                        <key>HelpLink</key>
                        <string></string>
                        <key>description</key>
                        <string>This account needs to accept the ToS</string>
              </dict>
    </plist>
    18/02/2014 6:40:40.627 pm Mail[1281]: [AOSAccounts] :  [ReportAuthErrorNotification]  : AOSTransactionGetError  The operation couldn’t be completed. (AOSErrorDomain error 5003.) reason (null)
    18/02/2014 6:49:41.000 pm syslogd[18]: Configuration Notice:
    ASL Module "com.apple.mail" claims selected messages.
    Those messages may not appear in standard system log files or in the ASL database.
    18/02/2014 6:59:52.401 pm syncdefaultsd[1363]: com.apple.mail-com.apple.mail.recents will keep remote value for MR_9824ED5728BAF605F963A0111BD43734 as it's the initial sync
    18/02/2014 6:59:52.403 pm syncdefaultsd[1363]: com.apple.mail-com.apple.mail.recents will keep remote value for MAX_RECENTS as it's the initial sync
    18/02/2014 6:59:52.404 pm syncdefaultsd[1363]: com.apple.mail-com.apple.mail.recents will keep remote value for MR_F3E968F132A2D4F195A30313751AEE25 as it's the initial sync
    18/02/2014 6:59:52.405 pm syncdefaultsd[1363]: com.apple.mail-com.apple.mail.recents will keep remote value for MR_2D515D99B5F1866A8358CA514D851EBD as it's the initial sync
    18/02/2014 6:59:52.406 pm syncdefaultsd[1363]: com.apple.mail-com.apple.mail.recents will keep remote value for MR_CBE83A6CD721353325864EB93DE06F40 as it's the initial sync
    18/02/2014 6:59:52.407 pm syncdefaultsd[1363]: supressing remaining warnings for com.apple.mail-com.apple.mail.recents
    18/02/2014 6:59:52.408 pm syncdefaultsd[1363]: com.apple.mail-com.apple.mail.recents had 7 keys that reported issues.
    18/02/2014 7:00:10.819 pm com.apple.preferences.internetaccounts.remoteservice[1333]: An instance 0x7fc33bc83c40 of class IMAPMailbox was deallocated while key value observers were still registered with it. Observation info was leaked, and may even become mistakenly attached to some other object. Set a breakpoint on NSKVODeallocateBreak to stop here in the debugger. Here's the current observation info:
    <NSKeyValueObservationInfo 0x7fc33e828710> (
    <NSKeyValueObservance 0x7fc33e82df30: Observer: 0x7fc33e82c640, Key path: uidNext, Options: <New: NO, Old: NO, Prior: NO> Context: 0x7fff8deca44b, Property: 0x7fc33e8286e0>
    18/02/2014 7:00:30.168 pm Mail[1439]: CoreData: error: (11) Fatal error.  The database at /Users/kylie/Library/Application Support/AddressBook/MailRecents-v4.abcdmr is corrupted.  SQLite error code:11, 'database disk image is malformed'
    18/02/2014 7:00:30.168 pm Mail[1439]: CoreData: error: exception during fetchRowForObjectID: Fatal error.  The database at /Users/kylie/Library/Application Support/AddressBook/MailRecents-v4.abcdmr is corrupted.  SQLite error code:11, 'database disk image is malformed' with userInfo of {
        NSFilePath = "/Users/kylie/Library/Application Support/AddressBook/MailRecents-v4.abcdmr";
        NSSQLiteErrorDomain = 11;
    18/02/2014 7:00:30.175 pm Mail[1439]: CoreData: error: (11) Fatal error.  The database at /Users/kylie/Library/Application Support/AddressBook/MailRecents-v4.abcdmr is corrupted.  SQLite error code:11, 'database disk image is malformed'
    18/02/2014 7:00:30.176 pm Mail[1439]: CoreData: error: exception during fetchRowForObjectID: Fatal error.  The database at /Users/kylie/Library/Application Support/AddressBook/MailRecents-v4.abcdmr is corrupted.  SQLite error code:11, 'database disk image is malformed' with userInfo of {
        NSFilePath = "/Users/kylie/Library/Application Support/AddressBook/MailRecents-v4.abcdmr";
        NSSQLiteErrorDomain = 11;
    18/02/2014 7:00:30.189 pm Mail[1439]: CoreData: error: (11) Fatal error.  The database at /Users/kylie/Library/Application Support/AddressBook/MailRecents-v4.abcdmr is corrupted.  SQLite error code:11, 'database disk image is malformed'
    18/02/2014 7:00:30.190 pm Mail[1439]: CoreData: error: exception during fetchRowForObjectID: Fatal error.  The database at /Users/kylie/Library/Application Support/AddressBook/MailRecents-v4.abcdmr is corrupted.  SQLite error code:11, 'database disk image is malformed' with userInfo of {
        NSFilePath = "/Users/kylie/Library/Application Support/AddressBook/MailRecents-v4.abcdmr";
        NSSQLiteErrorDomain = 11;
    18/02/2014 7:00:30.493 pm Mail[1439]: CoreData: error: (11) Fatal error.  The database at /Users/kylie/Library/Application Support/AddressBook/MailRecents-v4.abcdmr is corrupted.  SQLite error code:11, 'database disk image is malformed'
    18/02/2014 7:00:30.493 pm Mail[1439]: CoreData: error: exception during fetchRowForObjectID: Fatal error.  The database at /Users/kylie/Library/Application Support/AddressBook/MailRecents-v4.abcdmr is corrupted.  SQLite error code:11, 'database disk image is malformed' with userInfo of {
        NSFilePath = "/Users/kylie/Library/Application Support/AddressBook/MailRecents-v4.abcdmr";
        NSSQLiteErrorDomain = 11;
    18/02/2014 7:00:30.494 pm Mail[1439]: Rethrowing (from nts_ValueForProperty:) NSInternalInconsistencyException: Fatal error.  The database at /Users/kylie/Library/Application Support/AddressBook/MailRecents-v4.abcdmr is corrupted.  SQLite error code:11, 'database disk image is malformed'
    18/02/2014 7:00:30.496 pm Mail[1439]: Fatal error.  The database at /Users/kylie/Library/Application Support/AddressBook/MailRecents-v4.abcdmr is corrupted.  SQLite error code:11, 'database disk image is malformed'
    18/02/2014 7:48:31.576 pm syncdefaultsd[1488]: recentsd-com.apple.mail.recents will keep remote value for MAX_RECENTS as it's the initial sync

  • Can't start applications after sleep

    Twice now, after waking from sleep, I have been unable to launch any applications. They will bounce endlessly in the dock and activity monitor, but never open correctly.
    Also, they are not force-quittable.
    Eventually I have to hard-reboot. On reboot, everything works fine again.
    Worrying!
    Any ideas?
    Logs don't show anything particularly interesting, excerpted below:
    17/11/2007 23:36:30 kernel AppleYukon2: 00000000,23a28000 sky2 - HardwareNotResponding, marking offline
    17/11/2007 23:46:30 [0x0-0x42042].com.apple.mail[323] objc[323]: FREED(id): message release sent to freed object=0x1a003c80
    17/11/2007 23:46:30 kernel AppleYukon2: 00000000,00000000 skqueue - SkEventDispatcher - ignoring event queue, hardware is not responding
    17/11/2007 23:36:31 kernel System SafeSleep
    ---hibernation stuff---
    17/11/2007 23:46:31 kernel sleep
    17/11/2007 23:46:31 kernel System Wake
    17/11/2007 23:46:31 kernel USB caused wake event (EHCI)
    17/11/2007 23:46:31 kernel 11D beacon causing regdomain change to CC 840
    17/11/2007 23:46:31 kernel en1: 802.11d country code set to 'US'.
    17/11/2007 23:46:31 kernel en1: Supported channels 1 2 3 4 5 6 7 8 9 10 11 36 40 44 48 52 56 60 64 149 153 157 161 165
    17/11/2007 23:46:41 ReportCrash[343] Formulating crash report for process Mail[323]
    17/11/2007 23:46:42 com.apple.launchd[69] ([0x0-0x42042].com.apple.mail[323]) Exited abnormally: Illegal instruction
    17/11/2007 23:46:43 SoftwareUpdateCheck[347] Checking for updates
    17/11/2007 23:46:46 ReportCrash[343] Saved crashreport to /Users/dvydra/Library/Logs/CrashReporter/Mail2007-11-17-234631macbook-pro-15.crash using uid: 501 gid: 20, euid: 501 egid: 20
    17/11/2007 23:46:53 /usr/sbin/ocspd[355] starting
    17/11/2007 23:47:37 installdb[359] Opened receipt database on '/' with schema 17.
    17/11/2007 23:48:00 installdb[360] Opened receipt database on '/' with schema 17.
    17/11/2007 23:48:50 com.apple.launchd[69] ([0x0-0x48048].SoftwareUpdateCheck[347]) Exited with exit code: 102
    17/11/2007 23:49:13 hdiejectd[378] running
    17/11/2007 23:49:20 kernel Finder[92] Unable to clear quarantine `Read Me.txt': 30
    17/11/2007 23:49:47 /usr/sbin/spindump[388] process 387 is being monitored
    17/11/2007 23:49:49 /usr/sbin/spindump[388] process 387 is being force quit
    ----------------------------------------------------------

    Okay, I have found something which makes things better. My MBP had a Belkin USB hub connected to a Belkin KVM for keyboard/mouse/screen sharing - which all worked fine before Leopard. The keyboard and Mouse are Microsoft ones and I had the Mac IntelliPoint and IntelliType drivers installed.
    So I uninstalled those drivers and disconnected the hub and now things are much better. When I open my MBP lid, it wakes from sleep and I can use it. No more hard reboots. I figure its more likely that the drivers were the problem than the Belkin hardware.
    I am still having the occasional hang - but not as much as before - ie it is now usable and I am not thinking of going back to Tiger.
    I have the latest version of Parallels installed and found comments on another thread that that may be causing problems - will wait for an upgrade from them.

  • STILL can't open Mail after 10.6.8 update

    I have tried everything suggested on previous posts.  I went into CrashPlan, fetched my backup mail, dropped it in Applications.  Tried opening it, to no avail,  Then re-installed the update.  Still nothing.  Tried this several times.  Further, I've just received my regular notice the CrashPlan backed up today, which I think means they have now backed up the messed up mail and I can no longer access my original mail application??  HELP.

    Make an appointment with the Genius' at an Apple Store. This is a new problem with the "automatic update". My mail was working great until I did the normal automatic updates. After the update my mail icon would just bounce once and the message about my version not working. I also did the dropping in my ap folder, didn't work.
    Prior to my Genius appt. I had re-installed mail from the "applications" from original "Install OS X" dvd. Not the "application install dvd". It gave me the original version. I then tried to do an update but it said it was updated. Which was impossible because the computer is 1 1/2 yrs old and there were many updates from then til now. Maybe my 2012-004 worked because i had re-installed mail from my original dvd that came with my computer.
    Going to the Genius is free, (but an appt. is necessary) and they ask each other if they do not know right off the bat, it worked great for me. Best of luck...

  • Can not receive mail after last sever update

    After the last server update (9/26/05, Version 10.4.2), mail service no longer receives emails. I can only send email via Squirrel Mail cut cannot receive; cannot receive or send emails via mail client (i.e., Outlook Express).
    Any help you can provide is greatly appreciated.
    Below is the message the sender receives when trying to email me.
    This is the Postfix program at host localhost.
    I'm sorry to have to inform you that your message could not be
    be delivered to one or more recipients. It's attached below.
    For further assistance, please send mail to <postmaster>
    If you do so, please include this problem report. You can
    delete your own text from the attached returned message.
    The Postfix program
    <[email protected]>: host /var/imap/socket/lmtp[/var/imap/socket/lmtp] said:
    550-Mailbox unknown. Either there is no mailbox associated with this
    550-name or you do not have authorization to see it. 550 5.1.1 User unknown
    (in reply to RCPT TO command)
    Below is my postconf:
    localhost:~ simon$ postconf -n
    command_directory = /usr/sbin
    config_directory = /etc/postfix
    content_filter = smtp-amavis:[127.0.0.1]:10024
    daemon_directory = /usr/libexec/postfix
    debugpeerlevel = 2
    enableserveroptions = yes
    html_directory = no
    inet_interfaces = all
    mail_owner = postfix
    mailboxsizelimit = 0
    mailbox_transport = cyrus
    mailq_path = /usr/bin/mailq
    manpage_directory = /usr/share/man
    messagesizelimit = 10485760
    mydestination = $myhostname,localhost.$mydomain,localhost,mail.jeablau.com,mail.emdprep.com
    mydomain = localhost
    mydomain_fallback = localhost
    myhostname = localhost
    mynetworks = 127.0.0.1/32,192.168.1.108/32,207.70.169.221/32
    mynetworks_style = host
    newaliases_path = /usr/bin/newaliases
    queue_directory = /private/var/spool/postfix
    readme_directory = /usr/share/doc/postfix
    relayhost =
    sample_directory = /usr/share/doc/postfix/examples
    sendmail_path = /usr/sbin/sendmail
    setgid_group = postdrop
    smtpdpw_server_securityoptions = login,plain
    smtpdrecipientrestrictions = permitsasl_authenticated,permit_mynetworks,reject_unauthdestination,permit
    smtpdsasl_authenable = yes
    smtpdtls_keyfile =
    smtpduse_pwserver = yes
    unknownlocal_recipient_rejectcode = 550
    virtualmailboxdomains = hash:/etc/postfix/virtual_domains
    virtual_transport = lmtp:unix:/var/imap/socket/lmtp

    Jeff,
    Thanks for the help. It kind of fixed the problem. With your suggestions, I no longer receive the error message from the sender's end. However, I'm still not receiving email. Below is my postconf.
    Your help is greatly appreciated.
    command_directory = /usr/sbin
    config_directory = /etc/postfix
    content_filter = smtp-amavis:[127.0.0.1]:10024
    daemon_directory = /usr/libexec/postfix
    debugpeerlevel = 2
    enableserveroptions = yes
    html_directory = no
    inet_interfaces = all
    mail_owner = postfix
    mailboxsizelimit = 0
    mailbox_transport = cyrus
    mailq_path = /usr/bin/mailq
    manpage_directory = /usr/share/man
    messagesizelimit = 10485760
    mydestination = $myhostname,localhost.$mydomain,localhost,jeablau.com,emdpep.com,mail.jeablau.c om,mail.emdprep.com
    mydomain = localhost
    mydomain_fallback = localhost
    myhostname = localhost
    mynetworks = 127.0.0.1/32,192.168.1.108/24,207.70.169.221/32
    mynetworks_style = host
    newaliases_path = /usr/bin/newaliases
    queue_directory = /private/var/spool/postfix
    readme_directory = /usr/share/doc/postfix
    relayhost =
    sample_directory = /usr/share/doc/postfix/examples
    sendmail_path = /usr/sbin/sendmail
    setgid_group = postdrop
    smtpdpw_server_securityoptions = login,plain
    smtpdrecipientrestrictions = permitsasl_authenticated,permit_mynetworks,reject_unauthdestination,permit
    smtpdsasl_authenable = yes
    smtpdtls_keyfile =
    smtpduse_pwserver = yes
    unknownlocal_recipient_rejectcode = 550
    virtualmailboxdomains = hash:/etc/postfix/virtual_domains
    virtual_transport = lmtp:unix:/var/imap/socket/lmtp

  • Can't send mail after AirPort update

    After I installed the latest AirPort update, I can no longer send emails through Mac Mail but I can still receive them. I can send emails if I plug my MacBook directly into the cable service router through the ethernet port. According to my ISP (Cox), I have Mail configured to work properly. Is there a setting on the AirPort that I need to change?

    The error message says:
    "The sender address [my email address] was rejected by the server smtp.east.cox.net.
    Select a different outgoing mail server from the list below or click Try Later to leave the message in your Outbox until it can be delivered."
    There is only one server I can use. There is a button for the Connection Doctor, and that shows all green lights.

  • Can't send mail after updating to 10.5.5

    I don't know if it could be coincidence, but I had been receiving and sending email all day long until I installed the latest update (10.5.5). Since the installation completed, I have not been able to send mails (receiving is okay). The program keeps trying, but just keep son trying with nothing happening. I checked the SMTP's for my accounts — nothing has changed there. Don't know what's up.

    Consider yourselves lucky. I can't send or receive email or connect to the internet AT ALL since installing whatever updates came down this morning (9/24/08). I can connect to my wireless and I can connect to AT&T using my USB wireless 3G thingy, but I can't access email or the web. Problem started immediately after this mornings Software Update rebooted my machine. I'm downloading the dmg on my work PC now and am hoping reinstalling will fix the issue(s).

  • Can't send mails after 10.4.6 update

    Well, the topic pretty much says it all. After I upgraded to 10.4.6 I can no longer send mails. This happens with three completely unrelated SMTP servers, so I'm pretty sure it's a Mail problem. Receiving mails works without any problems and excepte the return of the ugly bubbles everything else is working fine as well.
    I already re-entered my login values, didn't change a thing.

    I didn't even update. One day Mail just stopped sending mail. Can't remember doing anything specific. Looks like a common problem these days from having read several discussion boards. I'm on the bandwagon. Reinstalled, created new accounts, triple checked, checked with ISP, disabled password authentication...
    I even tried downloading another mail program, Revolver, but that can't send either, so I'm stumped, both recieved mail just dandy. In Revolver it gives a better hint to the problem "SMTP Error 103 (Name Resolution Error)", Doesn't help much though. As I understand, 103 is just a general error anyway.

Maybe you are looking for