ISAM Error -144

Hi,
Can some one help me out why the following error is coming. I tried with the following options of Translation Isolation in my Connection object:
a. Read committed
b. Read Uncommited
c. Repeatable read
But still the error keep coming. The good thing is the required values are selected properly. But somehow i want to get rid of this error. Does any one had similar problem before??
Exception Occurred to get ResultSet : SELECT b.u_objpg FROM dbew13:doc_tl a, OUTER dbeu15:cchpg2_t b WHERE b.n_objid = a.n_object and a.n_doc_ser= ?
java.sql.SQLException: Could not position within a file via an index.
(-144)ISAM error: key value locked
     java.lang.Throwable(java.lang.String)
     java.lang.Exception(java.lang.String)
     java.sql.SQLException(java.lang.String, java.lang.String, int)
     void com.informix.jdbc.IfxSqli.errorDone()
     void com.informix.jdbc.IfxSqli.receiveError()
     void com.informix.jdbc.IfxSqli.receiveMessage()
     void com.informix.jdbc.IfxSqli.sendStatementQuery(com.informix.jdbc.IfxStatement, boolean, com.informix.jdbc.IfxResultSetMetaData)
     void com.informix.jdbc.IfxSqli.executeStatementQuery(java.sql.Statement, boolean, java.sql.ResultSetMetaData)
     void com.informix.jdbc.IfxSqli.executeStatementQuery(java.sql.Statement, boolean)
     void com.informix.jdbc.IfxResultSet.executeQuery(boolean)
     java.sql.ResultSet com.informix.jdbc.IfxStatement.executeQueryImpl(boolean)
     java.sql.ResultSet com.informix.jdbc.IfxPreparedStatement.executeQuery()
     java.sql.ResultSet com.aexp.eaim.iu.isp.util.Dbcon.query(java.sql.PreparedStatement)
     java.util.Vector com.aexp.eaim.iu.dconv.Deconversion.checkObjInCache2(int)
     java.util.Vector com.aexp.eaim.iu.dconv.Deconversion.getObjInCache(int, int, int, int, int)
     java.util.Vector com.aexp.eaim.iu.dconv.Deconversion.checkObjInCache12(int)
     void com.aexp.eaim.iu.dconv.Deconversion.getIndexAndImage()
     void com.aexp.eaim.iu.dconv.Deconversion.run()
Have a nice day!
Babu

Key value locked? That sounds like a problem specific to your database (which appears to be Informix). You might try posting this question in a forum which is more likely to have people with Informix database expertise if nobody answers here.

Similar Messages

  • ISAM Error 2004

    Hi there
    Can anyone please tell me what this undocumented error is about in the Architect in ADS 11.
    AQE Error: State = S0000; NativeError = 2004; [iAnywhere  Solutions] Advantage SQL Engine] [ISAM]ISAM error]
    It's happening  on a Windows 8.1 machine when copying data from a table in one database to a table of the same name in a linked database.
    It's a process I've done many times before on other machines, and if I run the select portion of the script then I get all the data, so it does look like an issue with the insert stage.  Folder permissions look fine.
    Any help would be appreciated.
    Thanks
    John

    John,
      I don't recognize the 2004 error as one of our native error codes. Are you using Remote or Local server? Are you linking two Advantage data dictionaries together or doing a link to another database?
      I don't expect any issues with Windows 8.1 but it has not gone through our testing process yet.
    Chris

  • Getting "Couldnot find Installable ISAM" error in script task in SSIS 2005 when trying to open (.xlsx files) Excel 2007-2010 files using VB script in Visual Studio 2005

    Hi Experts,
    I am trying to open .xlsx file in script task of SSIS 2005. I am using the 32-bit AccessDatabaseEngine driver with the Connection string as "Provider= Microsoft.ACE.OLEDB.12.0; Data Source=xlsx file path; Extended Properties="Excel 12.0 Xml;
    HDR=YES"" in script task.
    When we debug the VB script in Visual Studio 2005 and encounters the statement app.open() it throws the error "Couldn't find installable ISAM".
    My SQL server version is 2005 SP2 DE
    OS is Windows server 2003 EE SP2
    Could anyone please let me know what is the resolution for this error?
    Thanks and Regards,
    Adesh

    Hi Adesh,
    First, make sure the package runs in 32-bit runtime mode (set Run64BitRuntime property to False) because you are using the 32-bit ACE OLE DB Provider. If it is not the case, the issue may occur due to the corrupted drivers or registry keys. You can try to
    reinstall the 2007 Office System Driver: Data Connectivity Components as Arthur suggested.
    Regards,
    Mike Yin
    TechNet Community Support

  • Directly printing works - but viewer fails with an error

    Hey,
    we are using: Crystal Reports 2011 and runtime for VS2010.
    I open and print my reports via c#. The directly printing works fine. But the viewer don't works. It's really crazy, because directly printing and viewing are using the same methods for database login etc.
    At preview a form with the crystalreportsviewer will be opened and the reportsource is being set. After that the viewer shows the progress box. After a short while the progress box disappears and the following error is shown:
    Crystal Report Windows Forms Viewer
    Die Abfragen zum Abrufen der für diesen Bericht erforderlichen Daten können nicht ermittelt werden.
    Daten konnten nicht aus Datenbank abgerufen werden.
    Fehler in der Datei CS_201001_u {5BF5FF1B-C662-4A1E-80CA-B4BEB0124295}.rpt:
    Daten konnten nicht aus Datenbank abgerufen werden.
    OK  
    Translated in english:
    Crystal Report Windows Forms Viewer
    The queries to retrieve the required data for this report can not be determined.
    Fehler in der Datei CS_201001_u {5BF5FF1B-C662-4A1E-80CA-B4BEB0124295}.rpt:
    Data could not be retrieved from database.
    OK  
    But the database logon methods etc. are all the same as at directly printing. What could it be?
                this.crystalReportViewer.ShowPrintButton = false;
                this.crystalReportViewer.ReportSource = pMainCRWReport;
                this.crystalReportViewer.ShowProgressAnimation(this._DruckOptionen.ShowDruckstatus);
                if (pPreviewOptions.Zoomlevel == 1 || pPreviewOptions.Zoomlevel == 2 ||
                    (pPreviewOptions.Zoomlevel >= 25 && pPreviewOptions.Zoomlevel <= 400))
                    this.crystalReportViewer.Zoom(pPreviewOptions.Zoomlevel);
                                pMainCRWReport.PrintToPrinter(pReport.Druckoptionen.AnzahlKopien,
                                                              pReport.Druckoptionen.KopieSeitenSortiert,
                                                              pReport.Druckoptionen.StartPage,
                                                              pReport.Druckoptionen.EndPage);
    pMainCRWReport is ReportDocument.

    Yes, it looks like that. I don't use postbacks or sessions.
    I have inserted the following code just before the ReportSource of the viewer will be set.
    ReportDocument doc = (ReportDocument)pMainCRWReport;
    foreach (Table table in doc.Database.Tables)
           MessageBox.Show(string.Format("{0}: {1}", table.Name, table.TestConnectivity().ToString()));
    All TestConnectivity returning true!
    CrystalDecisions.CrystalReports.Engine.InternalException: Daten konnten nicht aus Datenbank abgerufen werden.
    Details:  Datenbankanbietercode: -243
    Daten konnten nicht aus Datenbank abgerufen werden.
    Fehler in der Datei CS_201001_u {870C483C-D947-4FEA-A1C6-1AD0DC4A2805}.rpt:
    Daten konnten nicht aus Datenbank abgerufen werden.
    Details:  Datenbankanbietercode: -243 ---> System.Runtime.InteropServices.COMException (0x800002D3): Daten konnten nicht aus Datenbank abgerufen werden.
    Details:  Datenbankanbietercode: -243
    Daten konnten nicht aus Datenbank abgerufen werden.
    Fehler in der Datei CS_201001_u {870C483C-D947-4FEA-A1C6-1AD0DC4A2805}.rpt:
    Daten konnten nicht aus Datenbank abgerufen werden.
    Details:  Datenbankanbietercode: -243
       bei CrystalDecisions.ReportAppServer.Controllers.ReportSourceClass.GetPage(PageRequestContext pPageRequestContext)
       bei CrystalDecisions.ReportSource.EromReportSourceBase.GetPage(PageRequestContext pageReqContext)
       --- Ende der internen Ausnahmestapelüberwachung ---
       bei CrystalDecisions.Windows.Forms.ReportDocumentBase.GetPage(Int32 pageN)
       bei CrystalDecisions.Windows.Forms.DocumentControl.ShowNthPage(Int32 PageNumber)
       bei CrystalDecisions.Windows.Forms.DocumentControl.ShowFirstPage()
       bei CrystalDecisions.Windows.Forms.PageView.ShowFirstPageEx()/
    OK  
    The error -243 is an informix error:
    Could not position within a table table-name.
    The database server cannot set the file position to a particular row within the file that represents a table. Check the accompanying ISAM error code for more information. A hardware error might have occurred, or the table or index might have been corrupted (truncated). Unless the ISAM error code or an operating-system message points to another cause, run the oncheck utility (secheck with IBM Informix SE or tbcheck with IBM Informix OnLine) to check and repair table and index.
    It seems to be that the viewer can't read the records with are locked within a transaction. I don't understand why the direct printing works. Is it possible to set the ISOLATION LEVEL for the report database connections?
    I have tried this note but it don't works.

  • Database error CUCM7 Cluster

    Hi guys,
    I have a production cluster with 3 CUCM 7 servers onde Presence Server, no Unity or Call Center.
    I am getting errors when i try to search Devices->Phones
    The error is this:
    "Error occurred during find. java.sql.SQLException: Could not position within a table (informix.device).
    This is random, sometimes a get the output without problems.
    I check the replication status from Unified Reporting and everything is OK.
    When i run the utils dbreplication status the end of output is:
    Error returned from getRow: fetch of cur_2_2281
    SQLCODE -243 ISAM -154
    Error Details:
              243: Could not position within a table (informix.callmanager).
              154: ISAM error: Lock Timeout Expired
            Current Connection:conn8, Database:ccm7_0_2_10000_18@g_cucmpub_ccm7_0_2_10000_18
    command failed -- SQL failure (195)
    System is in an error state and replication is not working. Cdr check command has failed with error code 195
    end of the file reached
    What could be the problem and what can i do to solve it?
    Regards,
    Nuno

    I'd suggest running the DB Replication debug to see if it indicates any inconsistencies.  You do that within Unified Reporting - System Reports > Unified CM Database  Replication             Debug.
    From there, you may be able to find where the problem lies.  In either case, you can attempt to reset the DB replication within the cluster.  From the CLI on the publisher, issue "utils dbreplication reset" and then load RTMT and pull up the Replicate State from the Perf Counters.  You should see DB replication go from the current status to 0 and then the reset may take up to an hour or so.  Just watch the counters to see that each node in the cluster moves from 0 to 2 and the replicate counts match as well.  If you have problems with that, you'll need to do reset db replication in a different manner.
    Post back with your outcome.
    Hailey
    Please rate helpful posts!

  • Error in Database accessing!!!

    Hello,
    i get this error when the application is running..... this i quite often
    Error Type : SQL FETECH Cursor error, couldn't do a physical order read to
    fetch next row. (ISAM error code: -107 DB_ER_INVALID STATE)
    Class :qqdb_usageException
    Error # :[807,13]
    Detected at : qqdb_informix cursor :: vendor fetech from server at 10
    Error Time Informix SQLSTATE : 1*100, informix error : -244, server: forte,
    username : , Database stmt: Select sessionkey, , , from <table name> where
    useid = '2000'.
    exception occured(locally) on partition'....09', on node <node name> in
    environment <env name>
    Thanks in Advance
    DB_ER_INVALIDSTATE = incorrect use of a cursor or other database object(For
    example, where
    a program attempts to fetech from a cursor that is not open).

    Hmm,
    From the informix finderror utility
    <START QUOTE>
    -107 ISAM error: record is locked.
    Another user request has locked the record that you requested or the file
    (table) that contains it. This condition is normally transient. A program
    can recover by rolling back the current transaction, waiting a short time,
    and re-executing the operation. For interactive SQL, redo the operation. For
    C-ISAM programs, review the program logic and make sure that it can handle
    this case, which is a normal event in multiprogramming systems. You can
    obtain exclusive access to a table by passing the ISEXCLLOCK flag to isopen.
    For SQL programs, review the program logic and make sure that it can handle
    this case, which is a normal event in multiprogramming systems. The simplest
    way to handle this error is to use the statement SET LOCK MODE TO WAIT. For
    bulk updates, see the LOCK TABLE statement and the EXCLUSIVE clause of the
    DATABASE statement.
    <END QUOTE>
    I have found that whenever I see the phrase "couldn't do a physical
    order read to fetch next row." it means the database has tried to read a
    locked record and lock mode is set to NO WAIT or the lock mode has timed
    out.
    There are a number of solutions. The main one being to try again
    later.
    Cheers
    David McPaul
    Lumley Technology
    -----Original Message-----
    From: Forte App [mailto:[email protected]]
    Sent: Thursday, November 18, 1999 8:45 AM
    To: [email protected]
    Subject: (forte-users) Error in Database accessing!!!
    Hello,
    i get this error when the application is running..... this i
    quite often
    Error Type : SQL FETECH Cursor error, couldn't do a physical
    order read to
    fetch next row. (ISAM error code: -107 DB_ER_INVALID STATE)
    Class :qqdb_usageException
    Error # :[807,13]
    Detected at : qqdb_informix cursor :: vendor fetech from server at 10
    Error Time Informix SQLSTATE : 1*100, informix error : -244,
    server: forte,
    username : , Database stmt: Select sessionkey, , , from
    <table name> where
    useid = '2000'.
    exception occured(locally) on partition'....09', on node
    <node name> in
    environment <env name>
    Thanks in Advance
    DB_ER_INVALIDSTATE = incorrect use of a cursor or other
    database object(For
    example, where
    a program attempts to fetech from a cursor that is not open).
    For the archives, go to: http://lists.sageit.com/forte-users and use
    the login: forte and the password: archive. To unsubscribe,
    send in a new
    email the word: 'Unsubscribe' to: [email protected]

  • 64bit ACE 12.0 - "Could not find installable ISAM"

    Hi!
    I want to use openrowset to read a table or two from an excel file..
    Im getting this "Could not find installable ISAM" error and after trawling the forums for days I haven't found any solutions that work for me..
    Here's my query:
    SELECT * FROM OPENROWSET('Microsoft.ACE.OLEDB.12.0','Excel 14.0;Database=E:\Project Data\339_IMP\Code_labels_latest_Sep09_breakdown.xls', 'SELECT * FROM [loftins$]')
    And here's the error message:
    OLE DB provider "Microsoft.ACE.OLEDB.12.0" for linked server "(null)" returned message "Could not find installable ISAM.".
    Msg 7303, Level 16, State 1, Line 1
    Cannot initialize the data source object of OLE DB provider "Microsoft.ACE.OLEDB.12.0" for linked server "(null)".
    I am running SQL Server 2008 r2 64-bit on Windows Server 2008 64-bit. I have installed Office 2010 and AccessDatabaseEngine_X64.exe available from
    http://www.microsoft.com/downloads/details.aspx?familyid=C06B8369-60DD-4B64-A44B-84B371EDE16D&displaylang=en
    I have tried reinstalling the ACE drivers and restarting the server. I am now slowly losing the will to live..
    Please can someone help me? Any suggestions welcome..
    Cheers,
    Tom
    PS I have looked at and attempted the answer here:
    http://social.msdn.microsoft.com/Forums/en-US/sqldataaccess/thread/ebb5e5de-8ac9-4e1b-8a5a-fac8527ccd4e
    Changing Excel 14.0 to Excel 12.0, so that my query was:
    SELECT * FROM OPENROWSET('Microsoft.ACE.OLEDB.12.0','Excel 12.0;Database=E:\Project Data\339_IMP\Code_labels_latest_Sep09_breakdown.xls', 'SELECT * FROM [loftins$]')
    changed the error to this:
    Msg 7399, Level 16, State 1, Line 1
    The OLE DB provider "Microsoft.ACE.OLEDB.12.0" for linked server "(null)" reported an error. Access denied.
    Msg 7350, Level 16, State 2, Line 1
    Cannot get the column information from OLE DB provider "Microsoft.ACE.OLEDB.12.0" for linked server "(null)".
    And corrupted my XLS (and XLSX) file(s).

    Hi Greg,
    Thanks for the response.
    I ran:
    SELECT * FROM OPENROWSET('Microsoft.ACE.OLEDB.12.0','Excel 12.0;Database=E:\Project Data\339_IMP\Code_labels_latest_Sep09_breakdown.xls;HDR=YES;IMEX=1', 'SELECT * FROM [loftins$]')
    And I got:
    Msg 7399, Level 16, State 1, Line 1
    The OLE DB provider "Microsoft.ACE.OLEDB.12.0" for linked server "(null)" reported an error. Access denied.
    Msg 7350, Level 16, State 2, Line 1
    Cannot get the column information from OLE DB provider "Microsoft.ACE.OLEDB.12.0" for linked server "(null)".

  • Mail app on OSX crashes when I do something on iPhone mail app

    So whenever I have Mail.app open on my mac(which I would do all the time), and I see a new mail on my iphone (same mail.app) and I try to archive, reply, delete or whatever to do, the app on My Mac crashes. Straight after I do ANYTHING on my iphone .
    I do use Gmail with IMAP enabled.
    I am copying the crash details here.( this happened straight after I replied to one of my emails on my iPhone.)
    Process:         Mail [3221]
    Path:            /Applications/Mail.app/Contents/MacOS/Mail
    Identifier:      com.apple.mail
    Version:         6.3 (1503)
    Build Info:      Mail-1503000000000000~2
    Code Type:       X86-64 (Native)
    Parent Process:  launchd [142]
    User ID:         502
    Date/Time:       2013-05-18 09:17:19.579 +0100
    OS Version:      Mac OS X 10.8.3 (12D78)
    Report Version:  10
    Interval Since Last Report:          84079 sec
    Crashes Since Last Report:           2
    Per-App Interval Since Last Report:  57312 sec
    Per-App Crashes Since Last Report:   2
    Anonymous UUID:                      9EF5639B-5DB6-28A0-BAE6-2A924BDC9987
    Crashed Thread:  15  Dispatch queue: com.apple.root.default-priority
    Exception Type:  EXC_CRASH (SIGABRT)
    Exception Codes: 0x0000000000000000, 0x0000000000000000
    Application Specific Information:
    *** Terminating app due to uncaught exception 'NSInvalidArgumentException', reason: '-[ABRecord setValue: 'mazsi1911@***' forKey: 'Email'] invalid value'
    abort() called
    terminate called throwing an exception
    Application Specific Backtrace 1:
    0   CoreFoundation                      0x00007fff8b0bfb06 __exceptionPreprocess + 198
    1   libobjc.A.dylib                     0x00007fff8d8073f0 objc_exception_throw + 43
    2   CoreFoundation                      0x00007fff8b0bf8dc +[NSException raise:format:] + 204
    3   AddressBook                         0x00007fff8a694026 -[ABRecord setValue:forKey:] + 116
    4   Message                             0x00007fff8e1761f7 __42-[MFRecentsManager _updateRecentsForKeys:]_block_invoke_0 + 719
    5   Foundation                          0x00007fff8cb1112f -[NSBlockOperation main] + 124
    6   Foundation                          0x00007fff8cae7036 -[__NSOperationInternal start] + 684
    7   Foundation                          0x00007fff8caee861 __block_global_6 + 129
    8   libdispatch.dylib                   0x00007fff8e539f01 _dispatch_call_block_and_release + 15
    9   libdispatch.dylib                   0x00007fff8e5360b6 _dispatch_client_callout + 8
    10  libdispatch.dylib                   0x00007fff8e5371fa _dispatch_worker_thread2 + 304
    11  libsystem_c.dylib                   0x00007fff90fedd0b _pthread_wqthread + 404
    12  libsystem_c.dylib                   0x00007fff90fd81d1 start_wqthread + 13
    Thread 0:: Dispatch queue: com.apple.main-thread
    0   libsystem_kernel.dylib                  0x00007fff91d31686 mach_msg_trap + 10
    1   libsystem_kernel.dylib                  0x00007fff91d30c42 mach_msg + 70
    2   com.apple.CoreFoundation                0x00007fff8b05c233 __CFRunLoopServiceMachPort + 195
    3   com.apple.CoreFoundation                0x00007fff8b061916 __CFRunLoopRun + 1078
    4   com.apple.CoreFoundation                0x00007fff8b0610e2 CFRunLoopRunSpecific + 290
    5   com.apple.HIToolbox                     0x00007fff937cfeb4 RunCurrentEventLoopInMode + 209
    6   com.apple.HIToolbox                     0x00007fff937cfc52 ReceiveNextEventCommon + 356
    7   com.apple.HIToolbox                     0x00007fff937cfae3 BlockUntilNextEventMatchingListInMode + 62
    8   com.apple.AppKit                        0x00007fff86bb3563 _DPSNextEvent + 685
    9   com.apple.AppKit                        0x00007fff86bb2e22 -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 128
    10  com.apple.AppKit                        0x00007fff86baa1d3 -[NSApplication run] + 517
    11  com.apple.AppKit                        0x00007fff86b4ec06 NSApplicationMain + 869
    12  libdyld.dylib                           0x00007fff92be37e1 start + 1
    Thread 1:: Dispatch queue: com.apple.libdispatch-manager
    0   libsystem_kernel.dylib                  0x00007fff91d33d16 kevent + 10
    1   libdispatch.dylib                       0x00007fff8e538dea _dispatch_mgr_invoke + 883
    2   libdispatch.dylib                       0x00007fff8e5389ee _dispatch_mgr_thread + 54
    Thread 2:
    0   libsystem_kernel.dylib                  0x00007fff91d31686 mach_msg_trap + 10
    1   libsystem_kernel.dylib                  0x00007fff91d30c42 mach_msg + 70
    2   com.apple.CoreFoundation                0x00007fff8b05c233 __CFRunLoopServiceMachPort + 195
    3   com.apple.CoreFoundation                0x00007fff8b061916 __CFRunLoopRun + 1078
    4   com.apple.CoreFoundation                0x00007fff8b0610e2 CFRunLoopRunSpecific + 290
    5   com.apple.Foundation                    0x00007fff8caf2f5e -[NSRunLoop(NSRunLoop) runMode:beforeDate:] + 268
    6   com.apple.Foundation                    0x00007fff8ca8b75a -[NSRunLoop(NSRunLoop) run] + 74
    7   com.apple.CoreMessage                   0x00007fff92be7e17 +[_NSSocket _runIOThread] + 77
    8   com.apple.Foundation                    0x00007fff8caedcd2 __NSThread__main__ + 1345
    9   libsystem_c.dylib                       0x00007fff90feb7a2 _pthread_start + 327
    10  libsystem_c.dylib                       0x00007fff90fd81e1 thread_start + 13
    Thread 3:: com.apple.CFSocket.private
    0   libsystem_kernel.dylib                  0x00007fff91d33322 __select + 10
    1   com.apple.CoreFoundation                0x00007fff8b0a0f46 __CFSocketManager + 1302
    2   libsystem_c.dylib                       0x00007fff90feb7a2 _pthread_start + 327
    3   libsystem_c.dylib                       0x00007fff90fd81e1 thread_start + 13
    Thread 4:
    0   libsystem_kernel.dylib                  0x00007fff91d336d6 __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x00007fff90fedf4c _pthread_workq_return + 25
    2   libsystem_c.dylib                       0x00007fff90fedd13 _pthread_wqthread + 412
    3   libsystem_c.dylib                       0x00007fff90fd81d1 start_wqthread + 13
    Thread 5:
    0   libsystem_kernel.dylib                  0x00007fff91d336d6 __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x00007fff90fedf4c _pthread_workq_return + 25
    2   libsystem_c.dylib                       0x00007fff90fedd13 _pthread_wqthread + 412
    3   libsystem_c.dylib                       0x00007fff90fd81d1 start_wqthread + 13
    Thread 6:
    0   libsystem_kernel.dylib                  0x00007fff91d336d6 __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x00007fff90fedf4c _pthread_workq_return + 25
    2   libsystem_c.dylib                       0x00007fff90fedd13 _pthread_wqthread + 412
    3   libsystem_c.dylib                       0x00007fff90fd81d1 start_wqthread + 13
    Thread 7:
    0   libsystem_kernel.dylib                  0x00007fff91d336d6 __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x00007fff90fedf4c _pthread_workq_return + 25
    2   libsystem_c.dylib                       0x00007fff90fedd13 _pthread_wqthread + 412
    3   libsystem_c.dylib                       0x00007fff90fd81d1 start_wqthread + 13
    Thread 8:: -[IMAPAccount _fetchUnreadCountsCheckForNewMessages:]  Dispatch queue: com.apple.root.default-overcommit-priority
    0   libsystem_kernel.dylib                  0x00007fff91d330fa __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x00007fff90ff0023 _pthread_cond_wait + 927
    2   com.apple.Foundation                    0x00007fff8ca8db89 -[__NSOperationInternal waitUntilFinishedOrTimeout:] + 227
    3   com.apple.IMAP                          0x00007fff8f749328 -[IMAPClientOperationQueue waitUntilOperationIsFinished:] + 167
    4   com.apple.IMAP                          0x00007fff8f76280e -[IMAPGateway waitUntilClientOperationIsFinished:] + 168
    5   com.apple.IMAP                          0x00007fff8f762756 -[IMAPGateway addClientOperation:toQueueAndWaitUntilFinished:] + 411
    6   com.apple.IMAP                          0x00007fff8f76e361 -[IMAPMailboxSyncEngine _getNewMessageSkeletonsWithMonitor:messagesFromOpen:] + 2960
    7   com.apple.IMAP                          0x00007fff8f76c571 -[IMAPMailboxSyncEngine _goWithMessages:] + 889
    8   com.apple.MessageFramework              0x00007fff8e04cb72 -[LibraryIMAPStore openSynchronouslyUpdatingMetadata:withOptions:] + 373
    9   com.apple.MessageFramework              0x00007fff8e066a56 -[LibraryIMAPStore _fetchForCheckingNewMail:] + 53
    10  com.apple.MessageFramework              0x00007fff8e07447a -[RemoteStoreAccount _synchronizeMailboxesSynchronously] + 269
    11  com.apple.MessageFramework              0x00007fff8e072676 -[IMAPAccount _fetchUnreadCountsCheckForNewMessages:] + 911
    12  com.apple.CoreFoundation                0x00007fff8b0b309c __invoking___ + 140
    13  com.apple.CoreFoundation                0x00007fff8b0b2f37 -[NSInvocation invoke] + 263
    14  com.apple.CoreMessage                   0x00007fff92c4a867 -[MonitoredInvocation invoke] + 225
    15  com.apple.CoreMessage                   0x00007fff92c62eb2 -[ThrowingInvocationOperation main] + 33
    16  com.apple.CoreMessage                   0x00007fff92c0f042 -[_MFInvocationOperation main] + 431
    17  com.apple.Foundation                    0x00007fff8cae7036 -[__NSOperationInternal start] + 684
    18  com.apple.Foundation                    0x00007fff8caee861 __block_global_6 + 129
    19  libdispatch.dylib                       0x00007fff8e539f01 _dispatch_call_block_and_release + 15
    20  libdispatch.dylib                       0x00007fff8e5360b6 _dispatch_client_callout + 8
    21  libdispatch.dylib                       0x00007fff8e5371fa _dispatch_worker_thread2 + 304
    22  libsystem_c.dylib                       0x00007fff90fedd0b _pthread_wqthread + 404
    23  libsystem_c.dylib                       0x00007fff90fd81d1 start_wqthread + 13
    Thread 9:
    0   libsystem_kernel.dylib                  0x00007fff91d336d6 __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x00007fff90fedf4c _pthread_workq_return + 25
    2   libsystem_c.dylib                       0x00007fff90fedd13 _pthread_wqthread + 412
    3   libsystem_c.dylib                       0x00007fff90fd81d1 start_wqthread + 13
    Thread 10:: Dispatch queue: com.apple.root.default-overcommit-priority
    0   libsystem_kernel.dylib                  0x00007fff91d31686 mach_msg_trap + 10
    1   libsystem_kernel.dylib                  0x00007fff91d30c42 mach_msg + 70
    2   com.apple.CoreFoundation                0x00007fff8b05c233 __CFRunLoopServiceMachPort + 195
    3   com.apple.CoreFoundation                0x00007fff8b061916 __CFRunLoopRun + 1078
    4   com.apple.CoreFoundation                0x00007fff8b0610e2 CFRunLoopRunSpecific + 290
    5   com.apple.CoreMessage                   0x00007fff92be71a9 _handleRequestWithTimeout + 1527
    6   com.apple.CoreMessage                   0x00007fff92be998b -[_NSSocket readBytes:length:error:] + 161
    7   com.apple.CoreMessage                   0x00007fff92c03b3b -[Connection _readBytesFromSocketIntoBuffer:amount:requireAllBytes:error:] + 76
    8   com.apple.CoreMessage                   0x00007fff92c03a21 -[Connection _fillBuffer:] + 764
    9   com.apple.CoreMessage                   0x00007fff92c035b3 -[Connection _readLineIntoData:error:] + 202
    10  com.apple.IMAP                          0x00007fff8f750486 -[IMAPConnection _readLineIntoData:error:] + 53
    11  com.apple.IMAP                          0x00007fff8f756e14 -[IMAPConnection(MFPrivate) _readDataOfLength:intoData:error:] + 112
    12  com.apple.IMAP                          0x00007fff8f779428 -[IMAPResponse initWithConnection:error:] + 144
    13  com.apple.IMAP                          0x00007fff8f75057a -[IMAPConnection _copyNextServerResponse:] + 55
    14  com.apple.IMAP                          0x00007fff8f7507eb -[IMAPConnection _copyNextTaggedOrContinuationResponseForCommand:exists:] + 551
    15  com.apple.IMAP                          0x00007fff8f755a87 -[IMAPConnection _responseFromSendingOperation:] + 863
    16  com.apple.IMAP                          0x00007fff8f7553d1 -[IMAPConnection executeFetch:] + 44
    17  com.apple.IMAP                          0x00007fff8f742ee2 -[IMAPClientFetchOperation executeOnConnection:] + 26
    18  com.apple.IMAP                          0x00007fff8f74f9f5 -[IMAPConnection prepareAndExecuteOperation:outWrongState:] + 1247
    19  com.apple.IMAP                          0x00007fff8f762501 -[IMAPGateway _allowClientOperationThrough:] + 1237
    20  com.apple.IMAP                          0x00007fff8f761fd4 -[IMAPGateway allowClientOperationThrough:] + 369
    21  com.apple.IMAP                          0x00007fff8f746ae3 -[IMAPClientOperation main] + 84
    22  com.apple.Foundation                    0x00007fff8cae7036 -[__NSOperationInternal start] + 684
    23  com.apple.Foundation                    0x00007fff8caee861 __block_global_6 + 129
    24  libdispatch.dylib                       0x00007fff8e539f01 _dispatch_call_block_and_release + 15
    25  libdispatch.dylib                       0x00007fff8e5360b6 _dispatch_client_callout + 8
    26  libdispatch.dylib                       0x00007fff8e5371fa _dispatch_worker_thread2 + 304
    27  libsystem_c.dylib                       0x00007fff90fedd0b _pthread_wqthread + 404
    28  libsystem_c.dylib                       0x00007fff90fd81d1 start_wqthread + 13
    Thread 11:: -[IMAPMailboxSyncEngine _goWithMessagesIfNeeded:]  Dispatch queue: com.apple.root.default-overcommit-priority
    0   libsystem_kernel.dylib                  0x00007fff91d33122 __psynch_mutexwait + 10
    1   libsystem_c.dylib                       0x00007fff90ff0dfd pthread_mutex_lock + 536
    2   com.apple.IMAP                          0x00007fff8f766caa -[IMAPMailboxSyncEngine _copyDataSource] + 32
    3   com.apple.IMAP                          0x00007fff8f76c227 -[IMAPMailboxSyncEngine _goWithMessages:] + 47
    4   com.apple.CoreFoundation                0x00007fff8b0b309c __invoking___ + 140
    5   com.apple.CoreFoundation                0x00007fff8b0b2f37 -[NSInvocation invoke] + 263
    6   com.apple.CoreMessage                   0x00007fff92c4a867 -[MonitoredInvocation invoke] + 225
    7   com.apple.CoreMessage                   0x00007fff92c62eb2 -[ThrowingInvocationOperation main] + 33
    8   com.apple.CoreMessage                   0x00007fff92c0f042 -[_MFInvocationOperation main] + 431
    9   com.apple.Foundation                    0x00007fff8cae7036 -[__NSOperationInternal start] + 684
    10  com.apple.Foundation                    0x00007fff8caee861 __block_global_6 + 129
    11  libdispatch.dylib                       0x00007fff8e539f01 _dispatch_call_block_and_release + 15
    12  libdispatch.dylib                       0x00007fff8e5360b6 _dispatch_client_callout + 8
    13  libdispatch.dylib                       0x00007fff8e5371fa _dispatch_worker_thread2 + 304
    14  libsystem_c.dylib                       0x00007fff90fedd0b _pthread_wqthread + 404
    15  libsystem_c.dylib                       0x00007fff90fd81d1 start_wqthread + 13
    Thread 12:
    0   libsystem_kernel.dylib                  0x00007fff91d336d6 __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x00007fff90fedf4c _pthread_workq_return + 25
    2   libsystem_c.dylib                       0x00007fff90fedd13 _pthread_wqthread + 412
    3   libsystem_c.dylib                       0x00007fff90fd81d1 start_wqthread + 13
    Thread 13:
    0   libsystem_kernel.dylib                  0x00007fff91d336d6 __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x00007fff90fedf4c _pthread_workq_return + 25
    2   libsystem_c.dylib                       0x00007fff90fedd13 _pthread_wqthread + 412
    3   libsystem_c.dylib                       0x00007fff90fd81d1 start_wqthread + 13
    Thread 14:
    0   libsystem_kernel.dylib                  0x00007fff91d336d6 __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x00007fff90fedf4c _pthread_workq_return + 25
    2   libsystem_c.dylib                       0x00007fff90fedd13 _pthread_wqthread + 412
    3   libsystem_c.dylib                       0x00007fff90fd81d1 start_wqthread + 13
    Thread 15 Crashed:: Dispatch queue: com.apple.root.default-priority
    0   libsystem_kernel.dylib                  0x00007fff91d33212 __pthread_kill + 10
    1   libsystem_c.dylib                       0x00007fff90fecb54 pthread_kill + 90
    2   libsystem_c.dylib                       0x00007fff91030dce abort + 143
    3   libc++abi.dylib                         0x00007fff91d559eb abort_message + 257
    4   libc++abi.dylib                         0x00007fff91d5339a default_terminate() + 28
    5   libobjc.A.dylib                         0x00007fff8d807873 _objc_terminate() + 91
    6   libc++.1.dylib                          0x00007fff89af48fe std::terminate() + 20
    7   libobjc.A.dylib                         0x00007fff8d8075de objc_terminate + 9
    8   libdispatch.dylib                       0x00007fff8e5360ca _dispatch_client_callout + 28
    9   libdispatch.dylib                       0x00007fff8e5371fa _dispatch_worker_thread2 + 304
    10  libsystem_c.dylib                       0x00007fff90fedd0b _pthread_wqthread + 404
    11  libsystem_c.dylib                       0x00007fff90fd81d1 start_wqthread + 13
    Thread 16:: com.apple.appkit-heartbeat
    0   libsystem_kernel.dylib                  0x00007fff91d33386 __semwait_signal + 10
    1   libsystem_c.dylib                       0x00007fff91075800 nanosleep + 163
    2   libsystem_c.dylib                       0x00007fff91075717 usleep + 54
    3   com.apple.AppKit                        0x00007fff86d98868 -[NSUIHeartBeat _heartBeatThread:] + 543
    4   com.apple.Foundation                    0x00007fff8caedcd2 __NSThread__main__ + 1345
    5   libsystem_c.dylib                       0x00007fff90feb7a2 _pthread_start + 327
    6   libsystem_c.dylib                       0x00007fff90fd81e1 thread_start + 13
    Thread 15 crashed with X86 Thread State (64-bit):
      rax: 0x0000000000000000  rbx: 0x0000000000000006  rcx: 0x000000010f523cd8  rdx: 0x0000000000000000
      rdi: 0x000000000000eb0b  rsi: 0x0000000000000006  rbp: 0x000000010f523d00  rsp: 0x000000010f523cd8
       r8: 0x00007fff780b6278   r9: 0x0000000000000002  r10: 0x0000000030000000  r11: 0x0000000000000206
      r12: 0x000000010f523e60  r13: 0x00007fff77b3fd48  r14: 0x000000010f524000  r15: 0x000000010f523d40
      rip: 0x00007fff91d33212  rfl: 0x0000000000000206  cr2: 0x00007fff780afff0
    Logical CPU: 0
    Binary Images:
           0x108b7d000 -        0x108f1cfff  com.apple.mail (6.3 - 1503) <2D05FC91-862F-38FD-B4E5-37A956C563C0> /Applications/Mail.app/Contents/MacOS/Mail
           0x1090a9000 -        0x1090abfff  libLatin2Converter.dylib (61) <732C6594-B046-37FA-A247-3C8D8D54E6B9> /System/Library/CoreServices/Encodings/libLatin2Converter.dylib
           0x1091e4000 -        0x1091e9fff  com.apple.audio.AppleHDAHALPlugIn (2.3.7 - 2.3.7fc4) <39BF351C-010A-3CBB-AE72-265C5C809E1B> /System/Library/Extensions/AppleHDA.kext/Contents/PlugIns/AppleHDAHALPlugIn.bun dle/Contents/MacOS/AppleHDAHALPlugIn
           0x1092d3000 -        0x1092d4fff  com.apple.AddressBook.LocalSourceBundle (2.1 - 1169) <641DB5BF-1E7A-3090-8AA3-CB11262B43FC> /System/Library/Address Book Plug-Ins/LocalSource.sourcebundle/Contents/MacOS/LocalSource
           0x1092e9000 -        0x1092ecfff  com.apple.DirectoryServicesSource (2.1 - 1169) <C1DDD61F-2F1E-3D21-80C2-38FC23DD9871> /System/Library/Address Book Plug-Ins/DirectoryServices.sourcebundle/Contents/MacOS/DirectoryServices
           0x1092f4000 -        0x109305ff7  com.apple.NSServerNotificationCenter (5.0 - 5.0) <5A605DD1-CB86-3677-B87E-039E88331FC5> /System/Library/Frameworks/ServerNotification.framework/Versions/A/ServerNotifi cation
           0x10a543000 -        0x10a545fff  apop.so (169) <2A1CAD32-5734-3D4E-868B-E773DCD192B5> /usr/lib/sasl2/apop.so
           0x10a549000 -        0x10a55dfff  dhx.so (169) <3C4D7E51-F30B-3A5B-9BB6-4426EC607E10> /usr/lib/sasl2/dhx.so
           0x10a569000 -        0x10a572ff7  digestmd5WebDAV.so (169) <D1EF0A0E-92FA-321F-9445-DD08A64C2493> /usr/lib/sasl2/digestmd5WebDAV.so
           0x10a578000 -        0x10a57afff  libplain.2.so (166) <074D7604-3435-3E01-A86B-FF102001FC5B> /usr/lib/sasl2/libplain.2.so
           0x10a583000 -        0x10a585fff  libanonymous.2.so (166) <6417EA9E-4202-31DA-A086-B58F1E92C931> /usr/lib/sasl2/libanonymous.2.so
           0x10a58a000 -        0x10a58dfff  libcrammd5.2.so (166) <866C8DD4-5086-376A-BFC7-897A40327DB4> /usr/lib/sasl2/libcrammd5.2.so
           0x10a592000 -        0x10a59bff7  libdigestmd5.2.so (166) <F2344A08-F032-35D3-9EBB-F147D4100517> /usr/lib/sasl2/libdigestmd5.2.so
           0x10a5a0000 -        0x10a5a5fff  libgssapiv2.2.so (166) <83A21AF3-FB42-3ACC-B6ED-26B23388C4F4> /usr/lib/sasl2/libgssapiv2.2.so
           0x10a5aa000 -        0x10a5acfff  pwauxprop.so (387.1) <94457D86-AB48-33B6-8C01-F08C3BC6CE53> /usr/lib/sasl2/pwauxprop.so
           0x10a5b1000 -        0x10a5b3fff  login.so (166) <1F868238-FB26-3477-B31C-67DB400D6F68> /usr/lib/sasl2/login.so
           0x10a5b7000 -        0x10a5bcfff  libntlm.so (166) <82608FB8-E225-39FF-BC83-B9D3F89D7CEC> /usr/lib/sasl2/libntlm.so
           0x10a5c1000 -        0x10a5c8fff  libotp.2.so (166) <2AE53E63-A826-3E20-9B4D-476CC712410D> /usr/lib/sasl2/libotp.2.so
           0x10a5d1000 -        0x10a5d5fff  libpps.so (169) <3C150ECF-0D94-3DBE-8AB6-7B0070700699> /usr/lib/sasl2/libpps.so
           0x10a5da000 -        0x10a5ddfff  mschapv2.so (169) <9DAC741E-6BB8-3DFA-85AD-532EB20E780B> /usr/lib/sasl2/mschapv2.so
           0x10a5e2000 -        0x10a60ffff  com.apple.DirectoryService.PasswordServerFramework (10.8 - 27.1) <81194DEC-984F-3099-B537-F70394F8492C> /System/Library/PrivateFrameworks/PasswordServer.framework/Versions/A/PasswordS erver
           0x10a625000 -        0x10a628fff  shadow_auxprop.so (169) <FE9BCBA3-7F30-303B-A815-8FADE514246E> /usr/lib/sasl2/shadow_auxprop.so
           0x10a63d000 -        0x10a63ffff  smb_nt.so (169) <F6798ECD-BBC9-3055-96E9-3A9836E36E7A> /usr/lib/sasl2/smb_nt.so
           0x10a644000 -        0x10a647fff  smb_ntlmv2.so (169) <FB9D0145-0F31-3FA1-A6B4-5F8530CC60CA> /usr/lib/sasl2/smb_ntlmv2.so
           0x10d507000 -        0x10d55afff  com.apple.AddressBook.CardDAVPlugin (10.8 - 333) <14C01B09-7E73-30C2-9882-AF4223A1A4F0> /System/Library/Address Book Plug-Ins/CardDAVPlugin.sourcebundle/Contents/MacOS/CardDAVPlugin
           0x10d7aa000 -        0x10d7b2fff  com.apple.SyncedDefaults (1.2 - 43.27) <96F2928C-A8C1-3A6A-95A4-4991BD79D65F> /System/Library/PrivateFrameworks/SyncedDefaults.framework/SyncedDefaults
           0x10e0ca000 -        0x10e0caff9 +cl_kernels (???) <323E0760-40FB-4079-810B-4AF1F6EC0077> cl_kernels
           0x10e0d4000 -        0x10e0ddfe7  libcldcpuengine.dylib (2.2.16) <DB9678F6-7D50-384A-A961-6109B61D1607> /System/Library/Frameworks/OpenCL.framework/Libraries/libcldcpuengine.dylib
           0x10e0e7000 -        0x10e0e8ffb +cl_kernels (???) <8ECE31E7-2D6C-425A-9E05-E784358ADE38> cl_kernels
           0x10e131000 -        0x10e1cbff7  unorm8_bgra.dylib (2.2.16) <5D62BED8-DF5D-3C51-94B4-57368FF10DDB> /System/Library/Frameworks/OpenCL.framework/Libraries/ImageFormats/unorm8_bgra. dylib
           0x10e205000 -        0x10e205ffb +cl_kernels (???) <5F4E865C-3AC0-464E-B6B2-D8D712118C77> cl_kernels
           0x10e224000 -        0x10e2baff7  unorm8_rgba.dylib (2.2.16) <853BEBC4-AED9-3CE2-B91D-3D666E7C7C8F> /System/Library/Frameworks/OpenCL.framework/Libraries/ImageFormats/unorm8_rgba. dylib
           0x10e2f0000 -        0x10e2f1ffa +cl_kernels (???) <633B2D07-72EC-4363-B273-8057A3161B75> cl_kernels
           0x10e8f1000 -        0x10e8f1ff9 +cl_kernels (???) <EDC14635-E091-435C-A55A-3FA6C88E95F7> cl_kernels
           0x10e8f8000 -        0x10e8f9ffb +cl_kernels (???) <31DF3EF0-319C-42C0-85B2-A00C4205C35C> cl_kernels
           0x10e90b000 -        0x10e90bff1 +cl_kernels (???) <B97C823B-2E62-4050-8FBA-0AC85F4A56C8> cl_kernels
           0x10ea5e000 -        0x10ea7bff7  com.apple.Mail.Syncer (6.0 - 1503) <9A9794BF-7C0F-3A19-86E9-ECAE9D7B0991> /System/Library/Frameworks/Message.framework/Versions/B/Resources/Syncer.syncsc hema/Contents/MacOS/Syncer
           0x10ea8a000 -        0x10ea9cff7  com.apple.syncservices.syncservicesui (7.1 - 713.1) <0BDA0163-EBA8-3923-AF99-9BDD92CD4E2D> /System/Library/PrivateFrameworks/SyncServicesUI.framework/Versions/A/SyncServi cesUI
           0x10ebd7000 -        0x10ebdbff7  com.apple.google.iaplugin (2.1 - 210) <5CE22781-4FE8-37D6-8BDF-0048331595CA> /System/Library/InternetAccounts/Google.iaplugin/Contents/MacOS/Google
           0x10ebe2000 -        0x10ebfefff  com.apple.icloud.iaplugin (1.0.1 - 238.5) <182DE70D-0255-3D0F-BE81-C7D56E069089> /System/Library/InternetAccounts/iCloud.iaplugin/Contents/MacOS/iCloud
           0x10ec12000 -        0x10ec6cfff  com.apple.AOSUI (1.1 - 150) <B0095CFE-8A28-3C89-A55B-73C628DDE66D> /System/Library/PrivateFrameworks/AOSUI.framework/Versions/A/AOSUI
           0x10eca6000 -        0x10ecb0ff7  com.apple.AppleSRP (5.0 - 1) <16B1431A-295A-386B-9159-A396877D6FE3> /System/Library/PrivateFrameworks/AppleSRP.framework/Versions/A/AppleSRP
           0x10f6af000 -        0x10f804ff7  com.apple.audio.units.Components (1.8 - 1.8) <CF8813FC-2BF8-33F6-AA0E-8F0529B32081> /System/Library/Components/CoreAudio.component/Contents/MacOS/CoreAudio
        0x7fff6877d000 -     0x7fff687b193f  dyld (210.2.3) <6900F2BA-DB48-3B78-B668-58FC0CF6BCB8> /usr/lib/dyld
        0x7fff86a46000 -     0x7fff86a5dfff  libGL.dylib (8.7.25) <15F5CB64-847B-3D3D-9663-E0523F15F513> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
        0x7fff86a5e000 -     0x7fff8768bff7  com.apple.AppKit (6.8 - 1187.37) <FAEA8B77-210F-3C0F-B9CF-85A7595CCA26> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
        0x7fff876d8000 -     0x7fff87776ff7  com.apple.ink.framework (10.8.2 - 150) <3D8D16A2-7E01-3EA1-B637-83A36D353308> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework /Versions/A/Ink
        0x7fff87788000 -     0x7fff877d3fff  com.apple.CoreMedia (1.0 - 926.87) <F51205F8-A102-359C-A9A3-22A48524C081> /System/Library/Frameworks/CoreMedia.framework/Versions/A/CoreMedia
        0x7fff877d4000 -     0x7fff87aa5ff7  com.apple.security (7.0 - 55179.11) <73958084-5BBC-3597-A751-7370B0C247E5> /System/Library/Frameworks/Security.framework/Versions/A/Security
        0x7fff87aa6000 -     0x7fff87b63ff7  com.apple.ColorSync (4.8.0 - 4.8.0) <6CE333AE-EDDB-3768-9598-9DB38041DC55> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ColorSync.framework/Versions/A/ColorSync
        0x7fff87b64000 -     0x7fff87c7dfff  com.apple.ImageIO.framework (3.2.0 - 849) <C52AED41-A7C2-300B-91FA-5AF73718D243> /System/Library/Frameworks/ImageIO.framework/Versions/A/ImageIO
        0x7fff87cc3000 -     0x7fff87e5efef  com.apple.vImage (6.0 - 6.0) <FAE13169-295A-33A5-8E6B-7C2CC1407FA7> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.fr amework/Versions/A/vImage
        0x7fff87e5f000 -     0x7fff87e60fff  libodfde.dylib (18) <015DD2A0-D59A-3547-909D-7C028A65C312> /usr/lib/libodfde.dylib
        0x7fff87e61000 -     0x7fff87e66fff  com.apple.OpenDirectory (10.8 - 151.10) <3EE3D15A-3C79-3FF1-9A95-7CE2F065E542> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/OpenDirectory
        0x7fff87e67000 -     0x7fff87eaffff  libcurl.4.dylib (69.2) <EBDBF42D-E4A6-3D05-A76B-2817D79D59E2> /usr/lib/libcurl.4.dylib
        0x7fff87eb0000 -     0x7fff87ecfff7  com.apple.ChunkingLibrary (2.0 - 133.3) <8BEC9AFB-DCAA-37E8-A5AB-24422B234ECF> /System/Library/PrivateFrameworks/ChunkingLibrary.framework/Versions/A/Chunking Library
        0x7fff87f20000 -     0x7fff8807efef  com.apple.MediaControlSender (1.7 - 170.20) <853BE89D-49B0-3922-9ED5-DDBDE9A97356> /System/Library/PrivateFrameworks/MediaControlSender.framework/Versions/A/Media ControlSender
        0x7fff8807f000 -     0x7fff880abfff  com.apple.quartzfilters (1.8.0 - 1.7.0) <B8DE45D7-1827-3379-A478-1A574A1D11D9> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzFilters .framework/Versions/A/QuartzFilters
        0x7fff880ac000 -     0x7fff880adfff  libsystem_blocks.dylib (59) <D92DCBC3-541C-37BD-AADE-ACC75A0C59C8> /usr/lib/system/libsystem_blocks.dylib
        0x7fff880ae000 -     0x7fff8815ffff  com.apple.LaunchServices (539.7 - 539.7) <DA7C602E-5E01-31B8-925D-B45360CA089F> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchS ervices.framework/Versions/A/LaunchServices
        0x7fff88160000 -     0x7fff8816afff  libcsfde.dylib (296.16) <DE03E28D-7979-3C31-9F46-2A7337CE0DBA> /usr/lib/libcsfde.dylib
        0x7fff8816b000 -     0x7fff88197ff7  libRIP.A.dylib (331.0.4) <4B261CE2-524E-3FA9-9437-B70DAC1EAB95> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libRIP.A.dylib
        0x7fff88198000 -     0x7fff881fffff  com.apple.coredav (1.0.1 - 179.7) <EEFBD7EA-82F4-32AB-8D2B-541D74FB764A> /System/Library/PrivateFrameworks/CoreDAV.framework/Versions/A/CoreDAV
        0x7fff88200000 -     0x7fff88302fff  libcrypto.0.9.8.dylib (47) <74F165AD-4572-3B26-B0E2-A97477FE59D0> /usr/lib/libcrypto.0.9.8.dylib
        0x7fff88303000 -     0x7fff88315ff7  libz.1.dylib (43) <2A1551E8-A272-3DE5-B692-955974FE1416> /usr/lib/libz.1.dylib
        0x7fff88316000 -     0x7fff88370ff7  com.apple.opencl (2.2.18 - 2.2.18) <4A78E53C-17B0-3B2D-A9EA-EF8720FE4134> /System/Library/Frameworks/OpenCL.framework/Versions/A/OpenCL
        0x7fff88371000 -     0x7fff88d016ff  com.apple.CoreGraphics (1.600.0 - 331.0.4) <4953961C-96DC-39D7-ADF5-B767F2A7E4E1> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/CoreGraphics
        0x7fff88d02000 -     0x7fff88d23fff  com.apple.Ubiquity (1.2 - 243.15) <C9A7EE77-B637-3676-B667-C0843BBB0409> /System/Library/PrivateFrameworks/Ubiquity.framework/Versions/A/Ubiquity
        0x7fff88d24000 -     0x7fff88d6bff7  com.apple.CalDAV (6.0 - 112.6) <BEE75B4F-A36E-3753-BDAF-1F766849960B> /System/Library/PrivateFrameworks/CalDAV.framework/Versions/A/CalDAV
        0x7fff88d6c000 -     0x7fff88e09ff7  com.apple.PDFKit (2.7.3 - 2.7.3) <5AE5FD4E-658F-38BC-90DD-C2B28E17ED34> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/PDFKit.framew ork/Versions/A/PDFKit
        0x7fff88e0c000 -     0x7fff88e0efff  com.apple.securityhi (4.0 - 55002) <9B6CBA92-123F-3307-A2D7-D77A8D3BF87E> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.fr amework/Versions/A/SecurityHI
        0x7fff88e6a000 -     0x7fff88eaefff  libcups.2.dylib (327.3) <71E771A1-0489-3417-8A4A-56A2C930F80C> /usr/lib/libcups.2.dylib
        0x7fff88eaf000 -     0x7fff89153ff7  com.apple.CoreImage (8.2.4 - 1.0.1) <4A6B017F-B9F7-36DA-943D-A95611F147EA> /System/Library/Frameworks/QuartzCore.framework/Versions/A/Frameworks/CoreImage .framework/Versions/A/CoreImage
        0x7fff89160000 -     0x7fff89160fff  com.apple.vecLib (3.8 - vecLib 3.8) <794317C7-4E38-338A-A874-5E18001C8503> /System/Library/Frameworks/vecLib.framework/Versions/A/vecLib
        0x7fff89161000 -     0x7fff8916bfff  com.apple.speech.recognition.framework (4.1.5 - 4.1.5) <D803919C-3102-3515-A178-61E9C86C46A1> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecogni tion.framework/Versions/A/SpeechRecognition
        0x7fff8916c000 -     0x7fff89175ff7  com.apple.marco (8.0 - 900) <89016888-E37F-3244-906B-D88102483CA3> /System/Library/PrivateFrameworks/Marco.framework/Versions/A/Marco
        0x7fff89176000 -     0x7fff89176fff  com.apple.quartzframework (1.5 - 1.5) <6403C982-0D45-37EE-A0F0-0EF8BCFEF440> /System/Library/Frameworks/Quartz.framework/Versions/A/Quartz
        0x7fff89177000 -     0x7fff8917efff  com.apple.phonenumbers (1.1 - 47) <E6A01FEF-9C6D-3C18-B378-63F4134756E6> /System/Library/PrivateFrameworks/PhoneNumbers.framework/Versions/A/PhoneNumber s
        0x7fff89965000 -     0x7fff89ab6fff  com.apple.audio.toolbox.AudioToolbox (1.8 - 1.8) <C680EE1A-B4ED-3E77-A08C-DC47922ACA33> /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
        0x7fff89aed000 -     0x7fff89b55ff7  libc++.1.dylib (65.1) <20E31B90-19B9-3C2A-A9EB-474E08F9FE05> /usr/lib/libc++.1.dylib
        0x7fff89b56000 -     0x7fff89bf0fff  libvMisc.dylib (380.6) <714336EA-1C0E-3735-B31C-19DFDAAF6221> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvMisc.dylib
        0x7fff89bf1000 -     0x7fff89d7cff7  com.apple.WebKit (8536 - 8536.28.10) <792FA1F3-68F2-36F8-A070-898B3682F5DE> /System/Library/Frameworks/WebKit.framework/Versions/A/WebKit
        0x7fff89d8b000 -     0x7fff89de8fff  com.apple.ExchangeWebServices (3.0 - 157) <58BFD72E-27F3-3F22-A421-B883FACA0E19> /System/Library/PrivateFrameworks/ExchangeWebServices.framework/Versions/A/Exch angeWebServices
        0x7fff89de9000 -     0x7fff89e08ff7  libresolv.9.dylib (51) <0882DC2D-A892-31FF-AD8C-0BB518C48B23> /usr/lib/libresolv.9.dylib
        0x7fff89e09000 -     0x7fff89e09fff  com.apple.SafariDAVNotifier (1.1.1 - 1) <F2E6ABF4-C7D7-341F-BC27-C9B0E7C4F4EB> /System/Library/PrivateFrameworks/BookmarkDAV.framework/Versions/A/Frameworks/S afariDAVNotifier.framework/Versions/A/SafariDAVNotifier
        0x7fff89e0a000 -     0x7fff89e9bfff  com.apple.CorePDF (2.0 - 2) <EB5660B1-0D79-34F3-B242-B559AE0A5B4A> /System/Library/PrivateFrameworks/CorePDF.framework/Versions/A/CorePDF
        0x7fff89e9c000 -     0x7fff89ea0fff  libCGXType.A.dylib (331.0.4) <251D4D2D-92B9-3D56-B348-CD67397F71FE> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCGXType.A.dylib
        0x7fff89ea1000 -     0x7fff89ea1fff  com.apple.AOSMigrate (1.0 - 1) <585B1483-490E-32DD-97DC-B9279E9D3490> /System/Library/PrivateFrameworks/AOSMigrate.framework/Versions/A/AOSMigrate
        0x7fff89ea2000 -     0x7fff8a649fff  com.apple.CoreAUC (6.16.13 - 6.16.13) <8CBFBC9C-0773-3DEB-AF99-989008CB2B36> /System/Library/PrivateFrameworks/CoreAUC.framework/Versions/A/CoreAUC
        0x7fff8a64a000 -     0x7fff8a90dff7  com.apple.AddressBook.framework (7.1 - 1169) <5FFF3765-414A-3633-ADE5-337CD4B9A102> /System/Library/Frameworks/AddressBook.framework/Versions/A/AddressBook
        0x7fff8a90e000 -     0x7fff8aa67ff7  com.apple.syncservices (7.1 - 713.1) <1B20AF09-C1E5-3B70-A57F-177A4D92E403> /System/Library/Frameworks/SyncServices.framework/Versions/A/SyncServices
        0x7fff8aa68000 -     0x7fff8aa68fff  com.apple.CoreServices (57 - 57) <9DD44CB0-C644-35C3-8F57-0B41B3EC147D> /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
        0x7fff8ab83000 -     0x7fff8ab8bfff  liblaunch.dylib (442.26.2) <2F71CAF8-6524-329E-AC56-C506658B4C0C> /usr/lib/system/liblaunch.dylib
        0x7fff8ac27000 -     0x7fff8aed5ff7  com.apple.imageKit (2.2 - 670) <F9B50A59-A749-333C-A8D9-C8A92C649AA9> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/ImageKit.fram ework/Versions/A/ImageKit
        0x7fff8aed6000 -     0x7fff8af14fff  com.apple.PassKit (1.0 - 1) <EB8C9B79-65A3-36BA-B5CF-D2DB0B036EFB> /System/Library/PrivateFrameworks/PassKit.framework/Versions/A/PassKit
        0x7fff8af22000 -     0x7fff8af4afff  libJPEG.dylib (849) <5C9052F6-D0B3-39CC-8302-468B43D694D5> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJPEG.dylib
        0x7fff8af4b000 -     0x7fff8af57fff  libCSync.A.dylib (331.0.4) <C7043BB7-284D-3B9F-A5CB-78ADE691B2D4> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCSync.A.dylib
        0x7fff8af58000 -     0x7fff8af7aff7  libxpc.dylib (140.42) <BBE558BD-5E55-35E4-89ED-1AA6B056D05A> /usr/lib/system/libxpc.dylib
        0x7fff8af7b000 -     0x7fff8af9bfff  libPng.dylib (849) <F4C23A55-F17B-3E4F-9E80-BC97F778BA49> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libPng.dylib
        0x7fff8af9c000 -     0x7fff8afa7ff7  com.apple.bsd.ServiceManagement (2.0 - 2.0) <C12962D5-85FB-349E-AA56-64F4F487F219> /System/Library/Frameworks/ServiceManagement.framework/Versions/A/ServiceManage ment
        0x7fff8afa8000 -     0x7fff8afffff7  com.apple.AppleVAFramework (5.0.19 - 5.0.19) <541A7DBE-F8E4-3023-A3C0-8D5A2A550CFB> /System/Library/PrivateFrameworks/AppleVA.framework/Versions/A/AppleVA
        0x7fff8b000000 -     0x7fff8b003fff  libutil.dylib (30) <EF3340B2-9A53-3D5E-B9B4-BDB5EEECC178> /usr/lib/libutil.dylib
        0x7fff8b004000 -     0x7fff8b02bfff  com.apple.framework.familycontrols (4.1 - 410) <50F5A52C-8FB6-300A-977D-5CFDE4D5796B> /System/Library/PrivateFrameworks/FamilyControls.framework/Versions/A/FamilyCon trols
        0x7fff8b02c000 -     0x7fff8b216ff7  com.apple.CoreFoundation (6.8 - 744.18) <A60C3C9B-3764-3291-844C-C487ACF77C2C> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
        0x7fff8b217000 -     0x7fff8b219fff  libquarantine.dylib (52) <4BE2E642-A14F-340A-B482-5BD2AEFD9C24> /usr/lib/system/libquarantine.dylib
        0x7fff8b21a000 -     0x7fff8b25dff7  com.apple.bom (12.0 - 192) <0BF1F2D2-3648-36B7-BE4B-551A0173209B> /System/Library/PrivateFrameworks/Bom.framework/Versions/A/Bom
        0x7fff8b25e000 -     0x7fff8b264fff  libmacho.dylib (829) <BF332AD9-E89F-387E-92A4-6E1AB74BD4D9> /usr/lib/system/libmacho.dylib
        0x7fff8b29b000 -     0x7fff8b29cfff  liblangid.dylib (116) <864C409D-D56B-383E-9B44-A435A47F2346> /usr/lib/liblangid.dylib
        0x7fff8b29d000 -     0x7fff8c25afff  com.apple.WebCore (8536 - 8536.28.10) <89CDA119-0FC8-3D0E-87B8-AB96BE6D1A36> /System/Library/Frameworks/WebKit.framework/Versions/A/Frameworks/WebCore.frame work/Versions/A/WebCore
        0x7fff8c25b000 -     0x7fff8c2c8ff7  com.apple.datadetectorscore (4.1 - 269.2) <4FD4A7CE-BB00-3AAB-B7AA-AE395D5400EC> /System/Library/PrivateFrameworks/DataDetectorsCore.framework/Versions/A/DataDe tectorsCore
        0x7fff8c2c9000 -     0x7fff8c2d7ff7  libkxld.dylib (2050.22.13) <4AAF0573-8632-3D06-BE32-C5675F77638D> /usr/lib/system/libkxld.dylib
        0x7fff8c391000 -     0x7fff8c493fff  libJP2.dylib (849) <4EEA33EB-AF9F-365D-A572-F7D11AD1C76F> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJP2.dylib
        0x7fff8c494000 -     0x7fff8c4a2ff7  libsystem_network.dylib (77.10) <0D99F24E-56FE-380F-B81B-4A4C630EE587> /usr/lib/system/libsystem_network.dylib
        0x7fff8c4a3000 -     0x7fff8c4abff7  libsystem_dnssd.dylib (379.37) <616FC901-151E-38BF-B2C4-24A351C5FAAD> /usr/lib/system/libsystem_dnssd.dylib
        0x7fff8c4ac000 -     0x7fff8c506ff7  com.apple.imfoundation (8.0 - 900) <0F924050-6D71-3905-B033-EB1A6C8F1495> /System/Library/PrivateFrameworks/IMFoundation.framework/Versions/A/IMFoundatio n
        0x7fff8c507000 -     0x7fff8c541fff  com.apple.framework.internetaccounts (2.1 - 210) <546769AA-C561-3C17-8E8E-4E65A700E2F1> /System/Library/PrivateFrameworks/InternetAccounts.framework/Versions/A/Interne tAccounts
        0x7fff8c542000 -     0x7fff8c59cfff  com.apple.print.framework.PrintCore (8.3 - 387.2) <5BA0CBED-4D80-386A-9646-F835C9805B71> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ PrintCore.framework/Versions/A/PrintCore
        0x7fff8c59d000 -     0x7fff8c5f4ff7  com.apple.ScalableUserInterface (1.0 - 1) <F1D43DFB-1796-361B-AD4B-39F1EED3BE19> /System/Library/Frameworks/QuartzCore.framework/Versions/A/Frameworks/ScalableU serInterface.framework/Versions/A/ScalableUserInterface
        0x7fff8c5f5000 -     0x7fff8c608ff7  com.apple.LangAnalysis (1.7.0 - 1.7.0) <2F2694E9-A7BC-33C7-B4CF-8EC907DF0FEB> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LangAnalysis.framework/Versions/A/LangAnalysis
        0x7fff8c609000 -     0x7fff8c61aff7  libsasl2.2.dylib (166) <649CAE0E-8FFE-3C60-A849-BE6300E4B726> /usr/lib/libsasl2.2.dylib
        0x7fff8c61b000 -     0x7fff8ca57fff  com.apple.VideoToolbox (1.0 - 926.87) <7319477A-4A3D-3233-AAD1-31F9C9429DA7> /System/Library/Frameworks/VideoToolbox.framework/Versions/A/VideoToolbox
        0x7fff8ca58000 -     0x7fff8cdb5ff7  com.apple.Foundation (6.8 - 945.16) <89BD68FD-72C8-35C1-94C6-3A07F097C50D> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
        0x7fff8cdfc000 -     0x7fff8d219fff  FaceCoreLight (2.4.1) <DDAFFD7A-D312-3407-A010-5AEF3E17831B> /System/Library/PrivateFrameworks/FaceCoreLight.framework/Versions/A/FaceCoreLi ght
        0x7fff8d21a000 -     0x7fff8d21afff  com.apple.Cocoa (6.7 - 19) <1F77945C-F37A-3171-B22E-F7AB0FCBB4D4> /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
        0x7fff8d21b000 -     0x7fff8d49bff7  com.apple.AOSKit (1.05 - 152.2) <43361229-45F3-3946-A11A-CC0FF2129F06> /System/Library/PrivateFrameworks/AOSKit.framework/Versions/A/AOSKit
        0x7fff8d49c000 -     0x7fff8d5b6fff  com.apple.coreavchd (5.6.0 - 5600.4.16) <0CF2ABE5-B088-3B5D-9C04-47AE708ADAE3> /System/Library/PrivateFrameworks/CoreAVCHD.framework/Versions/A/CoreAVCHD
        0x7fff8d5b7000 -     0x7fff8d600fff  com.apple.framework.CoreWiFi (1.2.2 - 122.12) <D237551E-0E2C-30FB-8FAA-003D8F25E819> /System/Library/Frameworks/CoreWiFi.framework/Versions/A/CoreWiFi
        0x7fff8d601000 -     0x7fff8d601fff  com.apple.Accelerate.vecLib (3.8 - vecLib 3.8) <B5A18EE8-DF81-38DD-ACAF-7076B2A26225> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/vecLib
        0x7fff8d602000 -     0x7fff8d661fff  com.apple.AE (645.6 - 645.6) <44F403C1-660A-3543-AB9C-3902E02F936F> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.fram ework/Versions/A/AE
        0x7fff8d662000 -     0x7fff8d6efff7  com.apple.SearchKit (1.4.0 - 1.4.0) <C7F43889-F8BF-3CB9-AD66-11AEFCBCEDE7> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchK it.framework/Versions/A/SearchKit
        0x7fff8d6f0000 -     0x7fff8d724fff  com.apple.securityinterface (6.0 - 55024.4) <614C9B8E-2056-3A41-9A01-DAF74C97CC43> /System/Library/Frameworks/SecurityInterface.framework/Versions/A/SecurityInter face
        0x7fff8d725000 -     0x7fff8d7eaff7  com.apple.coreui (2.0 - 181.1) <83D2C92D-6842-3C9D-9289-39D5B4554C3A> /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
        0x7fff8d7eb000 -     0x7fff8d7efff7  com.apple.CommonPanels (1.2.5 - 94) <AAC003DE-2D6E-38B7-B66B-1F3DA91E7245> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels. framework/Versions/A/CommonPanels
        0x7fff8d7f0000 -     0x7fff8d7f1ff7  libsystem_sandbox.dylib (220.2) <6838A6FD-8626-3356-BB4F-BB4787216207> /usr/lib/system/libsystem_sandbox.dylib
        0x7fff8d7f2000 -     0x7fff8d7f5ff7  com.apple.LoginUICore (2.0 - 2.0) <C1911200-E442-3B99-AB91-C135703D55DF> /System/Library/PrivateFrameworks/LoginUIKit.framework/Versions/A/Frameworks/Lo ginUICore.framework/Versions/A/LoginUICore
        0x7fff8d7f6000 -     0x7fff8d90e92f  libobjc.A.dylib (532.2) <90D31928-F48D-3E37-874F-220A51FD9E37> /usr/lib/libobjc.A.dylib
        0x7fff8d90f000 -     0x7fff8d90ffff  com.apple.Accelerate (1.8 - Accelerate 1.8) <6AD48543-0864-3D40-80CE-01F184F24B45> /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
        0x7fff8d9a0000 -     0x7fff8d9a6ff7  libunwind.dylib (35.1) <21703D36-2DAB-3D8B-8442-EAAB23C060D3> /usr/lib/system/libunwind.dylib
        0x7fff8d9d0000 -     0x7fff8da1bfff  com.apple.framework.CoreWLAN (3.0.2 - 302.12) <896D75EB-069B-3674-936E-27A81568BECB> /System/Library/Frameworks/CoreWLAN.framework/Versions/A/CoreWLAN
        0x7fff8da1c000 -     0x7fff8da1eff7  com.apple.EFILogin (2.0 - 2) <51A470D7-1F72-3369-AF0F-AD2340B42C12> /System/Library/PrivateFrameworks/EFILogin.framework/Versions/A/EFILogin
        0x7fff8da1f000 -     0x7fff8da1fff7  com.apple.SafariServices.framework (8536 - 8536.29.13) <1EC40F68-E1EE-3A6C-8C22-36C3997DAE04> /System/Library/PrivateFrameworks/SafariServices.framework/Versions/A/SafariSer vices
        0x7fff8da20000 -     0x7fff8da2bff7  com.apple.aps.framework (3.0 - 3.0) <2041AD84-4279-3ECC-A13E-AC6698BB1A67> /System/Library/PrivateFrameworks/ApplePushService.framework/Versions/A/ApplePu shService
        0x7fff8da2c000 -     0x7fff8da2eff7  com.apple.print.framework.Print (8.0 - 258) <34666CC2-B86D-3313-B3B6-A9977AD593DA> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framewo rk/Versions/A/Print
        0x7fff8da2f000 -     0x7fff8da8bfff  com.apple.QuickLookFramework (4.0 - 555.5) <8B9EAC35-98F3-3BF0-8B15-3A5FE39F150A> /System/Library/Frameworks/QuickLook.framework/Versions/A/QuickLook
        0x7fff8da8c000 -     0x7fff8dab3ff7  com.apple.PerformanceAnalysis (1.16 - 16) <E4888388-F41B-313E-9CBB-5807D077BDA9> /System/Library/PrivateFrameworks/PerformanceAnalysis.framework/Versions/A/Perf ormanceAnalysis
        0x7fff8dab4000 -     0x7fff8dabffff  libsystem_notify.dylib (98.5) <C49275CC-835A-3207-AFBA-8C01374927B6> /usr/lib/system/libsystem_notify.dylib
        0x7fff8dac0000 -     0x7fff8db9afff  com.apple.backup.framework (1.4.2 - 1.4.2) <0B557393-CD2A-3076-BED2-F28D02E1EC1D> /System/Library/PrivateFrameworks/Backup.framework/Versions/A/Backup
        0x7fff8db9b000 -     0x7fff8dc25ff7  com.apple.iLifeMediaBrowser (2.7.3 - 546.4) <EBBE3935-7566-3A3E-A0D7-8DCBBDD8A733> /System/Library/PrivateFrameworks/iLifeMediaBrowser.framework/Versions/A/iLifeM ediaBrowser
        0x7fff8dc26000 -     0x7fff8dd97ff7  com.apple.QTKit (7.7.1 - 2599.24) <A2153722-268B-3293-B9E3-CB59273CDE41> /System/Library/Frameworks/QTKit.framework/Versions/A/QTKit
        0x7fff8dd98000 -     0x7fff8ddaefff  com.apple.MultitouchSupport.framework (235.29 - 235.29) <617EC8F1-BCE7-3553-86DD-F857866E1257> /System/Library/PrivateFrameworks/MultitouchSupport.framework/Versions/A/Multit ouchSupport
        0x7fff8df9a000 -     0x7fff8dfd1ff7  libssl.0.9.8.dylib (47) <923945E6-C489-3406-903B-A362410753F8> /usr/lib/libssl.0.9.8.dylib
        0x7fff8dfd2000 -     0x7fff8e01ffff  com.apple.CoreMediaIO (307.0 - 4155) <CD826A65-DFE7-3A58-A29E-15B3A9BE0A6D> /System/Library/Frameworks/CoreMediaIO.framework/Versions/A/CoreMediaIO
        0x7fff8e020000 -     0x7fff8e268fff  com.apple.MessageFramework (6.0 - 1503) <17A8D2BF-137D-3B4A-BCAF-50BB58ECC191> /System/Library/Frameworks/Message.framework/Versions/B/Message
        0x7fff8e269000 -     0x7fff8e274ff7  com.apple.DisplayServicesFW (2.7.2 - 357) <EC87A00D-FE9C-3CFE-A98C-063C3D23085A> /System/Library/PrivateFrameworks/DisplayServices.framework/Versions/A/DisplayS ervices
        0x7fff8e275000 -     0x7fff8e4d0ff7  com.apple.QuartzComposer (5.1 - 284) <D9CDC9ED-9F03-30F0-80DF-BA189A054AC9> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzCompose r.framework/Versions/A/QuartzComposer
        0x7fff8e4d1000 -     0x7fff8e4d7fff  com.apple.DiskArbitration (2.5.2 - 2.5.2) <C713A35A-360E-36CE-AC0A-25C86A3F50CA> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
        0x7fff8e4d8000 -     0x7fff8e4dffff  libcopyfile.dylib (89) <876573D0-E907-3566-A108-577EAD1B6182> /usr/lib/system/libcopyfile.dylib
        0x7fff8e4e0000 -     0x7fff8e52fff7  libFontRegistry.dylib (100) <2E03D7DA-9B8F-31BB-8FB5-3D3B6272127F> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontRegistry.dylib
        0x7fff8e530000 -     0x7fff8e533fff  libRadiance.dylib (849) <F7D9A0FD-1195-34CB-BFE5-79DAF3F40AC3> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libRadiance.d ylib
        0x7fff8e534000 -     0x7fff8e549ff7  libdispatch.dylib (228.23) <D26996BF-FC57-39EB-8829-F63585561E09> /usr/lib/system/libdispatch.dylib
        0x7fff8e54a000 -     0x7fff8e585fff  com.apple.LDAPFramework (2.4.28 - 194.5) <67FBDB29-3B9F-309A-BA7C-AA5921D9A4FB> /System/Library/Frameworks/LDAP.framework/Versions/A/LDAP
        0x7fff8e586000 -     0x7fff8e58afff  libGIF.dylib (849) <6A664B4D-0A88-33F7-9064-0CD159AB9CE9> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libGIF.dylib
        0x7fff8e58b000 -     0x7fff8e58ffff  com.apple.FindMyMac (2.1 - 2.1) <EF5351E8-4BA3-3EE2-8358-0436EF4EC041> /System/Library/PrivateFrameworks/FindMyMac.framework/Versions/A/FindMyMac
        0x7fff8e590000 -     0x7fff8e5beff7  libsystem_m.dylib (3022.6) <B434BE5C-25AB-3EBD-BAA7-5304B34E3441> /usr/lib/system/libsystem_m.dylib
        0x7fff8e601000 -     0x7fff8e86cff7  com.apple.RawCamera.bundle (4.05 - 690) <6E4B6BE9-A512-3B8E-91DE-2D12966B5636> /System/Library/CoreServices/RawCamera.bundle/Contents/MacOS/RawCamera
        0x7fff8e998000 -     0x7fff8ea07fff  com.apple.WhitePagesFramework (10.7.0 - 141.0) <65B30FD8-DEC0-31D4-8E7F-CBCB987D7A48> /System/Library/PrivateFrameworks/WhitePages.framework/Versions/A/WhitePages
        0x7fff8ea08000 -     0x7fff8eaaeff7  com.apple.CoreServices.OSServices (557.6 - 557.6) <1BDB5456-0CE9-301C-99C1-8EFD0D2BFCCD> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServi ces.framework/Versions/A/OSServices
        0x7fff8eaaf000 -     0x7fff8eab3ff7  com.apple.TCC (1.0 - 1) <F2F3B753-FC73-3543-8BBE-859FDBB4D6A6> /System/Library/PrivateFrameworks/TCC.framework/Versions/A/TCC
        0x7fff8eb37000 -     0x7fff8eb37fff  com.apple.ApplicationServices (45 - 45) <A3ABF20B-ED3A-32B5-830E-B37831A45A80> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services
        0x7fff8eb38000 -     0x7fff8ec29ff7  com.apple.DiskImagesFramework (10.8.3 - 345) <F9FAEAF0-B9A5-34DF-94B7-926FB03AD5F6> /System/Library/PrivateFrameworks/DiskImages.framework/Versions/A/DiskImages
        0x7fff8ec2a000 -     0x7fff8ec66fff  com.apple.GeoServices (1.0 - 1) <DB382348-EBFA-3AD5-888B-7F4640F41834> /System/Library/PrivateFrameworks/GeoServices.framework/Versions/A/GeoServices
        0x7fff8ec82000 -     0x7fff8eca4fff  com.apple.AOSAccounts (1.1.2 - 1.1.95) <9A1A8780-1F48-3CCA-96EB-D3137F93B676> /System/Library/PrivateFrameworks/AOSAccounts.framework/Versions/A/AOSAccounts
        0x7fff8eca5000 -     0x7fff8ecabfff  libCGXCoreImage.A.dylib (331.0.4) <004875C9-182C-34E9-B6C8-5B2BF2A998E1> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCGXCoreImage.A.dylib
        0x7fff8ecac000 -     0x7fff8ecceff7  com.apple.Kerberos (2.0 - 1) <C49B8820-34ED-39D7-A407-A3E854153556> /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
        0x7fff8eccf000 -     0x7fff8f0c6fff  libLAPACK.dylib (1073.4) <D632EC8B-2BA0-3853-800A-20DA00A1091C> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libLAPACK.dylib
        0x7fff8f0c7000 -     0x7fff8f0dcfff  com.apple.ImageCapture (8.0 - 8.0) <17A45CE6-7DA3-36A5-B7EF-72BC136981AE> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture. framework/Versions/A/ImageCapture
        0x7fff8f0dd000 -     0x7fff8f0e5fff  com.apple.AOSNotification (1.7.0 - 636.3) <C96C3AB4-BF49-3DB7-9E9B-934CD579F63B> /System/Library/PrivateFrameworks/AOSNotification.framework/Versions/A/AOSNotif ication
        0x7fff8f0e6000 -     0x7fff8f137ff7  com.apple.iCalendar (6.0 - 126.5) <333304C6-0968-3AE6-886B-35630A175BD7> /System/Library/PrivateFrameworks/iCalendar.framework/Versions/A/iCalendar
        0x7fff8f138000 -     0x7fff8f187ff7  libcorecrypto.dylib (106.2) <CE0C29A3-C420-339B-ADAA-52F4683233CC> /usr/lib/system/libcorecrypto.dylib
        0x7fff8f188000 -     0x7fff8f581fe7  com.apple.MediaToolbox (1.0 - 926.87) <8346DAFC-88E5-350E-90E1-C98B180488C2> /System/Library/Frameworks/MediaToolbox.framework/Versions/A/MediaToolbox
        0x7fff8f582000 -     0x7fff8f583ff7  libremovefile.dylib (23.2) <6763BC8E-18B8-3AD9-8FFA-B43713A7264F> /usr/lib/system/libremovefile.dylib
        0x7fff8f584000 -     0x7fff8f5c3ff7  com.apple.QD (3.42 - 285) <8DF36FCA-C06B-30F4-A631-7BE2FF7E56D1> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ QD.framework/Versions/A/QD
        0x7fff8f5c4000 -     0x7fff8f739fff  com.apple.CFNetwork (596.3.3 - 596.3.3) <3739DC8D-8610-3740-80EC-43E130779CB8> /System/Library/Frameworks/CFNetwork.framework/Versions/A/CFNetwork
        0x7fff8f73a000 -     0x7fff8f73efff  libpam.2.dylib (20) <C8F45864-5B58-3237-87E1-2C258A1D73B8> /usr/lib/libpam.2.dylib
        0x7fff8f73f000 -     0x7fff8f79efff  com.apple.IMAP (6.0 - 1503) <BA336D11-AD1A-3CAF-A9AE-F98AAACCCD54> /System/Library/PrivateFrameworks/IMAP.framework/Versions/A/IMAP
        0x7fff8f79f000 -     0x7fff8f7d5fff  libsystem_info.dylib (406.17) <4FFCA242-7F04-365F-87A6-D4EFB89503C1> /usr/lib/system/libsystem_info.dylib
        0x7fff8f81a000 -     0x7fff8f8ecff7  com.apple.CoreText (260.0 - 275.16) <5BFC1D67-6A6F-38BC-9D90-9C712684EDAC> /System/Library/Frameworks/CoreText.framework/Versions/A/CoreText
        0x7fff8f8ed000 -     0x7fff8f8effff  com.apple.TrustEvaluationAgent (2.0 - 23) <A97D348B-32BF-3E52-8DF2-59BFAD21E1A3> /System/Library/PrivateFrameworks/TrustEvaluationAgent.framework/Versions/A/Tru stEvaluationAgent
        0x7fff8f8f0000 -     0x7fff8f98fff7  com.apple.imcore (8.0 - 900) <F71E8D85-BE37-37C7-8536-7DCF396984A9> /System/Library/PrivateFrameworks/IMCore.framework/Versions/A/IMCore
        0x7fff8f9e7000 -     0x7fff8fa24fef  libGLImage.dylib (8.7.25) <139A9892-A6F2-3F49-87FB-E7AC3F56E003> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dyl

    Please follow these directions to delete the Mail "sandbox" folder.
    Back up all data.
    Triple-click the line below to select it:
    ~/Library/Containers/com.apple.mail
    Right-click or control-click the highlighted line and select
    Services ▹ Reveal
    from the contextual menu.* A Finder window should open with a folder named "com.apple.mail" selected. If it does, move the selected folder — not just its contents — to the Desktop. Leave the Finder window open for now.
    Quit and relaunch Mail, and test. If the problem is resolved, you may have to recreate some of your Mail settings. You can then delete the folder you moved and close the Finder window. If you still have the problem, quit Mail again and put the folder back where it was, overwriting the one that may have been created in its place. Post your results.
    Caution: If you change any of the contents of the sandbox, but leave the folder itself in place, Mail may crash or not launch at all. Deleting the whole sandbox will cause it to be rebuilt automatically.
    *If you don't see the contextual menu item, copy the selected text to the Clipboard (command-C). In the Finder, select
    Go ▹ Go to Folder...
    from the menu bar, paste into the box that opens (command-V). You won't see what you pasted because a line break is included. Press return.

  • Mail cannot open - "Mail quit unexpectedly"

    Please help me - my Mail has been crashing regularly lately, especially when the MacBook has gone to sleep and I wake it up. Today, I cannot open it at all. The message below is what I've seen about 15 times today.
    HELP!
    Process:         Mail [8190]
    Path:            /Applications/Mail.app/Contents/MacOS/Mail
    Identifier:      com.apple.mail
    Version:         6.2 (1499)
    Build Info:      Mail-1499000000000000~1
    Code Type:       X86-64 (Native)
    Parent Process:  launchd [123]
    User ID:         502
    Date/Time:       2012-12-12 12:17:41.442 +1100
    OS Version:      Mac OS X 10.8.2 (12C60)
    Report Version:  10
    Interval Since Last Report:          260958 sec
    Per-App Interval Since Last Report:  223784 sec
    Anonymous UUID:                      F8603D19-B44C-E78B-FADD-5418741EC9C4
    Crashed Thread:  4  Dispatch queue: com.apple.root.default-priority
    Exception Type:  EXC_CRASH (SIGABRT)
    Exception Codes: 0x0000000000000000, 0x0000000000000000
    Application Specific Information:
    *** Terminating app due to uncaught exception 'NSInvalidArgumentException', reason: '-[ABRecord setValue: '(
        "2011-08-18 10:12:29 +0000",
        "2011-10-30 23:12:07 +0000",
        "2011-10-30 23:26:26 +0000",
        "2011-11-15 05:50:43 +0000",
        "2012-10-09 03:43:31 +0000"
    )' forKey: 'MailLastDates'] invalid value'
    abort() called
    terminate called throwing an exception
    Application Specific Backtrace 1:
    0   CoreFoundation                      0x00007fff875500a6 __exceptionPreprocess + 198
    1   libobjc.A.dylib                     0x00007fff8bc9f3f0 objc_exception_throw + 43
    2   CoreFoundation                      0x00007fff8754fe7c +[NSException raise:format:] + 204
    3   AddressBook                         0x00007fff8f1fdf88 -[ABRecord setValue:forKey:] + 116
    4   Message                             0x00007fff8d9c09a3 __42-[MFRecentsManager _updateRecentsForKeys:]_block_invoke_0 + 1147
    5   Foundation                          0x00007fff8dfcaa7c -[NSBlockOperation main] + 124
    6   Foundation                          0x00007fff8dfa0986 -[__NSOperationInternal start] + 684
    7   Foundation                          0x00007fff8dfa81a1 __block_global_6 + 129
    8   libdispatch.dylib                   0x00007fff8fe6ef01 _dispatch_call_block_and_release + 15
    9   libdispatch.dylib                   0x00007fff8fe6b0b6 _dispatch_client_callout + 8
    10  libdispatch.dylib                   0x00007fff8fe6c1fa _dispatch_worker_thread2 + 304
    11  libsystem_c.dylib                   0x00007fff8a121cab _pthread_wqthread + 404
    12  libsystem_c.dylib                   0x00007fff8a10c171 start_wqthread + 13
    Thread 0:: Dispatch queue: com.apple.main-thread
    0   libobjc.A.dylib                         0x00007fff8bc96d7e objc::DenseMap<objc_object*, unsigned long, true, objc::DenseMapInfo<objc_object*>, objc::DenseMapInfo<unsigned long> >::LookupBucketFor(objc_object* const&, std::__1::pair<objc_object*, unsigned long>*&) const + 58
    1   libobjc.A.dylib                         0x00007fff8bc97005 objc::DenseMap<objc_object*, unsigned long, true, objc::DenseMapInfo<objc_object*>, objc::DenseMapInfo<unsigned long> >::find(objc_object* const&) + 35
    2   libobjc.A.dylib                         0x00007fff8bc96f5b _objc_rootReleaseWasZero + 126
    3   libobjc.A.dylib                         0x00007fff8bcaf6f1 -[NSObject release] + 17
    4   libsystem_blocks.dylib                  0x00007fff8e6da6a3 _Block_release + 202
    5   com.apple.CoreFoundation                0x00007fff87502482 _CFXNotificationPost + 2562
    6   com.apple.Foundation                    0x00007fff8df5a846 -[NSNotificationCenter postNotificationName:object:userInfo:] + 64
    7   com.apple.mail                          0x0000000104a607a5 0x104a5e000 + 10149
    8   com.apple.Foundation                    0x00007fff8df3dece -[NSUbiquitousKeyValueStore _postDidChangeNotificationExternalChanges:sourceChangeCount:] + 291
    9   com.apple.Foundation                    0x00007fff8e13c9d1 __block_global_3 + 308
    10  libdispatch.dylib                       0x00007fff8fe6ef01 _dispatch_call_block_and_release + 15
    11  libdispatch.dylib                       0x00007fff8fe6b0b6 _dispatch_client_callout + 8
    12  libdispatch.dylib                       0x00007fff8fe700c8 _dispatch_main_queue_callback_4CF + 275
    13  com.apple.CoreFoundation                0x00007fff874f20fe __CFRunLoopRun + 1614
    14  com.apple.CoreFoundation                0x00007fff874f16b2 CFRunLoopRunSpecific + 290
    15  com.apple.HIToolbox                     0x00007fff8e7400a4 RunCurrentEventLoopInMode + 209
    16  com.apple.HIToolbox                     0x00007fff8e73fe42 ReceiveNextEventCommon + 356
    17  com.apple.HIToolbox                     0x00007fff8e73fcd3 BlockUntilNextEventMatchingListInMode + 62
    18  com.apple.AppKit                        0x00007fff8cc5e613 _DPSNextEvent + 685
    19  com.apple.AppKit                        0x00007fff8cc5ded2 -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 128
    20  com.apple.AppKit                        0x00007fff8cc55283 -[NSApplication run] + 517
    21  com.apple.AppKit                        0x00007fff8cbf9cb6 NSApplicationMain + 869
    22  libdyld.dylib                           0x00007fff89b5e7e1 start + 1
    Thread 1:: Dispatch queue: com.apple.libdispatch-manager
    0   libsystem_kernel.dylib                  0x00007fff8fee6d16 kevent + 10
    1   libdispatch.dylib                       0x00007fff8fe6ddea _dispatch_mgr_invoke + 883
    2   libdispatch.dylib                       0x00007fff8fe6d9ee _dispatch_mgr_thread + 54
    Thread 2:
    0   libsystem_kernel.dylib                  0x00007fff8fee46c2 semaphore_wait_trap + 10
    1   libdispatch.dylib                       0x00007fff8fe7083b _dispatch_group_wait_slow + 154
    2   com.apple.Foundation                    0x00007fff8df39629 -[NSHost resolveCurrentHostWithHandler:] + 718
    3   com.apple.Foundation                    0x00007fff8df39290 __18-[NSHost resolve:]_block_invoke_0 + 354
    4   libdispatch.dylib                       0x00007fff8fe6ef01 _dispatch_call_block_and_release + 15
    5   libdispatch.dylib                       0x00007fff8fe6b0b6 _dispatch_client_callout + 8
    6   libdispatch.dylib                       0x00007fff8fe6c47f _dispatch_queue_drain + 235
    7   libdispatch.dylib                       0x00007fff8fe6c2f1 _dispatch_queue_invoke + 52
    8   libdispatch.dylib                       0x00007fff8fe6c1c3 _dispatch_worker_thread2 + 249
    9   libsystem_c.dylib                       0x00007fff8a121cab _pthread_wqthread + 404
    10  libsystem_c.dylib                       0x00007fff8a10c171 start_wqthread + 13
    Thread 3:: Dispatch queue: com.apple.root.default-overcommit-priority
    0   libsystem_kernel.dylib                  0x00007fff8fee4686 mach_msg_trap + 10
    1   libsystem_kernel.dylib                  0x00007fff8fee3c42 mach_msg + 70
    2   com.apple.CoreFoundation                0x00007fff874ec803 __CFRunLoopServiceMachPort + 195
    3   com.apple.CoreFoundation                0x00007fff874f1ee6 __CFRunLoopRun + 1078
    4   com.apple.CoreFoundation                0x00007fff874f16b2 CFRunLoopRunSpecific + 290
    5   com.apple.CoreMessage                   0x00007fff8839d4a9 _handleRequestWithTimeout + 1527
    6   com.apple.CoreMessage                   0x00007fff8839fc8b -[_NSSocket readBytes:length:error:] + 161
    7   com.apple.CoreMessage                   0x00007fff883b9e3b -[Connection _readBytesFromSocketIntoBuffer:amount:requireAllBytes:error:] + 76
    8   com.apple.CoreMessage                   0x00007fff883b9d21 -[Connection _fillBuffer:] + 764
    9   com.apple.CoreMessage                   0x00007fff883b98b3 -[Connection _readLineIntoData:error:] + 202
    10  com.apple.IMAP                          0x00007fff860ea4d6 -[IMAPConnection _readLineIntoData:error:] + 53
    11  com.apple.IMAP                          0x00007fff860f0e64 -[IMAPConnection(MFPrivate) _readDataOfLength:intoData:error:] + 112
    12  com.apple.IMAP                          0x00007fff86113478 -[IMAPResponse initWithConnection:error:] + 144
    13  com.apple.IMAP                          0x00007fff860ea5ca -[IMAPConnection _copyNextServerResponse:] + 55
    14  com.apple.IMAP                          0x00007fff860ea83b -[IMAPConnection _copyNextTaggedOrContinuationResponseForCommand:exists:] + 551
    15  com.apple.IMAP                          0x00007fff860efad7 -[IMAPConnection _responseFromSendingOperation:] + 863
    16  com.apple.IMAP                          0x00007fff860ecb20 -[IMAPConnection executeLogin:] + 63
    17  com.apple.IMAP                          0x00007fff860db157 -[IMAPClientLoginOperation executeOnConnection:] + 26
    18  com.apple.IMAP                          0x00007fff860e9a45 -[IMAPConnection prepareAndExecuteOperation:outWrongState:] + 1247
    19  com.apple.IMAP                          0x00007fff860fc551 -[IMAPGateway _allowClientOperationThrough:] + 1237
    20  com.apple.IMAP                          0x00007fff860fc024 -[IMAPGateway allowClientOperationThrough:] + 369
    21  com.apple.IMAP                          0x00007fff860e0b33 -[IMAPClientOperation main] + 84
    22  com.apple.Foundation                    0x00007fff8dfa0986 -[__NSOperationInternal start] + 684
    23  com.apple.Foundation                    0x00007fff8dfa81a1 __block_global_6 + 129
    24  libdispatch.dylib                       0x00007fff8fe6ef01 _dispatch_call_block_and_release + 15
    25  libdispatch.dylib                       0x00007fff8fe6b0b6 _dispatch_client_callout + 8
    26  libdispatch.dylib                       0x00007fff8fe6c1fa _dispatch_worker_thread2 + 304
    27  libsystem_c.dylib                       0x00007fff8a121cab _pthread_wqthread + 404
    28  libsystem_c.dylib                       0x00007fff8a10c171 start_wqthread + 13
    Thread 4 Crashed:: Dispatch queue: com.apple.root.default-priority
    0   libsystem_kernel.dylib                  0x00007fff8fee6212 __pthread_kill + 10
    1   libsystem_c.dylib                       0x00007fff8a120af4 pthread_kill + 90
    2   libsystem_c.dylib                       0x00007fff8a164dce abort + 143
    3   libc++abi.dylib                         0x00007fff8c13aa17 abort_message + 257
    4   libc++abi.dylib                         0x00007fff8c1383c6 default_terminate() + 28
    5   libobjc.A.dylib                         0x00007fff8bc9f873 _objc_terminate() + 91
    6   libc++.1.dylib                          0x00007fff89ce58fe std::terminate() + 20
    7   libobjc.A.dylib                         0x00007fff8bc9f5de objc_terminate + 9
    8   libdispatch.dylib                       0x00007fff8fe6b0ca _dispatch_client_callout + 28
    9   libdispatch.dylib                       0x00007fff8fe6c1fa _dispatch_worker_thread2 + 304
    10  libsystem_c.dylib                       0x00007fff8a121cab _pthread_wqthread + 404
    11  libsystem_c.dylib                       0x00007fff8a10c171 start_wqthread + 13
    Thread 5:
    0   libsystem_kernel.dylib                  0x00007fff8fee66d6 __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x00007fff8a121eec _pthread_workq_return + 25
    2   libsystem_c.dylib                       0x00007fff8a121cb3 _pthread_wqthread + 412
    3   libsystem_c.dylib                       0x00007fff8a10c171 start_wqthread + 13
    Thread 6:: -[LocationManager _determineCurrentLocation]  Dispatch queue: com.apple.root.default-overcommit-priority
    0   libsystem_kernel.dylib                  0x00007fff8fee46c2 semaphore_wait_trap + 10
    1   libdispatch.dylib                       0x00007fff8fe6e486 _dispatch_semaphore_wait_slow + 241
    2   com.apple.Foundation                    0x00007fff8df38fc8 -[NSHost blockingResolveUntil:] + 157
    3   com.apple.Foundation                    0x00007fff8df38f19 -[NSHost names] + 30
    4   com.apple.CoreMessage                   0x00007fff884032cd +[NetworkController filteredDomainNamesFromHost:] + 54
    5   com.apple.MessageFramework              0x00007fff8d89da26 -[LocationManager _determineCurrentLocation] + 124
    6   com.apple.CoreFoundation                0x00007fff8754363c __invoking___ + 140
    7   com.apple.CoreFoundation                0x00007fff875434d7 -[NSInvocation invoke] + 263
    8   com.apple.CoreMessage                   0x00007fff884190c2 -[ThrowingInvocationOperation main] + 33
    9   com.apple.CoreMessage                   0x00007fff883c5342 -[_MFInvocationOperation main] + 431
    10  com.apple.Foundation                    0x00007fff8dfa0986 -[__NSOperationInternal start] + 684
    11  com.apple.Foundation                    0x00007fff8dfa81a1 __block_global_6 + 129
    12  libdispatch.dylib                       0x00007fff8fe6ef01 _dispatch_call_block_and_release + 15
    13  libdispatch.dylib                       0x00007fff8fe6b0b6 _dispatch_client_callout + 8
    14  libdispatch.dylib                       0x00007fff8fe6c1fa _dispatch_worker_thread2 + 304
    15  libsystem_c.dylib                       0x00007fff8a121cab _pthread_wqthread + 404
    16  libsystem_c.dylib                       0x00007fff8a10c171 start_wqthread + 13
    Thread 7:
    0   libsystem_kernel.dylib                  0x00007fff8fee66d6 __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x00007fff8a121eec _pthread_workq_return + 25
    2   libsystem_c.dylib                       0x00007fff8a121cb3 _pthread_wqthread + 412
    3   libsystem_c.dylib                       0x00007fff8a10c171 start_wqthread + 13
    Thread 8:: -[MailApp _fetchBrandingInfo]  Dispatch queue: com.apple.root.default-overcommit-priority
    0   libsystem_kernel.dylib                  0x00007fff8fee46da semaphore_timedwait_trap + 10
    1   libdispatch.dylib                       0x00007fff8fe6e426 _dispatch_semaphore_wait_slow + 145
    2   com.apple.framework.internetaccounts          0x00007fff8de15a83 -[IADNSService beginQuerySync] + 384
    3   com.apple.framework.internetaccounts          0x00007fff8de11385 -[IAPluginManager pluginIDForDomain:] + 962
    4   com.apple.framework.internetaccounts          0x00007fff8de03143 +[IAAccount aListPluginIDForSettings:] + 958
    5   com.apple.framework.internetaccounts          0x00007fff8de028b9 +[IAAccount _pluginForSettings:] + 46
    6   com.apple.framework.internetaccounts          0x00007fff8de02cd3 +[IAAccount brandIconForAccountSettings:] + 17
    7   com.apple.MessageFramework              0x00007fff8d8b58f1 -[Account brandIcon] + 94
    8   com.apple.mail                          0x0000000104ad5e03 0x104a5e000 + 491011
    9   com.apple.CoreFoundation                0x00007fff8754363c __invoking___ + 140
    10  com.apple.CoreFoundation                0x00007fff875434d7 -[NSInvocation invoke] + 263
    11  com.apple.CoreMessage                   0x00007fff884190c2 -[ThrowingInvocationOperation main] + 33
    12  com.apple.CoreMessage                   0x00007fff883c5342 -[_MFInvocationOperation main] + 431
    13  com.apple.Foundation                    0x00007fff8dfa0986 -[__NSOperationInternal start] + 684
    14  com.apple.Foundation                    0x00007fff8dfa81a1 __block_global_6 + 129
    15  libdispatch.dylib                       0x00007fff8fe6ef01 _dispatch_call_block_and_release + 15
    16  libdispatch.dylib                       0x00007fff8fe6b0b6 _dispatch_client_callout + 8
    17  libdispatch.dylib                       0x00007fff8fe6c1fa _dispatch_worker_thread2 + 304
    18  libsystem_c.dylib                       0x00007fff8a121cab _pthread_wqthread + 404
    19  libsystem_c.dylib                       0x00007fff8a10c171 start_wqthread + 13
    Thread 9:
    0   libsystem_kernel.dylib                  0x00007fff8fee66d6 __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x00007fff8a121eec _pthread_workq_return + 25
    2   libsystem_c.dylib                       0x00007fff8a121cb3 _pthread_wqthread + 412
    3   libsystem_c.dylib                       0x00007fff8a10c171 start_wqthread + 13
    Thread 10:: -[IMAPAccount fetchSynchronouslyIsAuto:]  Dispatch queue: com.apple.root.default-overcommit-priority
    0   libsystem_kernel.dylib                  0x00007fff8fee6122 __psynch_mutexwait + 10
    1   libsystem_c.dylib                       0x00007fff8a124d9d pthread_mutex_lock + 536
    2   com.apple.Foundation                    0x00007fff8df646ae -[NSLock lock] + 148
    3   com.apple.MessageFramework              0x00007fff8d89bfa4 -[IMAPAccount _gatewayForMailboxUid:name:options:] + 152
    4   com.apple.MessageFramework              0x00007fff8d89bca6 -[LibraryIMAPStore _gatewayCreateIfNeeded:options:] + 139
    5   com.apple.MessageFramework              0x00007fff8d897626 -[LibraryIMAPStore openSynchronouslyUpdatingMetadata:withOptions:] + 281
    6   com.apple.MessageFramework              0x00007fff8d8b1556 -[LibraryIMAPStore _fetchForCheckingNewMail:] + 53
    7   com.apple.MessageFramework              0x00007fff8d8b13b8 -[IMAPAccount fetchSynchronouslyIsAuto:] + 139
    8   com.apple.CoreFoundation                0x00007fff8754363c __invoking___ + 140
    9   com.apple.CoreFoundation                0x00007fff875434d7 -[NSInvocation invoke] + 263
    10  com.apple.CoreMessage                   0x00007fff88400b67 -[MonitoredInvocation invoke] + 225
    11  com.apple.CoreMessage                   0x00007fff884190c2 -[ThrowingInvocationOperation main] + 33
    12  com.apple.CoreMessage                   0x00007fff883c5342 -[_MFInvocationOperation main] + 431
    13  com.apple.Foundation                    0x00007fff8dfa0986 -[__NSOperationInternal start] + 684
    14  com.apple.Foundation                    0x00007fff8dfa81a1 __block_global_6 + 129
    15  libdispatch.dylib                       0x00007fff8fe6ef01 _dispatch_call_block_and_release + 15
    16  libdispatch.dylib                       0x00007fff8fe6b0b6 _dispatch_client_callout + 8
    17  libdispatch.dylib                       0x00007fff8fe6c1fa _dispatch_worker_thread2 + 304
    18  libsystem_c.dylib                       0x00007fff8a121cab _pthread_wqthread + 404
    19  libsystem_c.dylib                       0x00007fff8a10c171 start_wqthread + 13
    Thread 11:
    0   libsystem_kernel.dylib                  0x00007fff8fee66d6 __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x00007fff8a121eec _pthread_workq_return + 25
    2   libsystem_c.dylib                       0x00007fff8a121cb3 _pthread_wqthread + 412
    3   libsystem_c.dylib                       0x00007fff8a10c171 start_wqthread + 13
    Thread 12:: Dispatch queue: com.apple.root.default-priority
    0   libsystem_kernel.dylib                  0x00007fff8fee6122 __psynch_mutexwait + 10
    1   libsystem_c.dylib                       0x00007fff8a124d9d pthread_mutex_lock + 536
    2   com.apple.Foundation                    0x00007fff8df56be9 -[NSRecursiveLock lock] + 22
    3   com.apple.IMAP                          0x00007fff860e2237 __56-[IMAPClientOperationQueue _postDelayedActivityFinished]_block_invoke_0 + 116
    4   libdispatch.dylib                       0x00007fff8fe6b0b6 _dispatch_client_callout + 8
    5   libdispatch.dylib                       0x00007fff8fe6d29b _dispatch_source_invoke + 691
    6   libdispatch.dylib                       0x00007fff8fe6c305 _dispatch_queue_invoke + 72
    7   libdispatch.dylib                       0x00007fff8fe6c1c3 _dispatch_worker_thread2 + 249
    8   libsystem_c.dylib                       0x00007fff8a121cab _pthread_wqthread + 404
    9   libsystem_c.dylib                       0x00007fff8a10c171 start_wqthread + 13
    Thread 13:
    0   libsystem_kernel.dylib                  0x00007fff8fee66d6 __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x00007fff8a121eec _pthread_workq_return + 25
    2   libsystem_c.dylib                       0x00007fff8a121cb3 _pthread_wqthread + 412
    3   libsystem_c.dylib                       0x00007fff8a10c171 start_wqthread + 13
    Thread 14:: -[LibraryIMAPStore openSynchronously]  Dispatch queue: com.apple.root.default-overcommit-priority
    0   libsystem_kernel.dylib                  0x00007fff8fee60fa __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x00007fff8a123fc3 _pthread_cond_wait + 927
    2   com.apple.Foundation                    0x00007fff8df475a9 -[__NSOperationInternal waitUntilFinishedOrTimeout:] + 227
    3   com.apple.IMAP                          0x00007fff860e3378 -[IMAPClientOperationQueue waitUntilOperationIsFinished:] + 167
    4   com.apple.IMAP                          0x00007fff860fc85e -[IMAPGateway waitUntilClientOperationIsFinished:] + 168
    5   com.apple.IMAP                          0x00007fff860ec9fa -[IMAPConnection _loginWithUsername:password:] + 692
    6   com.apple.IMAP                          0x00007fff860ebcc5 -[IMAPConnection _authenticateWithAuthenticator:] + 850
    7   com.apple.CoreMessage                   0x00007fff883b9655 -[Connection authenticate] + 598
    8   com.apple.IMAP                          0x00007fff860eb880 -[IMAPConnection authenticate] + 66
    9   com.apple.MessageFramework              0x00007fff8d91dcb9 -[IMAPAccount connectAndAuthenticate:] + 1058
    10  com.apple.MessageFramework              0x00007fff8d89c4d0 -[IMAPAccount _recoverFromConnectionlessState] + 88
    11  com.apple.MessageFramework              0x00007fff8d89c2a5 -[IMAPAccount _getPotentialGatewayForMailbox:options:createdNewConnection:needsSelect:] + 157
    12  com.apple.MessageFramework              0x00007fff8d89bfc0 -[IMAPAccount _gatewayForMailboxUid:name:options:] + 180
    13  com.apple.MessageFramework              0x00007fff8d89bca6 -[LibraryIMAPStore _gatewayCreateIfNeeded:options:] + 139
    14  com.apple.MessageFramework              0x00007fff8d897626 -[LibraryIMAPStore openSynchronouslyUpdatingMetadata:withOptions:] + 281
    15  com.apple.CoreFoundation                0x00007fff8754363c __invoking___ + 140
    16  com.apple.CoreFoundation                0x00007fff875434d7 -[NSInvocation invoke] + 263
    17  com.apple.CoreMessage                   0x00007fff88400b67 -[MonitoredInvocation invoke] + 225
    18  com.apple.CoreMessage                   0x00007fff884190c2 -[ThrowingInvocationOperation main] + 33
    19  com.apple.CoreMessage                   0x00007fff883c5342 -[_MFInvocationOperation main] + 431
    20  com.apple.Foundation                    0x00007fff8dfa0986 -[__NSOperationInternal start] + 684
    21  com.apple.Foundation                    0x00007fff8dfa81a1 __block_global_6 + 129
    22  libdispatch.dylib                       0x00007fff8fe6ef01 _dispatch_call_block_and_release + 15
    23  libdispatch.dylib                       0x00007fff8fe6b0b6 _dispatch_client_callout + 8
    24  libdispatch.dylib                       0x00007fff8fe6c1fa _dispatch_worker_thread2 + 304
    25  libsystem_c.dylib                       0x00007fff8a121cab _pthread_wqthread + 404
    26  libsystem_c.dylib                       0x00007fff8a10c171 start_wqthread + 13
    Thread 15:
    0   libsystem_kernel.dylib                  0x00007fff8fee66d6 __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x00007fff8a121eec _pthread_workq_return + 25
    2   libsystem_c.dylib                       0x00007fff8a121cb3 _pthread_wqthread + 412
    3   libsystem_c.dylib                       0x00007fff8a10c171 start_wqthread + 13
    Thread 16:: -[IMAPAccount _synchronizeAccountWithServerWithUserInput:]  Dispatch queue: com.apple.root.default-overcommit-priority
    0   libsystem_kernel.dylib                  0x00007fff8fee6122 __psynch_mutexwait + 10
    1   libsystem_c.dylib                       0x00007fff8a124d9d pthread_mutex_lock + 536
    2   com.apple.Foundation                    0x00007fff8df646ae -[NSLock lock] + 148
    3   com.apple.MessageFramework              0x00007fff8d89bfa4 -[IMAPAccount _gatewayForMailboxUid:name:options:] + 152
    4   com.apple.MessageFramework              0x00007fff8d8b764a -[IMAPAccount _listingForMailboxUid:listAllChildren:onlySubscribed:withUserInput:] + 115
    5   com.apple.MessageFramework              0x00007fff8d8b71a2 -[IMAPAccount _listingForMailboxUid:listAllChildren:withUserInput:] + 88
    6   com.apple.MessageFramework              0x00007fff8d8b70e3 -[IMAPAccount _synchronizeMailboxListWithUserInput:] + 64
    7   com.apple.MessageFramework              0x00007fff8d8b394f -[RemoteStoreAccount _synchronizeAccountWithServerWithUserInput:] + 318
    8   com.apple.MessageFramework              0x00007fff8d8b35e3 -[IMAPAccount _synchronizeAccountWithServerWithUserInput:] + 45
    9   com.apple.CoreFoundation                0x00007fff8754363c __invoking___ + 140
    10  com.apple.CoreFoundation                0x00007fff875434d7 -[NSInvocation invoke] + 263
    11  com.apple.CoreMessage                   0x00007fff88400b67 -[MonitoredInvocation invoke] + 225
    12  com.apple.CoreMessage                   0x00007fff884190c2 -[ThrowingInvocationOperation main] + 33
    13  com.apple.CoreMessage                   0x00007fff883c5342 -[_MFInvocationOperation main] + 431
    14  com.apple.Foundation                    0x00007fff8dfa0986 -[__NSOperationInternal start] + 684
    15  com.apple.Foundation                    0x00007fff8dfa81a1 __block_global_6 + 129
    16  libdispatch.dylib                       0x00007fff8fe6ef01 _dispatch_call_block_and_release + 15
    17  libdispatch.dylib                       0x00007fff8fe6b0b6 _dispatch_client_callout + 8
    18  libdispatch.dylib                       0x00007fff8fe6c1fa _dispatch_worker_thread2 + 304
    19  libsystem_c.dylib                       0x00007fff8a121cab _pthread_wqthread + 404
    20  libsystem_c.dylib                       0x00007fff8a10c171 start_wqthread + 13
    Thread 17:: Dispatch queue: com.apple.root.default-overcommit-priority
    0   libsystem_kernel.dylib                  0x00007fff8fee6d16 kevent + 10
    1   libsystem_info.dylib                    0x00007fff915b090a _mdns_search + 1208
    2   libsystem_info.dylib                    0x00007fff915b3275 mdns_hostbyaddr + 458
    3   libsystem_info.dylib                    0x00007fff915b2fe9 search_host_byaddr + 156
    4   libsystem_info.dylib                    0x00007fff915b2cc5 si_nameinfo + 513
    5   libsystem_info.dylib                    0x00007fff915ac1ed getnameinfo + 209
    6   com.apple.Foundation                    0x00007fff8df398ac __40-[NSHost resolveCurrentHostWithHandler:]_block_invoke_0 + 108
    7   libdispatch.dylib                       0x00007fff8fe6ef01 _dispatch_call_block_and_release + 15
    8   libdispatch.dylib                       0x00007fff8fe6b0b6 _dispatch_client_callout + 8
    9   libdispatch.dylib                       0x00007fff8fe6c1fa _dispatch_worker_thread2 + 304
    10  libsystem_c.dylib                       0x00007fff8a121cab _pthread_wqthread + 404
    11  libsystem_c.dylib                       0x00007fff8a10c171 start_wqthread + 13
    Thread 18:: Dispatch queue: com.apple.root.default-overcommit-priority
    0   libsystem_kernel.dylib                  0x00007fff8fee6d16 kevent + 10
    1   libsystem_info.dylib                    0x00007fff915b090a _mdns_search + 1208
    2   libsystem_info.dylib                    0x00007fff915b3275 mdns_hostbyaddr + 458
    3   libsystem_info.dylib                    0x00007fff915b2fe9 search_host_byaddr + 156
    4   libsystem_info.dylib                    0x00007fff915b2cc5 si_nameinfo + 513
    5   libsystem_info.dylib                    0x00007fff915ac1ed getnameinfo + 209
    6   com.apple.Foundation                    0x00007fff8df398ac __40-[NSHost resolveCurrentHostWithHandler:]_block_invoke_0 + 108
    7   libdispatch.dylib                       0x00007fff8fe6ef01 _dispatch_call_block_and_release + 15
    8   libdispatch.dylib                       0x00007fff8fe6b0b6 _dispatch_client_callout + 8
    9   libdispatch.dylib                       0x00007fff8fe6c1fa _dispatch_worker_thread2 + 304
    10  libsystem_c.dylib                       0x00007fff8a121cab _pthread_wqthread + 404
    11  libsystem_c.dylib                       0x00007fff8a10c171 start_wqthread + 13
    Thread 19:
    0   libsystem_kernel.dylib                  0x00007fff8fee66d6 __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x00007fff8a121eec _pthread_workq_return + 25
    2   libsystem_c.dylib                       0x00007fff8a121cb3 _pthread_wqthread + 412
    3   libsystem_c.dylib                       0x00007fff8a10c171 start_wqthread + 13
    Thread 20:
    0   libsystem_kernel.dylib                  0x00007fff8fee66d6 __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x00007fff8a121eec _pthread_workq_return + 25
    2   libsystem_c.dylib                       0x00007fff8a121cb3 _pthread_wqthread + 412
    3   libsystem_c.dylib                       0x00007fff8a10c171 start_wqthread + 13
    Thread 21:
    0   libsystem_kernel.dylib                  0x00007fff8fee66d6 __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x00007fff8a121eec _pthread_workq_return + 25
    2   libsystem_c.dylib                       0x00007fff8a121cb3 _pthread_wqthread + 412
    3   libsystem_c.dylib                       0x00007fff8a10c171 start_wqthread + 13
    Thread 22:
    0   libsystem_kernel.dylib                  0x00007fff8fee4686 mach_msg_trap + 10
    1   libsystem_kernel.dylib                  0x00007fff8fee3c42 mach_msg + 70
    2   com.apple.CoreFoundation                0x00007fff874ec803 __CFRunLoopServiceMachPort + 195
    3   com.apple.CoreFoundation                0x00007fff874f1ee6 __CFRunLoopRun + 1078
    4   com.apple.CoreFoundation                0x00007fff874f16b2 CFRunLoopRunSpecific + 290
    5   com.apple.Foundation                    0x00007fff8dfac89e -[NSRunLoop(NSRunLoop) runMode:beforeDate:] + 268
    6   com.apple.Foundation                    0x00007fff8df4518a -[NSRunLoop(NSRunLoop) run] + 74
    7   com.apple.CoreMessage                   0x00007fff8839e117 +[_NSSocket _runIOThread] + 77
    8   com.apple.Foundation                    0x00007fff8dfa7612 __NSThread__main__ + 1345
    9   libsystem_c.dylib                       0x00007fff8a11f742 _pthread_start + 327
    10  libsystem_c.dylib                       0x00007fff8a10c181 thread_start + 13
    Thread 23:: com.apple.NSURLConnectionLoader
    0   libsystem_kernel.dylib                  0x00007fff8fee4686 mach_msg_trap + 10
    1   libsystem_kernel.dylib                  0x00007fff8fee3c42 mach_msg + 70
    2   com.apple.CoreFoundation                0x00007fff874ec803 __CFRunLoopServiceMachPort + 195
    3   com.apple.CoreFoundation                0x00007fff874f1ee6 __CFRunLoopRun + 1078
    4   com.apple.CoreFoundation                0x00007fff874f16b2 CFRunLoopRunSpecific + 290
    5   com.apple.Foundation                    0x00007fff8df49586 +[NSURLConnection(Loader) _resourceLoadLoop:] + 356
    6   com.apple.Foundation                    0x00007fff8dfa7612 __NSThread__main__ + 1345
    7   libsystem_c.dylib                       0x00007fff8a11f742 _pthread_start + 327
    8   libsystem_c.dylib                       0x00007fff8a10c181 thread_start + 13
    Thread 24:: com.apple.CFSocket.private
    0   libsystem_kernel.dylib                  0x00007fff8fee6322 __select + 10
    1   com.apple.CoreFoundation                0x00007fff875314e6 __CFSocketManager + 1302
    2   libsystem_c.dylib                       0x00007fff8a11f742 _pthread_start + 327
    3   libsystem_c.dylib                       0x00007fff8a10c181 thread_start + 13
    Thread 25:: JavaScriptCore::BlockFree
    0   libsystem_kernel.dylib                  0x00007fff8fee60fa __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x00007fff8a123f89 _pthread_cond_wait + 869
    2   com.apple.JavaScriptCore                0x00007fff8c874d96 ***::ThreadCondition::timedWait(***::Mutex&, double) + 118
    3   com.apple.JavaScriptCore                0x00007fff8ca96d0a JSC::BlockAllocator::blockFreeingThreadMain() + 90
    4   com.apple.JavaScriptCore                0x00007fff8caac36f ***::wtfThreadEntryPoint(void*) + 15
    5   libsystem_c.dylib                       0x00007fff8a11f742 _pthread_start + 327
    6   libsystem_c.dylib                       0x00007fff8a10c181 thread_start + 13
    Thread 26:: JavaScriptCore::Marking
    0   libsystem_kernel.dylib                  0x00007fff8fee60fa __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x00007fff8a123f89 _pthread_cond_wait + 869
    2   com.apple.JavaScriptCore                0x00007fff8c9f9724 JSC::SlotVisitor::drainFromShared(JSC::SlotVisitor::SharedDrainMode) + 212
    3   com.apple.JavaScriptCore                0x00007fff8c9f9606 JSC::MarkStackThreadSharedData::markingThreadMain() + 214
    4   com.apple.JavaScriptCore                0x00007fff8caac36f ***::wtfThreadEntryPoint(void*) + 15
    5   libsystem_c.dylib                       0x00007fff8a11f742 _pthread_start + 327
    6   libsystem_c.dylib                       0x00007fff8a10c181 thread_start + 13
    Thread 27:: JavaScriptCore::Marking
    0   libsystem_kernel.dylib                  0x00007fff8fee60fa __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x00007fff8a123f89 _pthread_cond_wait + 869
    2   com.apple.JavaScriptCore                0x00007fff8c9f9724 JSC::SlotVisitor::drainFromShared(JSC::SlotVisitor::SharedDrainMode) + 212
    3   com.apple.JavaScriptCore                0x00007fff8c9f9606 JSC::MarkStackThreadSharedData::markingThreadMain() + 214
    4   com.apple.JavaScriptCore                0x00007fff8caac36f ***::wtfThreadEntryPoint(void*) + 15
    5   libsystem_c.dylib                       0x00007fff8a11f742 _pthread_start + 327
    6   libsystem_c.dylib                       0x00007fff8a10c181 thread_start + 13
    Thread 28:: JavaScriptCore::Marking
    0   libsystem_kernel.dylib                  0x00007fff8fee60fa __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x00007fff8a123f89 _pthread_cond_wait + 869
    2   com.apple.JavaScriptCore                0x00007fff8c9f9724 JSC::SlotVisitor::drainFromShared(JSC::SlotVisitor::SharedDrainMode) + 212
    3   com.apple.JavaScriptCore                0x00007fff8c9f9606 JSC::MarkStackThreadSharedData::markingThreadMain() + 214
    4   com.apple.JavaScriptCore                0x00007fff8caac36f ***::wtfThreadEntryPoint(void*) + 15
    5   libsystem_c.dylib                       0x00007fff8a11f742 _pthread_start + 327
    6   libsystem_c.dylib                       0x00007fff8a10c181 thread_start + 13
    Thread 29:: com.apple.CoreAnimation.render-server
    0   libsystem_kernel.dylib                  0x00007fff8fee4686 mach_msg_trap + 10
    1   libsystem_kernel.dylib                  0x00007fff8fee3c42 mach_msg + 70
    2   com.apple.QuartzCore                    0x00007fff8c3e035b CA::Render::Server::server_thread(void*) + 403
    3   com.apple.QuartzCore                    0x00007fff8c464e76 thread_fun + 25
    4   libsystem_c.dylib                       0x00007fff8a11f742 _pthread_start + 327
    5   libsystem_c.dylib                       0x00007fff8a10c181 thread_start + 13
    Thread 4 crashed with X86 Thread State (64-bit):
      rax: 0x0000000000000000  rbx: 0x0000000000000006  rcx: 0x00000001051f2cd8  rdx: 0x0000000000000000
      rdi: 0x0000000000001e03  rsi: 0x0000000000000006  rbp: 0x00000001051f2d00  rsp: 0x00000001051f2cd8
       r8: 0x00007fff75952278   r9: 0x000000000000000f  r10: 0x0000000030000000  r11: 0x0000000000000206
      r12: 0x00000001051f2e60  r13: 0x00007fff76929d48  r14: 0x00000001051f3000  r15: 0x00000001051f2d40
      rip: 0x00007fff8fee6212  rfl: 0x0000000000000206  cr2: 0x00007fff7594bfe8
    Logical CPU: 0
    Binary Images:
           0x104a5e000 -        0x104dfdfff  com.apple.mail (6.2 - 1499) <CA67357A-2C0F-352B-98FC-1752A4438371> /Applications/Mail.app/Contents/MacOS/Mail
           0x10527a000 -        0x10527cfff  apop.so (169) <2A1CAD32-5734-3D4E-868B-E773DCD192B5> /usr/lib/sasl2/apop.so
           0x105280000 -        0x105294fff  dhx.so (169) <3C4D7E51-F30B-3A5B-9BB6-4426EC607E10> /usr/lib/sasl2/dhx.so
           0x1052a0000 -        0x1052a9ff7  digestmd5WebDAV.so (169) <D1EF0A0E-92FA-321F-9445-DD08A64C2493> /usr/lib/sasl2/digestmd5WebDAV.so
           0x1052ae000 -        0x1052b0fff  libanonymous.2.so (166) <6417EA9E-4202-31DA-A086-B58F1E92C931> /usr/lib/sasl2/libanonymous.2.so
           0x1052b5000 -        0x1052b8fff  libcrammd5.2.so (166) <866C8DD4-5086-376A-BFC7-897A40327DB4> /usr/lib/sasl2/libcrammd5.2.so
           0x1052bd000 -        0x1052c6ff7  libdigestmd5.2.so (166) <F2344A08-F032-35D3-9EBB-F147D4100517> /usr/lib/sasl2/libdigestmd5.2.so
           0x1052cb000 -        0x1052d0fff  libgssapiv2.2.so (166) <83A21AF3-FB42-3ACC-B6ED-26B23388C4F4> /usr/lib/sasl2/libgssapiv2.2.so
           0x1052d5000 -        0x1052d7fff  login.so (166) <1F868238-FB26-3477-B31C-67DB400D6F68> /usr/lib/sasl2/login.so
           0x1052db000 -        0x1052e0fff  libntlm.so (166) <82608FB8-E225-39FF-BC83-B9D3F89D7CEC> /usr/lib/sasl2/libntlm.so
           0x1052e5000 -        0x1052ecfff  libotp.2.so (166) <2AE53E63-A826-3E20-9B4D-476CC712410D> /usr/lib/sasl2/libotp.2.so
           0x1052f5000 -        0x1052f7fff  libplain.2.so (166) <074D7604-3435-3E01-A86B-FF102001FC5B> /usr/lib/sasl2/libplain.2.so
           0x1052fc000 -        0x105300fff  libpps.so (169) <3C150ECF-0D94-3DBE-8AB6-7B0070700699> /usr/lib/sasl2/libpps.so
           0x105305000 -        0x105308fff  mschapv2.so (169) <9DAC741E-6BB8-3DFA-85AD-532EB20E780B> /usr/lib/sasl2/mschapv2.so
           0x10530d000 -        0x10533afff  com.apple.DirectoryService.PasswordServerFramework (10.8 - 27) <4D67D74D-9200-3838-87D6-5E1968C81019> /System/Library/PrivateFrameworks/PasswordServer.framework/Versions/A/PasswordS erver
           0x105350000 -        0x105352fff  pwauxprop.so (387) <02EC8AD8-70F5-3512-8026-B41832050634> /usr/lib/sasl2/pwauxprop.so
           0x105357000 -        0x10535afff  shadow_auxprop.so (169) <FE9BCBA3-7F30-303B-A815-8FADE514246E> /usr/lib/sasl2/shadow_auxprop.so
           0x106584000 -        0x106586fff  smb_nt.so (169) <F6798ECD-BBC9-3055-96E9-3A9836E36E7A> /usr/lib/sasl2/smb_nt.so
           0x10658b000 -        0x10658efff  smb_ntlmv2.so (169) <FB9D0145-0F31-3FA1-A6B4-5F8530CC60CA> /usr/lib/sasl2/smb_ntlmv2.so
           0x107005000 -        0x107006fff  com.apple.AddressBook.LocalSourceBundle (2.1 - 1167) <07E0DB43-14DD-3741-BCCA-31CE397A53BC> /System/Library/Address Book Plug-Ins/LocalSource.sourcebundle/Contents/MacOS/LocalSource
           0x107018000 -        0x10701bfff  com.apple.DirectoryServicesSource (2.1 - 1167) <2BB7BD50-BBB3-3FA9-BAB1-04C704726905> /System/Library/Address Book Plug-Ins/DirectoryServices.sourcebundle/Contents/MacOS/DirectoryServices
           0x107023000 -        0x107076fff  com.apple.AddressBook.CardDAVPlugin (10.8 - 332) <14042D69-8E1F-3241-A679-C7ED224F2C43> /System/Library/Address Book Plug-Ins/CardDAVPlugin.sourcebundle/Contents/MacOS/CardDAVPlugin
           0x1082ae000 -        0x1082bfff7  com.apple.NSServerNotificationCenter (5.0 - 5.0) <151748DA-BEAC-3E8C-B139-09256914F45E> /System/Library/Frameworks/ServerNotification.framework/Versions/A/ServerNotifi cation
           0x1084cd000 -        0x1084d5fff  com.apple.SyncedDefaults (1.2 - 43.27) <BE895936-D6C0-3CC0-BDE4-FEDA10B9EABD> /System/Library/PrivateFrameworks/SyncedDefaults.framework/SyncedDefaults
           0x1097f5000 -        0x1097f5ff1 +cl_kernels (???) <5D60DB92-C236-4167-845F-1B7030431142> cl_kernels
           0x109804000 -        0x10980dfe7  libcldcpuengine.dylib (2.1.19) <50800DA2-7233-32E5-9553-A02171B68399> /System/Library/Frameworks/OpenCL.framework/Libraries/libcldcpuengine.dylib
           0x109813000 -        0x109816ff7  libCoreFSCache.dylib (24.4) <C375CAA0-F91F-3D9F-AF90-DB951BD86983> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreFSCache .dylib
           0x10981e000 -        0x10981fff3 +cl_kernels (???) <B1437DEC-E6E2-4560-AD40-8F5827251E78> cl_kernels
           0x109dd3000 -        0x109e6eff7  unorm8_bgra.dylib (2.1.19) <904EA51D-225A-38AF-B66C-84493C55C065> /System/Library/Frameworks/OpenCL.framework/Libraries/ImageFormats/unorm8_bgra. dylib
           0x109ea8000 -        0x109ea8ff3 +cl_kernels (???) <4BF96536-AEE0-43A7-98DE-25E44B32CCDF> cl_kernels
           0x109ecd000 -        0x109f63ff7  unorm8_rgba.dylib (2.1.19) <9F69E2DA-1FFB-349D-AA56-30D667519AA9> /System/Library/Frameworks/OpenCL.framework/Libraries/ImageFormats/unorm8_rgba. dylib
           0x109f99000 -        0x109f9aff2 +cl_kernels (???) <8532CB27-B692-4A56-841A-CAD0F62F48B5> cl_kernels
           0x10a598000 -        0x10a599ff3 +cl_kernels (???) <E1D36A2E-1E06-42D8-BC0F-43830461378C> cl_kernels
           0x10a5b2000 -        0x10a5b2ff1 +cl_kernels (???) <897E5C10-8C63-4166-B650-9515B5687112> cl_kernels
           0x10a5b6000 -        0x10a5b6ff9 +cl_kernels (???) <A584B2C8-857B-49A3-A552-8797956188EF> cl_kernels
           0x10a833000 -        0x10a850ff7  com.apple.Mail.Syncer (6.0 - 1499) <F3DF0BBB-9D3B-38D0-B503-43895E6F50F9> /System/Library/Frameworks/Message.framework/Versions/B/Resources/Syncer.syncsc hema/Contents/MacOS/Syncer
           0x10a85f000 -        0x10a871ff7  com.apple.syncservices.syncservicesui (7.0 - 713) <188BC0FA-C4F7-3F96-BACF-61CDFDDABE9C> /System/Library/PrivateFrameworks/SyncServicesUI.framework/Versions/A/SyncServi cesUI
           0x10a87f000 -        0x10a882ff7  com.apple.126.iaplugin (1.1 - 110) <28237247-AC0F-3346-B8F6-24D245CECC61> /System/Library/InternetAccounts/126.iaplugin/Contents/MacOS/126
           0x10a888000 -        0x10a88bff7  com.apple.163.iaplugin (1.1 - 110) <F7B047C7-9FEF-35FE-B424-65588EE45305> /System/Library/InternetAccounts/163.iaplugin/Contents/MacOS/163
           0x10a891000 -        0x10a896ff7  com.apple.contacts.iaplugin (2.1 - 1167) <0B5DCBCD-EB14-31A8-B195-1F52A62DC6E2> /System/Library/InternetAccounts/AddressBook.iaplugin/Contents/MacOS/AddressBoo k
           0x10a8a0000 -        0x10a8a3fff  com.apple.aol.iaplugin (2.1 - 210) <21E2CE93-5CD8-31C8-8983-5B21189FF8A2> /System/Library/InternetAccounts/AOL.iaplugin/Contents/MacOS/AOL
           0x10a8a9000 -        0x10a8b1ff7  com.apple.calendar.iaplugin (6.0 - 1245) <96C245EE-2056-30B9-8FEB-31578CD70D64> /System/Library/InternetAccounts/Calendar.iaplugin/Contents/MacOS/Calendar
           0x10a8ba000 -        0x10a8c3fff  com.apple.exchange.iaplugin (2.1 - 210) <AC5786E6-4911-36C3-82C7-DD8A338A2EE6> /System/Library/InternetAccounts/Exchange.iaplugin/Contents/MacOS/Exchange
           0x10a8cd000 -        0x10a8d5ff7  com.apple.facebook.iaplugin (1.1 - 110) <E81B139F-46F9-381D-9BC2-FD268494B3DC> /System/Library/InternetAccounts/Facebook.iaplugin/Contents/MacOS/Facebook
           0x10a8de000 -        0x10a8e9ff7  com.apple.flickr.iaplugin (1.1 - 110) <830A87A4-89C8-3786-AEBB-3D6879F665B4> /System/Library/InternetAccounts/Flickr.iaplugin/Contents/MacOS/Flickr
           0x10a8f4000 -        0x10a8f8ff7  com.apple.google.iaplugin (2.1 - 210) <2C3B7EE3-FA27-3411-99CE-FA2F8EC84B90> /System/Library/InternetAccounts/Google.iaplugin/Contents/MacOS/Google
           0x10a8ff000 -        0x10a904fff  com.apple.chat.iaplugin (7.0.1 - 3314) <11923513-0085-30E5-812E-95A39C637D1B> /System/Library/InternetAccounts/iChat.iaplugin/Contents/MacOS/iChat
           0x10a90a000 -        0x10a926fff  com.apple.icloud.iaplugin (1.0.1 - 238.3) <B6A99272-B09A-3C74-8516-39D39CC8E856> /System/Library/InternetAccounts/iCloud.iaplugin/Contents/MacOS/iCloud
           0x10a93a000 -        0x10a993fff  com.apple.AOSUI (1.1 - 149) <1F4006E0-FD21-3836-B94C-A2D4181759C8> /System/Library/PrivateFrameworks/AOSUI.framework/Versions/A/AOSUI
           0x10a9cd000 -        0x10a9d7ff7  com.apple.AppleSRP (5.0 - 1) <16B1431A-295A-386B-9159-A396877D6FE3> /System/Library/PrivateFrameworks/AppleSRP.framework/Versions/A/AppleSRP
           0x10aa0e000 -        0x10aa16fff  com.apple.mail.iaplugin (6.2 - 1499) <805FB6A7-0AC0-3EAE-8610-4042448F379A> /System/Library/InternetAccounts/Mail.iaplugin/Contents/MacOS/Mail
           0x10aa4d000 -        0x10aa53ff7  com.apple.Notes.iaplugin (1.1 - 99) <46B8A3F3-9ED8-3538-BE02-C8D7EBE03EE3> /System/Library/InternetAccounts/Notes.iaplugin/Contents/MacOS/Notes
           0x10b2e4000 -        0x10b2e9fff  com.apple.osxserver.iaplugin (2.1 - 210) <1A1A62B1-F045-30E5-B2B9-98B55062D329> /System/Library/InternetAccounts/OSXServer.iaplugin/Contents/MacOS/OSXServer
           0x10b315000 -        0x10b328ff7  com.apple.mail.WebPlugIn (6.2 - 1499) <A41E1F34-8577-3182-9F9D-FC9FD3F75EFE> /Applications/Mail.app/Contents/PlugIns/MailWebPlugIn.webplugin/Contents/MacOS/ MailWebPlugIn
           0x10b34a000 -        0x10b34bfff  libACSClient.dylib (48) <DCF5B9D9-B76E-38C3-A8A8-F5CBE52F8CEB> /usr/lib/libACSClient.dylib
           0x10b350000 -        0x10b353fff  com.apple.qq.iaplugin (1.1 - 110) <5ADCB6DA-697E-3B72-88B7-CD5135876960> /System/Library/InternetAccounts/QQ.iaplugin/Contents/MacOS/QQ
           0x10c1a5000 -        0x10c359fff  libCMaps.A.dylib (324.6) <B64AAA66-4519-3BB6-BB75-296B7CB6834A> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCMaps.A.dylib
           0x10c562000 -        0x10c5a3ff7  com.apple.Notes.framework (1.1 - 99) <1AE41D51-4594-374F-BA37-DA377AC20495> /System/Library/PrivateFrameworks/Notes.framework/Versions/A/Notes
           0x10c61c000 -        0x10c623ff7  com.apple.tudou.iaplugin (1.1 - 110) <BCBDD485-DA59-3D36-A11F-A13C09D12CB4> /System/Library/InternetAccounts/Tudou.iaplugin/Contents/MacOS/Tudou
           0x10c62c000 -        0x10c633ff7  com.apple.twitter.iaplugin (1.1 - 110) <CF58CB2E-EAE1-3055-A709-E2477879386C> /System/Library/InternetAccounts/TwitterPlugin.iaplugin/Contents/MacOS/TwitterP lugin
           0x10c63c000 -        0x10c643fff  com.apple.vimeo.iaplugin (1.1 - 110) <BC0F39D8-21D7-388F-BCD9-841F5FB9E481> /System/Library/InternetAccounts/Vimeo.iaplugin/Contents/MacOS/Vimeo
           0x10c64c000 -        0x10c653fff  com.apple.weibo.iaplugin (1.1 - 110) <A06888AB-F3C0-35BC-8196-9A97014026B8> /System/Library/InternetAccounts/Weibo.iaplugin/Contents/MacOS/Weibo
           0x10c65b000 -        0x10c65eff7  com.apple.yahoo.iaplugin (2.1 - 210) <14A5DC97-BEE1-3840-B688-7EF60303D61D> /System/Library/InternetAccounts/Yahoo.iaplugin/Contents/MacOS/Yahoo
           0x10c664000 -        0x10c66bff7  com.apple.youku.iaplugin (1.1 - 110) <36AD27D4-E74D-309B-884E-790F0099D19A> /System/Library/InternetAccounts/Youku.iaplugin/Contents/MacOS/Youku
        0x7fff6465e000 -     0x7fff6469293f  dyld (210.2.3) <A40597AA-5529-3337-8C09-D8A014EB1578> /usr/lib/dyld
        0x7fff8508c000 -     0x7fff85212fff  libBLAS.dylib (1073.4) <C102C0F6-8CB6-3B49-BA6B-2EB61F0B2784> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libBLAS.dylib
        0x7fff85213000 -     0x7fff85234fff  com.apple.Ubiquity (1.2 - 243.10) <F97D3A33-2C8B-3CFF-AF75-A74866D42853> /System/Library/PrivateFrameworks/Ubiquity.framework/Versions/A/Ubiquity
        0x7fff85235000 -     0x7fff85237fff  com.apple.TrustEvaluationAgent (2.0 - 23) <A97D348B-32BF-3E52-8DF2-59BFAD21E1A3> /System/Library/PrivateFrameworks/TrustEvaluationAgent.framework/Versions/A/Tru stEvaluationAgent
        0x7fff85238000 -     0x7fff85249ff7  com.apple.CalendarFoundation (1.0 - 29) <2C84D3EB-844E-39DA-A848-43FC42707168> /System/Library/PrivateFrameworks/CalendarFoundation.framework/Versions/A/Calen darFoundation
        0x7fff85256000 -     0x7fff852b0ff7  com.apple.imfoundation (8.0 - 900) <850E59A3-B5CE-3149-8D42-9ED4CBBCAA9D> /System/Library/PrivateFrameworks/IMFoundation.framework/Versions/A/IMFoundatio n
        0x7fff852b1000 -     0x7fff85306ff7  libTIFF.dylib (845) <ADCB4683-69EB-318B-8BE7-5FDF38BCADAF> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libTIFF.dylib
        0x7fff85307000 -     0x7fff85312ff7  com.apple.CalendarAgentLink (1.0 - 37) <B794F739-3AA0-395E-B8EA-3E9DECA10890> /System/Library/PrivateFrameworks/CalendarAgentLink.framework/Versions/A/Calend arAgentLink
        0x7fff85315000 -     0x7fff85318fff  com.apple.AppleSystemInfo (2.0 - 2) <BC221376-361F-3F85-B284-DC251D3BB442> /System/Library/PrivateFrameworks/AppleSystemInfo.framework/Versions/A/AppleSys temInfo
        0x7fff85371000 -     0x7fff8537cff7  com.apple.bsd.ServiceManagement (2.0 - 2.0) <C12962D5-85FB-349E-AA56-64F4F487F219> /System/Library/Frameworks/ServiceManagement.framework/Versions/A/ServiceManage ment
        0x7fff85385000 -     0x7fff853c8ff7  com.apple.bom (12.0 - 192) <0BF1F2D2-3648-36B7-BE4B-551A0173209B> /System/Library/PrivateFrameworks/Bom.framework/Versions/A/Bom
        0x7fff853c9000 -     0x7fff85436fff  com.apple.datadetectorscore (4.0 - 269.1) <C94C372B-3821-3A46-A8C2-091AB1CFF7F4> /System/Library/PrivateFrameworks/DataDetectorsCore.framework/Versions/A/DataDe tectorsCore
        0x7fff85437000 -     0x7fff85534ff7  libxml2.2.dylib (22.3) <47B09CB2-C636-3024-8B55-6040F7829B4C> /usr/lib/libxml2.2.dylib
        0x7fff85535000 -     0x7fff85584ff7  libcorecrypto.dylib (106.2) <CE0C29A3-C420-339B-ADAA-52F4683233CC> /usr/lib/system/libcorecrypto.dylib
        0x7fff85585000 -     0x7fff8562bff7  com.apple.CoreServices.OSServices (557.4 - 557.4) <841878A8-6F3E-300D-8F01-444B3CC1F41D> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServi ces.framework/Versions/A/OSServices
        0x7fff8562c000 -     0x7fff85653fff  com.apple.framework.familycontrols (4.1 - 410) <AE49B2AB-7D2B-3D52-8E21-60EBEA1A38E6> /System/Library/PrivateFrameworks/FamilyControls.framework/Versions/A/FamilyCon trols
        0x7fff85654000 -     0x7fff85654fff  com.apple.Carbon (154 - 155) <372716D2-6FA1-3611-8501-3DD1D4A6E8C8> /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
        0x7fff85655000 -     0x7fff856b1fff  com.apple.corelocation (1.0 - 1239.39) <88EFC8F1-0A91-3EB6-A1F6-76294541D85D> /System/Library/Frameworks/CoreLocation.framework/Versions/A/CoreLocation
       

    Do a backup.
    Quit the application.
    Go to Finder and select your user/home folder. With that Finder window as the front window, either select Finder/View/Show View options or go command - J.  When the View options opens, check ’Show Library Folder’. That should make your user library folder visible in your user/home folder.  Select Library. Then go to Preferences/com.apple.mail.plist. Move the .plist to your desktop.
    Restart, open the application and test. If it works okay, delete the plist from the desktop.
    If the application is the same, return the .plist to where you got it from, overwriting the newer one.
    Thanks to leonie for some information contained in this.

  • Mail keeps crashing!

    I haven't done anything different in a while and all my programs are up to date!  My OS is Mountain Lion 10.8.3. Here'e the crash message:
    Process:         Mail [2477]
    Path:            /Applications/Mail.app/Contents/MacOS/Mail
    Identifier:      com.apple.mail
    Version:         6.3 (1503)
    Build Info:      Mail-1503000000000000~2
    Code Type:       X86-64 (Native)
    Parent Process:  launchd [137]
    User ID:         501
    Date/Time:       2013-05-16 16:03:11.167 -0400
    OS Version:      Mac OS X 10.8.3 (12D78)
    Report Version:  10
    Interval Since Last Report:          19005 sec
    Crashes Since Last Report:           15
    Per-App Interval Since Last Report:  674918 sec
    Per-App Crashes Since Last Report:   15
    Anonymous UUID:                      E0ACFA4B-8C20-517F-3E6A-3A173E2CA538
    Crashed Thread:  0  Dispatch queue: com.apple.main-thread
    Exception Type:  EXC_CRASH (SIGABRT)
    Exception Codes: 0x0000000000000000, 0x0000000000000000
    Application Specific Information:
    *** Terminating app due to uncaught exception 'InternetAccountsMissingProperty', reason: 'Settings is missing a user name'
    abort() called
    terminate called throwing an exception
    Application Specific Backtrace 1:
    0   CoreFoundation                      0x00007fff9477cb06 __exceptionPreprocess + 198
    1   libobjc.A.dylib                     0x00007fff958493f0 objc_exception_throw + 43
    2   CoreFoundation                      0x00007fff9477c8dc +[NSException raise:format:] + 204
    3   InternetAccounts                    0x00007fff93f9fdcd -[IAPasswordUIController _getAccountInfo] + 631
    4   InternetAccounts                    0x00007fff93f9f0b6 -[IAPasswordUIController displayForWindow:] + 32
    5   Foundation                          0x00007fff984ca12f -[NSBlockOperation main] + 124
    6   Foundation                          0x00007fff984a0036 -[__NSOperationInternal start] + 684
    7   Foundation                          0x00007fff984a7861 __block_global_6 + 129
    8   libdispatch.dylib                   0x00007fff957acf01 _dispatch_call_block_and_release + 15
    9   libdispatch.dylib                   0x00007fff957a90b6 _dispatch_client_callout + 8
    10  libdispatch.dylib                   0x00007fff957ae0c8 _dispatch_main_queue_callback_4CF + 275
    11  CoreFoundation                      0x00007fff9471eb4c __CFRunLoopRun + 1644
    12  CoreFoundation                      0x00007fff9471e0e2 CFRunLoopRunSpecific + 290
    13  HIToolbox                           0x00007fff8c6c9eb4 RunCurrentEventLoopInMode + 209
    14  HIToolbox                           0x00007fff8c6c9c52 ReceiveNextEventCommon + 356
    15  HIToolbox                           0x00007fff8c6c9ae3 BlockUntilNextEventMatchingListInMode + 62
    16  AppKit                              0x00007fff8e353563 _DPSNextEvent + 685
    17  AppKit                              0x00007fff8e352e22 -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 128
    18  AppKit                              0x00007fff8e34a1d3 -[NSApplication run] + 517
    19  AppKit                              0x00007fff8e2eec06 NSApplicationMain + 869
    20  libdyld.dylib                       0x00007fff8cac67e1 start + 0
    21  ???                                 0x0000000000000002 0x0 + 2
    Thread 0 Crashed:: Dispatch queue: com.apple.main-thread
    0   libsystem_kernel.dylib                  0x00007fff97e80212 __pthread_kill + 10
    1   libsystem_c.dylib                       0x00007fff95401b54 pthread_kill + 90
    2   libsystem_c.dylib                       0x00007fff95445dce abort + 143
    3   libc++abi.dylib                         0x00007fff959769eb abort_message + 257
    4   libc++abi.dylib                         0x00007fff9597439a default_terminate() + 28
    5   libobjc.A.dylib                         0x00007fff95849873 _objc_terminate() + 91
    6   libc++.1.dylib                          0x00007fff941878fe std::terminate() + 20
    7   libobjc.A.dylib                         0x00007fff958495de objc_terminate + 9
    8   libdispatch.dylib                       0x00007fff957a90ca _dispatch_client_callout + 28
    9   libdispatch.dylib                       0x00007fff957ae0c8 _dispatch_main_queue_callback_4CF + 275
    10  com.apple.CoreFoundation                0x00007fff9471eb4c __CFRunLoopRun + 1644
    11  com.apple.CoreFoundation                0x00007fff9471e0e2 CFRunLoopRunSpecific + 290
    12  com.apple.HIToolbox                     0x00007fff8c6c9eb4 RunCurrentEventLoopInMode + 209
    13  com.apple.HIToolbox                     0x00007fff8c6c9c52 ReceiveNextEventCommon + 356
    14  com.apple.HIToolbox                     0x00007fff8c6c9ae3 BlockUntilNextEventMatchingListInMode + 62
    15  com.apple.AppKit                        0x00007fff8e353563 _DPSNextEvent + 685
    16  com.apple.AppKit                        0x00007fff8e352e22 -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 128
    17  com.apple.AppKit                        0x00007fff8e34a1d3 -[NSApplication run] + 517
    18  com.apple.AppKit                        0x00007fff8e2eec06 NSApplicationMain + 869
    19  libdyld.dylib                           0x00007fff8cac67e1 start + 1
    Thread 1:: Dispatch queue: com.apple.libdispatch-manager
    0   libsystem_kernel.dylib                  0x00007fff97e80d16 kevent + 10
    1   libdispatch.dylib                       0x00007fff957abdea _dispatch_mgr_invoke + 883
    2   libdispatch.dylib                       0x00007fff957ab9ee _dispatch_mgr_thread + 54
    Thread 2:: -[EWSAccount _synchronizeAccountWithServerWithUserInput:]  Dispatch queue: com.apple.root.default-overcommit-priority
    0   libsystem_kernel.dylib                  0x00007fff97e800fa __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x00007fff95404fe9 _pthread_cond_wait + 869
    2   com.apple.Foundation                    0x00007fff98447a73 -[__NSOperationInternal waitUntilFinished] + 151
    3   com.apple.MessageFramework              0x00007fff93581f8c -[EWSGateway _syncFolderHierarchyWithSyncState:includesLastItem:] + 348
    4   com.apple.MessageFramework              0x00007fff93581e01 -[EWSGateway syncFolderHierarchyWithSyncState:] + 76
    5   com.apple.MessageFramework              0x00007fff9356f807 -[EWSAccount _synchronizeMailboxListWithUserInput:] + 661
    6   com.apple.MessageFramework              0x00007fff93538e4f -[RemoteStoreAccount _synchronizeAccountWithServerWithUserInput:] + 318
    7   com.apple.CoreFoundation                0x00007fff9477009c __invoking___ + 140
    8   com.apple.CoreFoundation                0x00007fff9476ff37 -[NSInvocation invoke] + 263
    9   com.apple.CoreMessage                   0x00007fff98c26867 -[MonitoredInvocation invoke] + 225
    10  com.apple.CoreMessage                   0x00007fff98c3eeb2 -[ThrowingInvocationOperation main] + 33
    11  com.apple.CoreMessage                   0x00007fff98beb042 -[_MFInvocationOperation main] + 431
    12  com.apple.Foundation                    0x00007fff984a0036 -[__NSOperationInternal start] + 684
    13  com.apple.Foundation                    0x00007fff984a7861 __block_global_6 + 129
    14  libdispatch.dylib                       0x00007fff957acf01 _dispatch_call_block_and_release + 15
    15  libdispatch.dylib                       0x00007fff957a90b6 _dispatch_client_callout + 8
    16  libdispatch.dylib                       0x00007fff957aa1fa _dispatch_worker_thread2 + 304
    17  libsystem_c.dylib                       0x00007fff95402d0b _pthread_wqthread + 404
    18  libsystem_c.dylib                       0x00007fff953ed1d1 start_wqthread + 13
    Thread 3:: Dispatch queue: com.apple.root.default-overcommit-priority
    0   libsystem_kernel.dylib                  0x00007fff97e7e686 mach_msg_trap + 10
    1   libsystem_kernel.dylib                  0x00007fff97e7dc42 mach_msg + 70
    2   com.apple.CoreFoundation                0x00007fff94719233 __CFRunLoopServiceMachPort + 195
    3   com.apple.CoreFoundation                0x00007fff9471e916 __CFRunLoopRun + 1078
    4   com.apple.CoreFoundation                0x00007fff9471e0e2 CFRunLoopRunSpecific + 290
    5   com.apple.Foundation                    0x00007fff984abf5e -[NSRunLoop(NSRunLoop) runMode:beforeDate:] + 268
    6   com.apple.ExchangeWebServices           0x00007fff982aae27 -[SOAPRequest sendSynchronously:] + 451
    7   com.apple.ExchangeWebServices           0x00007fff98291976 -[EWSExchangeServiceBinding sendSynchronousMessage:error:] + 84
    8   com.apple.MessageFramework              0x00007fff935771a2 -[EWSConnection _sendMessage:error:] + 210
    9   com.apple.MessageFramework              0x00007fff935769ea -[EWSConnection sendMessage:forRequest:] + 54
    10  com.apple.MessageFramework              0x00007fff9357fcd3 -[EWSGateway sendMessage:forRequest:] + 69
    11  com.apple.MessageFramework              0x00007fff9359665a -[EWSRequestOperation executeOperation] + 110
    12  com.apple.CoreMessage                   0x00007fff98c26c10 -[MonitoredOperation main] + 219
    13  com.apple.Foundation                    0x00007fff984a0036 -[__NSOperationInternal start] + 684
    14  com.apple.Foundation                    0x00007fff984a7861 __block_global_6 + 129
    15  libdispatch.dylib                       0x00007fff957acf01 _dispatch_call_block_and_release + 15
    16  libdispatch.dylib                       0x00007fff957a90b6 _dispatch_client_callout + 8
    17  libdispatch.dylib                       0x00007fff957aa1fa _dispatch_worker_thread2 + 304
    18  libsystem_c.dylib                       0x00007fff95402d0b _pthread_wqthread + 404
    19  libsystem_c.dylib                       0x00007fff953ed1d1 start_wqthread + 13
    Thread 4:: -[MFAosImapAccount _synchronizeAccountWithServerWithUserInput:]  Dispatch queue: com.apple.root.default-overcommit-priority
    0   libsystem_kernel.dylib                  0x00007fff97e7e686 mach_msg_trap + 10
    1   libsystem_kernel.dylib                  0x00007fff97e7dc42 mach_msg + 70
    2   com.apple.CoreFoundation                0x00007fff94719233 __CFRunLoopServiceMachPort + 195
    3   com.apple.CoreFoundation                0x00007fff9471e916 __CFRunLoopRun + 1078
    4   com.apple.CoreFoundation                0x00007fff9471e0e2 CFRunLoopRunSpecific + 290
    5   com.apple.CoreMessage                   0x00007fff98bc31a9 _handleRequestWithTimeout + 1527
    6   com.apple.CoreMessage                   0x00007fff98bc598b -[_NSSocket readBytes:length:error:] + 161
    7   com.apple.CoreMessage                   0x00007fff98bdfb3b -[Connection _readBytesFromSocketIntoBuffer:amount:requireAllBytes:error:] + 76
    8   com.apple.CoreMessage                   0x00007fff98bdfa21 -[Connection _fillBuffer:] + 764
    9   com.apple.CoreMessage                   0x00007fff98bdf5b3 -[Connection _readLineIntoData:error:] + 202
    10  com.apple.IMAP                          0x00007fff8df97486 -[IMAPConnection _readLineIntoData:error:] + 53
    11  com.apple.IMAP                          0x00007fff8df9de14 -[IMAPConnection(MFPrivate) _readDataOfLength:intoData:error:] + 112
    12  com.apple.IMAP                          0x00007fff8dfc0428 -[IMAPResponse initWithConnection:error:] + 144
    13  com.apple.IMAP                          0x00007fff8df9757a -[IMAPConnection _copyNextServerResponse:] + 55
    14  com.apple.IMAP                          0x00007fff8df955c8 -[IMAPConnection _completeConnectionWithResult:] + 70
    15  com.apple.CoreMessage                   0x00007fff98bde4d6 -[Connection connectDiscoveringBestSettings:] + 1295
    16  com.apple.MessageFramework              0x00007fff935a2fcd -[IMAPAccount connectAndAuthenticate:] + 502
    17  com.apple.IMAP                          0x00007fff8dfa1d5d -[IMAPConnectionPool _validateAndCheckOutGateway:forMailbox:allowReconnect:newGateway:] + 334
    18  com.apple.IMAP                          0x00007fff8df9fe39 -[IMAPConnectionPool _checkOutNewGatewayWithConnection:forMailbox:] + 301
    19  com.apple.MessageFramework              0x00007fff935218a5 -[IMAPAccount _getPotentialGatewayForMailbox:options:createdNewConnection:needsSelect:] + 429
    20  com.apple.MessageFramework              0x00007fff935214b0 -[IMAPAccount _gatewayForMailboxUid:name:options:] + 180
    21  com.apple.MessageFramework              0x00007fff9353cb4a -[IMAPAccount _listingForMailboxUid:listAllChildren:onlySubscribed:withUserInput:] + 115
    22  com.apple.MessageFramework              0x00007fff9353c6a2 -[IMAPAccount _listingForMailboxUid:listAllChildren:withUserInput:] + 88
    23  com.apple.MessageFramework              0x00007fff9353c5e3 -[IMAPAccount _synchronizeMailboxListWithUserInput:] + 64
    24  com.apple.MessageFramework              0x00007fff93538e4f -[RemoteStoreAccount _synchronizeAccountWithServerWithUserInput:] + 318
    25  com.apple.MessageFramework              0x00007fff93538ae3 -[IMAPAccount _synchronizeAccountWithServerWithUserInput:] + 45
    26  com.apple.CoreFoundation                0x00007fff9477009c __invoking___ + 140
    27  com.apple.CoreFoundation                0x00007fff9476ff37 -[NSInvocation invoke] + 263
    28  com.apple.CoreMessage                   0x00007fff98c26867 -[MonitoredInvocation invoke] + 225
    29  com.apple.CoreMessage                   0x00007fff98c3eeb2 -[ThrowingInvocationOperation main] + 33
    30  com.apple.CoreMessage                   0x00007fff98beb042 -[_MFInvocationOperation main] + 431
    31  com.apple.Foundation                    0x00007fff984a0036 -[__NSOperationInternal start] + 684
    32  com.apple.Foundation                    0x00007fff984a7861 __block_global_6 + 129
    33  libdispatch.dylib                       0x00007fff957acf01 _dispatch_call_block_and_release + 15
    34  libdispatch.dylib                       0x00007fff957a90b6 _dispatch_client_callout + 8
    35  libdispatch.dylib                       0x00007fff957aa1fa _dispatch_worker_thread2 + 304
    36  libsystem_c.dylib                       0x00007fff95402d0b _pthread_wqthread + 404
    37  libsystem_c.dylib                       0x00007fff953ed1d1 start_wqthread + 13
    Thread 5:
    0   libsystem_kernel.dylib                  0x00007fff97e806d6 __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x00007fff95402f4c _pthread_workq_return + 25
    2   libsystem_c.dylib                       0x00007fff95402d13 _pthread_wqthread + 412
    3   libsystem_c.dylib                       0x00007fff953ed1d1 start_wqthread + 13
    Thread 6:: -[EWSAccount fetchSynchronouslyIsAuto:]  Dispatch queue: com.apple.root.default-overcommit-priority
    0   libsystem_kernel.dylib                  0x00007fff97e800fa __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x00007fff95405023 _pthread_cond_wait + 927
    2   com.apple.Foundation                    0x00007fff98446b89 -[__NSOperationInternal waitUntilFinishedOrTimeout:] + 227
    3   com.apple.MessageFramework              0x00007fff9356eef6 -[EWSAccount _synchronizeMailboxesSynchronously] + 268
    4   com.apple.MessageFramework              0x00007fff9356ec3d -[EWSAccount fetchSynchronouslyIsAuto:] + 496
    5   com.apple.CoreFoundation                0x00007fff9477009c __invoking___ + 140
    6   com.apple.CoreFoundation                0x00007fff9476ff37 -[NSInvocation invoke] + 263
    7   com.apple.CoreMessage                   0x00007fff98c26867 -[MonitoredInvocation invoke] + 225
    8   com.apple.CoreMessage                   0x00007fff98c3eeb2 -[ThrowingInvocationOperation main] + 33
    9   com.apple.CoreMessage                   0x00007fff98beb042 -[_MFInvocationOperation main] + 431
    10  com.apple.Foundation                    0x00007fff984a0036 -[__NSOperationInternal start] + 684
    11  com.apple.Foundation                    0x00007fff984a7861 __block_global_6 + 129
    12  libdispatch.dylib                       0x00007fff957acf01 _dispatch_call_block_and_release + 15
    13  libdispatch.dylib                       0x00007fff957a90b6 _dispatch_client_callout + 8
    14  libdispatch.dylib                       0x00007fff957aa1fa _dispatch_worker_thread2 + 304
    15  libsystem_c.dylib                       0x00007fff95402d0b _pthread_wqthread + 404
    16  libsystem_c.dylib                       0x00007fff953ed1d1 start_wqthread + 13
    Thread 7:: Dispatch queue: com.apple.root.default-overcommit-priority
    0   libsystem_kernel.dylib                  0x00007fff97e7e686 mach_msg_trap + 10
    1   libsystem_kernel.dylib                  0x00007fff97e7dc42 mach_msg + 70
    2   com.apple.CoreFoundation                0x00007fff94719233 __CFRunLoopServiceMachPort + 195
    3   com.apple.CoreFoundation                0x00007fff9471e916 __CFRunLoopRun + 1078
    4   com.apple.CoreFoundation                0x00007fff9471e0e2 CFRunLoopRunSpecific + 290
    5   com.apple.CoreMessage                   0x00007fff98bc31a9 _handleRequestWithTimeout + 1527
    6   com.apple.CoreMessage                   0x00007fff98bc598b -[_NSSocket readBytes:length:error:] + 161
    7   com.apple.CoreMessage                   0x00007fff98bdfb3b -[Connection _readBytesFromSocketIntoBuffer:amount:requireAllBytes:error:] + 76
    8   com.apple.CoreMessage                   0x00007fff98bdfa21 -[Connection _fillBuffer:] + 764
    9   com.apple.CoreMessage                   0x00007fff98bdf5b3 -[Connection _readLineIntoData:error:] + 202
    10  com.apple.IMAP                          0x00007fff8df97486 -[IMAPConnection _readLineIntoData:error:] + 53
    11  com.apple.IMAP                          0x00007fff8df9de14 -[IMAPConnection(MFPrivate) _readDataOfLength:intoData:error:] + 112
    12  com.apple.IMAP                          0x00007fff8dfc0428 -[IMAPResponse initWithConnection:error:] + 144
    13  com.apple.IMAP                          0x00007fff8df9757a -[IMAPConnection _copyNextServerResponse:] + 55
    14  com.apple.IMAP                          0x00007fff8df977eb -[IMAPConnection _copyNextTaggedOrContinuationResponseForCommand:exists:] + 551
    15  com.apple.IMAP                          0x00007fff8df9a821 -[IMAPConnection executeIdle:] + 192
    16  com.apple.IMAP                          0x00007fff8df8a8f6 -[IMAPClientIdleOperation executeOnConnection:] + 26
    17  com.apple.IMAP                          0x00007fff8df969f5 -[IMAPConnection prepareAndExecuteOperation:outWrongState:] + 1247
    18  com.apple.IMAP                          0x00007fff8dfa9501 -[IMAPGateway _allowClientOperationThrough:] + 1237
    19  com.apple.IMAP                          0x00007fff8dfa8fd4 -[IMAPGateway allowClientOperationThrough:] + 369
    20  com.apple.IMAP                          0x00007fff8df8dae3 -[IMAPClientOperation main] + 84
    21  com.apple.Foundation                    0x00007fff984a0036 -[__NSOperationInternal start] + 684
    22  com.apple.Foundation                    0x00007fff984a7861 __block_global_6 + 129
    23  libdispatch.dylib                       0x00007fff957acf01 _dispatch_call_block_and_release + 15
    24  libdispatch.dylib                       0x00007fff957a90b6 _dispatch_client_callout + 8
    25  libdispatch.dylib                       0x00007fff957aa1fa _dispatch_worker_thread2 + 304
    26  libsystem_c.dylib                       0x00007fff95402d0b _pthread_wqthread + 404
    27  libsystem_c.dylib                       0x00007fff953ed1d1 start_wqthread + 13
    Thread 8:: -[EWSAccount fetchSynchronouslyIsAuto:]  Dispatch queue: com.apple.root.default-overcommit-priority
    0   libsystem_kernel.dylib                  0x00007fff97e800fa __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x00007fff95405023 _pthread_cond_wait + 927
    2   com.apple.Foundation                    0x00007fff98446b89 -[__NSOperationInternal waitUntilFinishedOrTimeout:] + 227
    3   com.apple.MessageFramework              0x00007fff9356eef6 -[EWSAccount _synchronizeMailboxesSynchronously] + 268
    4   com.apple.MessageFramework              0x00007fff9356ec3d -[EWSAccount fetchSynchronouslyIsAuto:] + 496
    5   com.apple.CoreFoundation                0x00007fff9477009c __invoking___ + 140
    6   com.apple.CoreFoundation                0x00007fff9476ff37 -[NSInvocation invoke] + 263
    7   com.apple.CoreMessage                   0x00007fff98c26867 -[MonitoredInvocation invoke] + 225
    8   com.apple.CoreMessage                   0x00007fff98c3eeb2 -[ThrowingInvocationOperation main] + 33
    9   com.apple.CoreMessage                   0x00007fff98beb042 -[_MFInvocationOperation main] + 431
    10  com.apple.Foundation                    0x00007fff984a0036 -[__NSOperationInternal start] + 684
    11  com.apple.Foundation                    0x00007fff984a7861 __block_global_6 + 129
    12  libdispatch.dylib                       0x00007fff957acf01 _dispatch_call_block_and_release + 15
    13  libdispatch.dylib                       0x00007fff957a90b6 _dispatch_client_callout + 8
    14  libdispatch.dylib                       0x00007fff957aa1fa _dispatch_worker_thread2 + 304
    15  libsystem_c.dylib                       0x00007fff95402d0b _pthread_wqthread + 404
    16  libsystem_c.dylib                       0x00007fff953ed1d1 start_wqthread + 13
    Thread 9:: -[EWSStore openSynchronously]  Dispatch queue: com.apple.root.default-overcommit-priority
    0   libsystem_kernel.dylib                  0x00007fff97e800fa __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x00007fff95404fe9 _pthread_cond_wait + 869
    2   com.apple.Foundation                    0x00007fff98447a73 -[__NSOperationInternal waitUntilFinished] + 151
    3   com.apple.MessageFramework              0x00007fff935828d1 -[EWSGateway _syncFolderItemsFromTargetFolderIdType:syncState:forStore:includesLastItem:] + 475
    4   com.apple.MessageFramework              0x00007fff93582608 -[EWSGateway syncFolderItemsFromFolderIdString:syncState:forStore:] + 533
    5   com.apple.MessageFramework              0x00007fff9359b0b9 -[EWSStore _fetchChangesFromServer] + 301
    6   com.apple.MessageFramework              0x00007fff9359882b -[EWSStore openSynchronouslyUpdatingMetadata:] + 115
    7   com.apple.CoreFoundation                0x00007fff9477009c __invoking___ + 140
    8   com.apple.CoreFoundation                0x00007fff9476ff37 -[NSInvocation invoke] + 263
    9   com.apple.CoreMessage                   0x00007fff98c26867 -[MonitoredInvocation invoke] + 225
    10  com.apple.CoreMessage                   0x00007fff98c3eeb2 -[ThrowingInvocationOperation main] + 33
    11  com.apple.CoreMessage                   0x00007fff98beb042 -[_MFInvocationOperation main] + 431
    12  com.apple.Foundation                    0x00007fff984a0036 -[__NSOperationInternal start] + 684
    13  com.apple.Foundation                    0x00007fff984a7861 __block_global_6 + 129
    14  libdispatch.dylib                       0x00007fff957acf01 _dispatch_call_block_and_release + 15
    15  libdispatch.dylib                       0x00007fff957a90b6 _dispatch_client_callout + 8
    16  libdispatch.dylib                       0x00007fff957aa1fa _dispatch_worker_thread2 + 304
    17  libsystem_c.dylib                       0x00007fff95402d0b _pthread_wqthread + 404
    18  libsystem_c.dylib                       0x00007fff953ed1d1 start_wqthread + 13
    Thread 10:: -[LibraryIMAPStore openSynchronously]  Dispatch queue: com.apple.root.default-overcommit-priority
    0   libsystem_kernel.dylib                  0x00007fff97e80122 __psynch_mutexwait + 10
    1   libsystem_c.dylib                       0x00007fff95405dfd pthread_mutex_lock + 536
    2   com.apple.Foundation                    0x00007fff984561c9 -[NSRecursiveLock lock] + 22
    3   com.apple.IMAP                          0x00007fff8dfa0ca6 -[IMAPConnectionPool yieldGateway:] + 48
    4   com.apple.IMAP                          0x00007fff8dfa8894 -[IMAPGateway yield] + 66
    5   com.apple.IMAP                          0x00007fff8dfb3762 -[IMAPMailboxSyncEngine _goWithMessages:] + 1386
    6   com.apple.MessageFramework              0x00007fff9351cb72 -[LibraryIMAPStore openSynchronouslyUpdatingMetadata:withOptions:] + 373
    7   com.apple.CoreFoundation                0x00007fff9477009c __invoking___ + 140
    8   com.apple.CoreFoundation                0x00007fff9476ff37 -[NSInvocation invoke] + 263
    9   com.apple.CoreMessage                   0x00007fff98c26867 -[MonitoredInvocation invoke] + 225
    10  com.apple.CoreMessage                   0x00007fff98c3eeb2 -[ThrowingInvocationOperation main] + 33
    11  com.apple.CoreMessage                   0x00007fff98beb042 -[_MFInvocationOperation main] + 431
    12  com.apple.Foundation                    0x00007fff984a0036 -[__NSOperationInternal start] + 684
    13  com.apple.Foundation                    0x00007fff984a7861 __block_global_6 + 129
    14  libdispatch.dylib                       0x00007fff957acf01 _dispatch_call_block_and_release + 15
    15  libdispatch.dylib                       0x00007fff957a90b6 _dispatch_client_callout + 8
    16  libdispatch.dylib                       0x00007fff957aa1fa _dispatch_worker_thread2 + 304
    17  libsystem_c.dylib                       0x00007fff95402d0b _pthread_wqthread + 404
    18  libsystem_c.dylib                       0x00007fff953ed1d1 start_wqthread + 13
    Thread 11:: -[MFAosImapAccount fetchSynchronouslyIsAuto:]  Dispatch queue: com.apple.root.default-overcommit-priority
    0   libsystem_kernel.dylib                  0x00007fff97e80122 __psynch_mutexwait + 10
    1   libsystem_c.dylib                       0x00007fff95405dfd pthread_mutex_lock + 536
    2   com.apple.Foundation                    0x00007fff98463c8e -[NSLock lock] + 148
    3   com.apple.MessageFramework              0x00007fff93521494 -[IMAPAccount _gatewayForMailboxUid:name:options:] + 152
    4   com.apple.MessageFramework              0x00007fff93521196 -[LibraryIMAPStore _gatewayCreateIfNeeded:options:] + 139
    5   com.apple.MessageFramework              0x00007fff9351cb16 -[LibraryIMAPStore openSynchronouslyUpdatingMetadata:withOptions:] + 281
    6   com.apple.MessageFramework              0x00007fff93536a56 -[LibraryIMAPStore _fetchForCheckingNewMail:] + 53
    7   com.apple.MessageFramework              0x00007fff935368b8 -[IMAPAccount fetchSynchronouslyIsAuto:] + 139
    8   com.apple.CoreFoundation                0x00007fff9477009c __invoking___ + 140
    9   com.apple.CoreFoundation                0x00007fff9476ff37 -[NSInvocation invoke] + 263
    10  com.apple.CoreMessage                   0x00007fff98c26867 -[MonitoredInvocation invoke] + 225
    11  com.apple.CoreMessage                   0x00007fff98c3eeb2 -[ThrowingInvocationOperation main] + 33
    12  com.apple.CoreMessage                   0x00007fff98beb042 -[_MFInvocationOperation main] + 431
    13  com.apple.Foundation                    0x00007fff984a0036 -[__NSOperationInternal start] + 684
    14  com.apple.Foundation                    0x00007fff984a7861 __block_global_6 + 129
    15  libdispatch.dylib                       0x00007fff957acf01 _dispatch_call_block_and_release + 15
    16  libdispatch.dylib                       0x00007fff957a90b6 _dispatch_client_callout + 8
    17  libdispatch.dylib                       0x00007fff957aa1fa _dispatch_worker_thread2 + 304
    18  libsystem_c.dylib                       0x00007fff95402d0b _pthread_wqthread + 404
    19  libsystem_c.dylib                       0x00007fff953ed1d1 start_wqthread + 13
    Thread 12:: Dispatch queue: com.apple.root.default-priority
    0   libsystem_kernel.dylib                  0x00007fff97e800fa __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x00007fff95404fe9 _pthread_cond_wait + 869
    2   com.apple.Foundation                    0x00007fff98447a73 -[__NSOperationInternal waitUntilFinished] + 151
    3   com.apple.MessageFramework              0x00007fff935828d1 -[EWSGateway _syncFolderItemsFromTargetFolderIdType:syncState:forStore:includesLastItem:] + 475
    4   com.apple.MessageFramework              0x00007fff93582608 -[EWSGateway syncFolderItemsFromFolderIdString:syncState:forStore:] + 533
    5   com.apple.MessageFramework              0x00007fff9359b0b9 -[EWSStore _fetchChangesFromServer] + 301
    6   com.apple.MessageFramework              0x00007fff9356f416 __48-[EWSAccount _synchronizeMailboxesSynchronously]_block_invoke_0 + 398
    7   com.apple.Foundation                    0x00007fff9855637c __24-[NSBlockOperation main]_block_invoke_0 + 89
    8   libdispatch.dylib                       0x00007fff957adf8c _dispatch_client_callout2 + 8
    9   libdispatch.dylib                       0x00007fff957adefd _dispatch_apply2 + 78
    10  libdispatch.dylib                       0x00007fff957ade30 dispatch_apply_f + 440
    11  com.apple.Foundation                    0x00007fff984ca1b9 -[NSBlockOperation main] + 262
    12  com.apple.Foundation                    0x00007fff984a0036 -[__NSOperationInternal start] + 684
    13  com.apple.Foundation                    0x00007fff984a7861 __block_global_6 + 129
    14  libdispatch.dylib                       0x00007fff957acf01 _dispatch_call_block_and_release + 15
    15  libdispatch.dylib                       0x00007fff957a90b6 _dispatch_client_callout + 8
    16  libdispatch.dylib                       0x00007fff957aa1fa _dispatch_worker_thread2 + 304
    17  libsystem_c.dylib                       0x00007fff95402d0b _pthread_wqthread + 404
    18  libsystem_c.dylib                       0x00007fff953ed1d1 start_wqthread + 13
    Thread 13:: Dispatch queue: com.apple.root.default-priority
    0   libsystem_kernel.dylib                  0x00007fff97e800fa __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x00007fff95404fe9 _pthread_cond_wait + 869
    2   com.apple.Foundation                    0x00007fff98447a73 -[__NSOperationInternal waitUntilFinished] + 151
    3   com.apple.MessageFramework              0x00007fff935828d1 -[EWSGateway _syncFolderItemsFromTargetFolderIdType:syncState:forStore:includesLastItem:] + 475
    4   com.apple.MessageFramework              0x00007fff93582608 -[EWSGateway syncFolderItemsFromFolderIdString:syncState:forStore:] + 533
    5   com.apple.MessageFramework              0x00007fff9359b0b9 -[EWSStore _fetchChangesFromServer] + 301
    6   com.apple.MessageFramework              0x00007fff9356f416 __48-[EWSAccount _synchronizeMailboxesSynchronously]_block_invoke_0 + 398
    7   com.apple.Foundation                    0x00007fff9855637c __24-[NSBlockOperation main]_block_invoke_0 + 89
    8   libdispatch.dylib                       0x00007fff957adf8c _dispatch_client_callout2 + 8
    9   libdispatch.dylib                       0x00007fff957adefd _dispatch_apply2 + 78
    10  libdispatch.dylib                       0x00007fff957ade30 dispatch_apply_f + 440
    11  com.apple.Foundation                    0x00007fff984ca1b9 -[NSBlockOperation main] + 262
    12  com.apple.Foundation                    0x00007fff984a0036 -[__NSOperationInternal start] + 684
    13  com.apple.Foundation                    0x00007fff984a7861 __block_global_6 + 129
    14  libdispatch.dylib                       0x00007fff957acf01 _dispatch_call_block_and_release + 15
    15  libdispatch.dylib                       0x00007fff957a90b6 _dispatch_client_callout + 8
    16  libdispatch.dylib                       0x00007fff957aa1fa _dispatch_worker_thread2 + 304
    17  libsystem_c.dylib                       0x00007fff95402d0b _pthread_wqthread + 404
    18  libsystem_c.dylib                       0x00007fff953ed1d1 start_wqthread + 13
    Thread 14:: -[MFAosImapAccount fetchSynchronouslyIsAuto:]  Dispatch queue: com.apple.root.default-overcommit-priority
    0   libsystem_kernel.dylib                  0x00007fff97e7e686 mach_msg_trap + 10
    1   libsystem_kernel.dylib                  0x00007fff97e7dc42 mach_msg + 70
    2   com.apple.CoreFoundation                0x00007fff94719233 __CFRunLoopServiceMachPort + 195
    3   com.apple.CoreFoundation                0x00007fff9471e916 __CFRunLoopRun + 1078
    4   com.apple.CoreFoundation                0x00007fff9471e0e2 CFRunLoopRunSpecific + 290
    5   com.apple.CoreMessage                   0x00007fff98bc31a9 _handleRequestWithTimeout + 1527
    6   com.apple.CoreMessage                   0x00007fff98bc598b -[_NSSocket readBytes:length:error:] + 161
    7   com.apple.CoreMessage                   0x00007fff98bdfb3b -[Connection _readBytesFromSocketIntoBuffer:amount:requireAllBytes:error:] + 76
    8   com.apple.CoreMessage                   0x00007fff98bdfa21 -[Connection _fillBuffer:] + 764
    9   com.apple.CoreMessage                   0x00007fff98bdf5b3 -[Connection _readLineIntoData:error:] + 202
    10  com.apple.IMAP                          0x00007fff8df97486 -[IMAPConnection _readLineIntoData:error:] + 53
    11  com.apple.IMAP                          0x00007fff8df9de14 -[IMAPConnection(MFPrivate) _readDataOfLength:intoData:error:] + 112
    12  com.apple.IMAP                          0x00007fff8dfc0428 -[IMAPResponse initWithConnection:error:] + 144
    13  com.apple.IMAP                          0x00007fff8df9757a -[IMAPConnection _copyNextServerResponse:] + 55
    14  com.apple.IMAP                          0x00007fff8df955c8 -[IMAPConnection _completeConnectionWithResult:] + 70
    15  com.apple.CoreMessage                   0x00007fff98bde4d6 -[Connection connectDiscoveringBestSettings:] + 1295
    16  com.apple.MessageFramework              0x00007fff935a2fcd -[IMAPAccount connectAndAuthenticate:] + 502
    17  com.apple.IMAP                          0x00007fff8dfa1d5d -[IMAPConnectionPool _validateAndCheckOutGateway:forMailbox:allowReconnect:newGateway:] + 334
    18  com.apple.IMAP                          0x00007fff8df9fe39 -[IMAPConnectionPool _checkOutNewGatewayWithConnection:forMailbox:] + 301
    19  com.apple.IMAP                          0x00007fff8dfa08f6 -[IMAPConnectionPool checkOutGatewayForMailbox:newConnection:highPriority:waitIndefinitely:] + 564
    20  com.apple.MessageFramework              0x00007fff935218d6 -[IMAPAccount _getPotentialGatewayForMailbox:options:createdNewConnection:needsSelect:] + 478
    21  com.apple.MessageFramework              0x00007fff935214b0 -[IMAPAccount _gatewayForMailboxUid:name:options:] + 180
    22  com.apple.MessageFramework              0x00007fff93521196 -[LibraryIMAPStore _gatewayCreateIfNeeded:options:] + 139
    23  com.apple.MessageFramework              0x00007fff9351cb16 -[LibraryIMAPStore openSynchronouslyUpdatingMetadata:withOptions:] + 281
    24  com.apple.MessageFramework              0x00007fff93536a56 -[LibraryIMAPStore _fetchForCheckingNewMail:] + 53
    25  com.apple.MessageFramework              0x00007fff935368b8 -[IMAPAccount fetchSynchronouslyIsAuto:] + 139
    26  com.apple.CoreFoundation                0x00007fff9477009c __invoking___ + 140
    27  com.apple.CoreFoundation                0x00007fff9476ff37 -[NSInvocation invoke] + 263
    28  com.apple.CoreMessage                   0x00007fff98c26867 -[MonitoredInvocation invoke] + 225
    29  com.apple.CoreMessage                   0x00007fff98c3eeb2 -[ThrowingInvocationOperation main] + 33
    30  com.apple.CoreMessage                   0x00007fff98beb042 -[_MFInvocationOperation main] + 431
    31  com.apple.Foundation                    0x00007fff984a0036 -[__NSOperationInternal start] + 684
    32  com.apple.Foundation                    0x00007fff984a7861 __block_global_6 + 129
    33  libdispatch.dylib                       0x00007fff957acf01 _dispatch_call_block_and_release + 15
    34  libdispatch.dylib                       0x00007fff957a90b6 _dispatch_client_callout + 8
    35  libdispatch.dylib                       0x00007fff957aa1fa _dispatch_worker_thread2 + 304
    36  libsystem_c.dylib                       0x00007fff95402d0b _pthread_wqthread + 404
    37  libsystem_c.dylib                       0x00007fff953ed1d1 start_wqthread + 13
    Thread 15:: -[MFAosImapAccount _synchronizeAccountWithServerWithUserInput:]  Dispatch queue: com.apple.root.default-overcommit-priority
    0   libsystem_kernel.dylib                  0x00007fff97e80122 __psynch_mutexwait + 10
    1   libsystem_c.dylib                       0x00007fff95405dfd pthread_mutex_lock + 536
    2   com.apple.Foundation                    0x00007fff98463c8e -[NSLock lock] + 148
    3   com.apple.MessageFramework              0x00007fff93521494 -[IMAPAccount _gatewayForMailboxUid:name:options:] + 152
    4   com.apple.MessageFramework              0x00007fff93521196 -[LibraryIMAPStore _gatewayCreateIfNeeded:options:] + 139
    5   com.apple.MessageFramework              0x00007fff93539e5a -[LibraryIMAPStore startSynchronization] + 79
    6   com.apple.CoreFoundation                0x00007fff94778460 -[NSArray makeObjectsPerformSelector:] + 272
    7   com.apple.MessageFramework              0x00007fff93538df1 -[RemoteStoreAccount _synchronizeAccountWithServerWithUserInput:] + 224
    8   com.apple.MessageFramework              0x00007fff93538ae3 -[IMAPAccount _synchronizeAccountWithServerWithUserInput:] + 45
    9   com.apple.CoreFoundation                0x00007fff9477009c __invoking___ + 140
    10  com.apple.CoreFoundation                0x00007fff9476ff37 -[NSInvocation invoke] + 263
    11  com.apple.CoreMessage                   0x00007fff98c26867 -[MonitoredInvocation invoke] + 225
    12  com.apple.CoreMessage                   0x00007fff98c3eeb2 -[ThrowingInvocationOperation main] + 33
    13  com.apple.CoreMessage                   0x00007fff98beb042 -[_MFInvocationOperation main] + 431
    14  com.apple.Foundation                    0x00007fff984a0036 -[__NSOperationInternal start] + 684
    15  com.apple.Foundation                    0x00007fff984a7861 __block_global_6 + 129
    16  libdispatch.dylib                       0x00007fff957acf01 _dispatch_call_block_and_release + 15
    17  libdispatch.dylib                       0x00007fff957a90b6 _dispatch_client_callout + 8
    18  libdispatch.dylib                       0x00007fff957aa1fa _dispatch_worker_thread2 + 304
    19  libsystem_c.dylib                       0x00007fff95402d0b _pthread_wqthread + 404
    20  libsystem_c.dylib                       0x00007fff953ed1d1 start_wqthread + 13
    Thread 16:: Dispatch queue: com.apple.root.default-overcommit-priority
    0   libsystem_kernel.dylib                  0x00007fff97e7e686 mach_msg_trap + 10
    1   libsystem_kernel.dylib                  0x00007fff97e7dc42 mach_msg + 70
    2   com.apple.CoreFoundation                0x00007fff94719233 __CFRunLoopServiceMachPort + 195
    3   com.apple.CoreFoundation                0x00007fff9471e916 __CFRunLoopRun + 1078
    4   com.apple.CoreFoundation                0x00007fff9471e0e2 CFRunLoopRunSpecific + 290
    5   com.apple.Foundation                    0x00007fff984abf5e -[NSRunLoop(NSRunLoop) runMode:beforeDate:] + 268
    6   com.apple.ExchangeWebServices           0x00007fff982aae27 -[SOAPRequest sendSynchronously:] + 451
    7   com.apple.ExchangeWebServices           0x00007fff98291976 -[EWSExchangeServiceBinding sendSynchronousMessage:error:] + 84
    8   com.apple.MessageFramework              0x00007fff935771a2 -[EWSConnection _sendMessage:error:] + 210
    9   com.apple.MessageFramework              0x00007fff935769ea -[EWSConnection sendMessage:forRequest:] + 54
    10  com.apple.MessageFramework              0x00007fff9357fcd3 -[EWSGateway sendMessage:forRequest:] + 69
    11  com.apple.MessageFramework              0x00007fff9359665a -[EWSRequestOperation executeOperation] + 110
    12  com.apple.CoreMessage                   0x00007fff98c26c10 -[MonitoredOperation main] + 219
    13  com.apple.Foundation                    0x00007fff984a0036 -[__NSOperationInternal start] + 684
    14  com.apple.Foundation                    0x00007fff984a7861 __block_global_6 + 129
    15  libdispatch.dylib                       0x00007fff957acf01 _dispatch_call_block_and_release + 15
    16  libdispatch.dylib                       0x00007fff957a90b6 _dispatch_client_callout + 8
    17  libdispatch.dylib                       0x00007fff957aa1fa _dispatch_worker_thread2 + 304
    18  libsystem_c.dylib                       0x00007fff95402d0b _pthread_wqthread + 404
    19  libsystem_c.dylib                       0x00007fff953ed1d1 start_wqthread + 13
    Thread 17:: Dispatch queue: com.apple.root.default-priority
    0   libsystem_kernel.dylib                  0x00007fff97e800fa __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x00007fff95404fe9 _pthread_cond_wait + 869
    2   com.apple.Foundation                    0x00007fff98447a73 -[__NSOperationInternal waitUntilFinished] + 151
    3   com.apple.MessageFramework              0x00007fff935828d1 -[EWSGateway _syncFolderItemsFromTargetFolderIdType:syncState:forStore:includesLastItem:] + 475
    4   com.apple.MessageFramework              0x00007fff93582608 -[EWSGateway syncFolderItemsFromFolderIdString:syncState:forStore:] + 533
    5   com.apple.MessageFramework              0x00007fff9359b0b9 -[EWSStore _fetchChangesFromServer] + 301
    6   com.apple.MessageFramework              0x00007fff9356f416 __48-[EWSAccount _synchronizeMailboxesSynchronously]_block_invoke_0 + 398
    7   com.apple.Foundation                    0x00007fff9855637c __24-[NSBlockOperation main]_block_invoke_0 + 89
    8   libdispatch.dylib                       0x00007fff957adf8c _dispatch_client_callout2 + 8
    9   libdispatch.dylib                       0x00007fff957adefd _dispatch_apply2 + 78
    10  libdispatch.dylib                       0x00007fff957a90b6 _dispatch_client_callout + 8
    11  libdispatch.dylib                       0x00007fff957aa1fa _dispatch_worker_thread2 + 304
    12  libsystem_c.dylib                       0x00007fff95402d0b _pthread_wqthread + 404
    13  libsystem_c.dylib                       0x00007fff953ed1d1 start_wqthread + 13
    Thread 18:: Dispatch queue: com.apple.root.default-overcommit-priority
    0   libsystem_kernel.dylib                  0x00007fff97e7e686 mach_msg_trap + 10
    1   libsystem_kernel.dylib                  0x00007fff97e7dc42 mach_msg + 70
    2   com.apple.CoreFoundation                0x00007fff94719233 __CFRunLoopServiceMachPort + 195
    3   com.apple.CoreFoundation                0x00007fff9471e916 __CFRunLoopRun + 1078
    4   com.apple.CoreFoundation                0x00007fff9471e0e2 CFRunLoopRunSpecific + 290
    5   com.apple.Foundation                    0x00007fff984abf5e -[NSRunLoop(NSRunLoop) runMode:beforeDate:] + 268
    6   com.apple.ExchangeWebServices           0x00007fff982aae27 -[SOAPRequest sendSynchronously:] + 451
    7   com.apple.ExchangeWebServices           0x00007fff98291976 -[EWSExchangeServiceBinding sendSynchronousMessage:error:] + 84
    8   com.apple.MessageFramework              0x00007fff935771a2 -[EWSConnection _sendMessage:error:] + 210
    9   com.apple.MessageFramework              0x00007fff935769ea -[EWSConnection sendMessage:forRequest:] + 54
    10  com.apple.MessageFramework              0x00007fff9357fcd3 -[EWSGateway sendMessage:forRequest:] + 69
    11  com.apple.MessageFramework              0x00007fff9359665a -[EWSRequestOperation executeOperation] + 110
    12  com.apple.CoreMessage                   0x00007fff98c26c10 -[MonitoredOperation main] + 219
    13  com.apple.Foundation                    0x00007fff984a0036 -[__NSOperationInternal start] + 684
    14  com.apple.Foundation                    0x00007fff984a7861 __block_global_6 + 129
    15  libdispatch.dylib                       0x00007fff957acf01 _dispatch_call_block_and_release + 15
    16  libdispatch.dylib                       0x00007fff957a90b6 _dispatch_client_callout + 8
    17  libdispatch.dylib                       0x00007fff957aa1fa _dispatch_worker_thread2 + 304
    18  libsystem_c.dylib                       0x00007fff95402d0b _pthread_wqthread + 404
    19  libsystem_c.dylib                       0x00007fff953ed1d1 start_wqthread + 13
    Thread 19:: Dispatch queue: com.apple.root.default-priority
    0   libsystem_kernel.dylib                  0x00007fff97e800fa __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x00007fff95404fe9 _pthread_cond_wait + 869
    2   com.apple.Foundation                    0x00007fff98447a73 -[__NSOperationInternal waitUntilFinished] + 151
    3   com.apple.MessageFramework              0x00007fff935828d1 -[EWSGateway _syncFolderItemsFromTargetFolderIdType:syncState:forStore:includesLastItem:] + 475
    4   com.apple.MessageFramework              0x00007fff93582608 -[EWSGateway syncFolderItemsFromFolderIdString:syncState:forStore:] + 533
    5   com.apple.MessageFramework              0x00007fff9359b0b9 -[EWSStore _fetchChangesFromServer] + 301
    6   com.apple.MessageFramework              0x00007fff9356f416 __48-[EWSAccount _synchronizeMailboxesSynchronously]_block_invoke_0 + 398
    7   com.apple.Foundation                    0x00007fff9855637c __24-[NSBlockOperation main]_block_invoke_0 + 89
    8   libdispatch.dylib                       0x00007fff957adf8c _dispatch_client_callout2 + 8
    9   libdispatch.dylib                       0x00007fff957adefd _dispatch_apply2 + 78
    10  libdispatch.dylib                       0x00007fff957a90b6 _dispatch_client_callout + 8
    11  libdispatch.dylib                       0x00007fff957aa1fa _dispatch_worker_thread2 + 304
    12  libsystem_c.dylib                       0x00007fff95402d0b _pthread_wqthread + 404
    13  libsystem_c.dylib                       0x00007fff953ed1d1 start_wqthread + 13
    Thread 20:
    0   libsystem_kernel.dylib                  0x00007fff97e806d6 __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x00007fff95402f4c _pthread_workq_return + 25
    2   libsystem_c.dylib                       0x00007fff95402d13 _pthread_wqthread + 412
    3   libsystem_c.dylib                       0x00007fff953ed1d1 start_wqthread + 13
    Thread 21:
    0   libsystem_kernel.dylib                  0x00007fff97e806d6 __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x00007fff95402f4c _pthread_workq_return + 25
    2   libsystem_c.dylib                       0x00007fff95402d13 _pthread_wqthread + 412
    3   libsystem_c.dylib                       0x00007fff953ed1d1 start_wqthread + 13
    Thread 22:
    0   libsystem_kernel.dylib                  0x00007fff97e7e686 mach_msg_trap + 10
    1   libsystem_kernel.dylib                  0x00007fff97e7dc42 mach_msg + 70
    2   com.apple.CoreFoundation                0x00007fff94719233 __CFRunLoopServiceMachPort + 195
    3   com.apple.CoreFoundation                0x00007fff9471e916 __CFRunLoopRun + 1078
    4   com.apple.CoreFoundation                0x00007fff9471e0e2 CFRunLoopRunSpecific + 290
    5   com.apple.Foundation                    0x00007fff984abf5e -[NSRunLoop(NSRunLoop) runMode:beforeDate:] + 268
    6   com.apple.Foundation                    0x00007fff9844475a -[NSRunLoop(NSRunLoop) run] + 74
    7   com.apple.CoreMessage                   0x00007fff98bc3e17 +[_NSSocket _runIOThread] + 77
    8   com.apple.Foundation                    0x00007fff984a6cd2 __NSThread__main__ + 1345
    9   libsystem_c.dylib                       0x00007fff954007a2 _pthread_start + 327
    10  libsystem_c.dylib                       0x00007fff953ed1e1 thread_start + 13
    Thread 23:: com.apple.NSURLConnectionLoader
    0   libsystem_kernel.dylib                  0x00007fff97e7e686 mach_msg_trap + 10
    1   libsystem_kernel.dylib                  0x00007fff97e7dc42 mach_msg + 70
    2   com.apple.CoreFoundation                0x00007fff94719233 __CFRunLoopServiceMachPort + 195
    3   com.apple.CoreFoundation                0x00007fff9471e916 __CFRunLoopRun + 1078
    4   com.apple.CoreFoundation                0x00007fff9471e0e2 CFRunLoopRunSpecific + 290
    5   com.apple.Foundation                    0x00007fff98448b66 +[NSURLConnection(Loader) _resourceLoadLoop:] + 356
    6   com.apple.Foundation                    0x00007fff984a6cd2 __NSThread__main__ + 1345
    7   libsystem_c.dylib                       0x00007fff954007a2 _pthread_start + 327
    8   libsystem_c.dylib                       0x00007fff953ed1e1 thread_start + 13
    Thread 24:: com.apple.CFSocket.private
    0   libsystem_kernel.dylib                  0x00007fff97e80322 __select + 10
    1   com.apple.CoreFoundation                0x00007fff9475df46 __CFSocketManager + 1302
    2   libsystem_c.dylib                       0x00007fff954007a2 _pthread_start + 327
    3   libsystem_c.dylib                       0x00007fff953ed1e1 thread_start + 13
    Thread 25:
    0   libsystem_kernel.dylib                  0x00007fff97e806d6 __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x00007fff95402f4c _pthread_workq_return + 25
    2   libsystem_c.dylib                       0x00007fff95402d13 _pthread_wqthread + 412
    3   libsystem_c.dylib                       0x00007fff953ed1d1 start_wqthread + 13
    Thread 26:: -[DeliveryQueue _deliverQueuedMessages:]  Dispatch queue: com.apple.root.default-overcommit-priority
    0   libsystem_kernel.dylib                  0x00007fff97e800fa __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x00007fff95404fe9 _pthread_cond_wait + 869
    2   com.apple.Foundation                    0x00007fff984a5386 -[NSCondition wait] + 240
    3   com.apple.mail                          0x0000000101d82fee 0x101b55000 + 2285550
    4   com.apple.mail                          0x0000000101d8299f 0x101b55000 + 2283935
    5   com.apple.mail                          0x0000000101d826ae 0x101b55000 + 2283182
    6   com.apple.mail                          0x0000000101ce2922 0x101b55000 + 1628450
    7   com.apple.MessageFramework              0x00007fff9355d276 -[Account promptUserForPassword] + 55
    8   com.apple.MessageFramework              0x00007fff9355dbfa -[Account con

    Back up all data.
    Try the steps suggested on this page. if the problem isn't solved that way, continue as below.
    In the Finder, hold down the option key and select
    Go ▹ Library
    from the menu bar. Move the following items from the folder that opens to the Trash (some may not exist):
    Caches/com.apple.mail
    Saved Application State/com.apple.mail.savedState
    Leave the Finder window open for now.
    Try to launch Mail. If the problem is solved, you’re done. Otherwise, move these items, if they exist, from the open Library folder to the Desktop:
    Application Support/AddressBook/MailRecents-v4.abcdmr
    Containers/com.apple.mail
    Preferences/com.apple.mail.plist
    Preferences/com.apple.mail.searchhistory.plist
    Try Mail again. If it launches, you'll have to recreate some of your settings. Delete the items you moved to the Desktop.
    If Mail still crashes, put the items you moved to the Desktop back where they were. You don’t need to replace the items you moved to the Trash.
    Move the subfolder named "Mail" — not the Mail application — from the Library folder to the Desktop.
    Test. If Mail now launches, it will prompt you to set up an account. Cancel and restore the Mail folder from the most recent backup you have that predates the issue. A corrupt database is causing the crashes.
    If there’s no improvement, put back the Mail folder and post your results.

  • I've been (attempting) to follow Linc's ideas to fix my Mail app that quits without having time to select mailboxes, etc. Here's my report:Process:         Mail [3780] Path:            /Applications/Mail.app/Contents/MacOS/Mail Identifier:      com.apple.

    Process:         Mail [3780]
    Path:            /Applications/Mail.app/Contents/MacOS/Mail
    Identifier:      com.apple.mail
    Version:         6.5 (1508)
    Build Info:      Mail-1508000000000000~3
    Code Type:       X86-64 (Native)
    Parent Process:  launchd [147]
    User ID:         501
    Date/Time:       2013-07-13 07:51:28.620 -0500
    OS Version:      Mac OS X 10.8.4 (12E55)
    Report Version:  10
    Interval Since Last Report:          4655 sec
    Crashes Since Last Report:           7
    Per-App Interval Since Last Report:  912 sec
    Per-App Crashes Since Last Report:   7
    Anonymous UUID:                      3ADF795F-F3C9-0A58-B102-2FB99F35DC14
    Crashed Thread:  7  Dispatch queue: com.apple.root.default-overcommit-priority
    Exception Type:  EXC_CRASH (SIGABRT)
    Exception Codes: 0x0000000000000000, 0x0000000000000000
    Application Specific Information:
    *** Terminating app due to uncaught exception 'MessageCritionNotSupportedException', reason: 'Message criterion MessageCriterion: MatadorCriterion
      Qualifier: (null)
      Expression: ((* = "team*"cdw || kMDItemTextContent = "team*"cdw) && (* = "lead*"cdw || kMDItemTextContent = "lead*"cdw))
      Suggestions originated: 0
    not supported for evaluation'
    abort() called
    terminate called throwing an exception
    Application Specific Backtrace 1:
    0   CoreFoundation                      0x00007fff8cf8cb06 __exceptionPreprocess + 198
    1   libobjc.A.dylib                     0x00007fff8b91b3f0 objc_exception_throw + 43
    2   Message                             0x00007fff94e00119 -[MessageCriterion _evaluateMessage:] + 402
    3   Message                             0x00007fff94e00223 -[MessageCriterion evaluateMessage:] + 43
    4   Message                             0x00007fff94dff86f -[MessageCriterion _evaluateCompoundCriterion:] + 200
    5   Message                             0x00007fff94dfffd7 -[MessageCriterion _evaluateMessage:] + 80
    6   Message                             0x00007fff94e00223 -[MessageCriterion evaluateMessage:] + 43
    7   Message                             0x00007fff94dff86f -[MessageCriterion _evaluateCompoundCriterion:] + 200
    8   Message                             0x00007fff94dfffd7 -[MessageCriterion _evaluateMessage:] + 80
    9   Message                             0x00007fff94dfff7f -[MessageCriterion doesMessageSatisfyRuleEvaluationCriterion:] + 75
    10  Mail                                0x0000000101b0a971 Mail + 2673009
    11  Mail                                0x0000000101b07e8c Mail + 2662028
    12  CoreFoundation                      0x00007fff8cf3eeda _CFXNotificationPost + 2554
    13  Mail                                0x0000000101883af4 Mail + 23284
    14  Message                             0x00007fff94d1b8a4 -[MessageStore messagesWereAdded:conversationsMembers:duringOpen:] + 250
    15  Message                             0x00007fff94d1b679 -[LibraryStore messagesWereAdded:conversationsMembers:duringOpen:] + 81
    16  Message                             0x00007fff94d1b61d -[LibraryIMAPStore propagateMessagesWereAdded:conversationsMembers:duringOpen:] + 39
    17  CoreFoundation                      0x00007fff8cf3eeda _CFXNotificationPost + 2554
    18  Foundation                          0x00007fff939df7b6 -[NSNotificationCenter postNotificationName:object:userInfo:] + 64
    19  Mail                                0x000000010187ff75 Mail + 8053
    20  Foundation                          0x00007fff93a4f9cf -[NSBlockOperation main] + 124
    21  Foundation                          0x00007fff93a25926 -[__NSOperationInternal start] + 684
    22  Foundation                          0x00007fff93a2d0f1 __block_global_6 + 129
    23  libdispatch.dylib                   0x00007fff92d88f01 _dispatch_call_block_and_release + 15
    24  libdispatch.dylib                   0x00007fff92d850b6 _dispatch_client_callout + 8
    25  libdispatch.dylib                   0x00007fff92d861fa _dispatch_worker_thread2 + 304
    26  libsystem_c.dylib                   0x00007fff8c558d0b _pthread_wqthread + 404
    27  libsystem_c.dylib                   0x00007fff8c5431d1 start_wqthread + 13
    Thread 0:: Dispatch queue: com.apple.main-thread
    0   libsystem_kernel.dylib                  0x00007fff92fbe686 mach_msg_trap + 10
    1   libsystem_kernel.dylib                  0x00007fff92fbdc42 mach_msg + 70
    2   com.apple.CoreFoundation                0x00007fff8cf29233 __CFRunLoopServiceMachPort + 195
    3   com.apple.CoreFoundation                0x00007fff8cf2e916 __CFRunLoopRun + 1078
    4   com.apple.CoreFoundation                0x00007fff8cf2e0e2 CFRunLoopRunSpecific + 290
    5   com.apple.HIToolbox                     0x00007fff9593eeb4 RunCurrentEventLoopInMode + 209
    6   com.apple.HIToolbox                     0x00007fff9593ec52 ReceiveNextEventCommon + 356
    7   com.apple.HIToolbox                     0x00007fff9593eae3 BlockUntilNextEventMatchingListInMode + 62
    8   com.apple.AppKit                        0x00007fff90095533 _DPSNextEvent + 685
    9   com.apple.AppKit                        0x00007fff90094df2 -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 128
    10  com.apple.AppKit                        0x00007fff9008c1a3 -[NSApplication run] + 517
    11  com.apple.AppKit                        0x00007fff90030bd6 NSApplicationMain + 869
    12  libdyld.dylib                           0x00007fff9604f7e1 start + 1
    Thread 1:: Dispatch queue: com.apple.libdispatch-manager
    0   libsystem_kernel.dylib                  0x00007fff92fc0d16 kevent + 10
    1   libdispatch.dylib                       0x00007fff92d87dea _dispatch_mgr_invoke + 883
    2   libdispatch.dylib                       0x00007fff92d879ee _dispatch_mgr_thread + 54
    Thread 2:: Dispatch queue: com.apple.root.default-overcommit-priority
    0   libsystem_kernel.dylib                  0x00007fff92fbe686 mach_msg_trap + 10
    1   libsystem_kernel.dylib                  0x00007fff92fbdc42 mach_msg + 70
    2   com.apple.CoreFoundation                0x00007fff8cf29233 __CFRunLoopServiceMachPort + 195
    3   com.apple.CoreFoundation                0x00007fff8cf2e916 __CFRunLoopRun + 1078
    4   com.apple.CoreFoundation                0x00007fff8cf2e0e2 CFRunLoopRunSpecific + 290
    5   com.apple.CoreMessage                   0x00007fff934ca0e9 _handleRequestWithTimeout + 1527
    6   com.apple.CoreMessage                   0x00007fff934cc8cb -[_NSSocket readBytes:length:error:] + 161
    7   com.apple.CoreMessage                   0x00007fff934e6a7b -[Connection _readBytesFromSocketIntoBuffer:amount:requireAllBytes:error:] + 76
    8   com.apple.CoreMessage                   0x00007fff934e6961 -[Connection _fillBuffer:] + 764
    9   com.apple.CoreMessage                   0x00007fff934e64f3 -[Connection _readLineIntoData:error:] + 202
    10  com.apple.IMAP                          0x00007fff94bf5486 -[IMAPConnection _readLineIntoData:error:] + 53
    11  com.apple.IMAP                          0x00007fff94bfbe14 -[IMAPConnection(MFPrivate) _readDataOfLength:intoData:error:] + 112
    12  com.apple.IMAP                          0x00007fff94c1e428 -[IMAPResponse initWithConnection:error:] + 144
    13  com.apple.IMAP                          0x00007fff94bf557a -[IMAPConnection _copyNextServerResponse:] + 55
    14  com.apple.IMAP                          0x00007fff94bf57eb -[IMAPConnection _copyNextTaggedOrContinuationResponseForCommand:exists:] + 551
    15  com.apple.IMAP                          0x00007fff94bfaa87 -[IMAPConnection _responseFromSendingOperation:] + 863
    16  com.apple.IMAP                          0x00007fff94bf93b7 -[IMAPConnection executeUIDStore:] + 86
    17  com.apple.IMAP                          0x00007fff94bf0d43 -[IMAPClientUIDStoreOperation executeOnConnection:] + 26
    18  com.apple.IMAP                          0x00007fff94bf49f5 -[IMAPConnection prepareAndExecuteOperation:outWrongState:] + 1247
    19  com.apple.IMAP                          0x00007fff94c07501 -[IMAPGateway _allowClientOperationThrough:] + 1237
    20  com.apple.IMAP                          0x00007fff94c06fd4 -[IMAPGateway allowClientOperationThrough:] + 369
    21  com.apple.IMAP                          0x00007fff94bebae3 -[IMAPClientOperation main] + 84
    22  com.apple.Foundation                    0x00007fff93a25926 -[__NSOperationInternal start] + 684
    23  com.apple.Foundation                    0x00007fff93a2d0f1 __block_global_6 + 129
    24  libdispatch.dylib                       0x00007fff92d88f01 _dispatch_call_block_and_release + 15
    25  libdispatch.dylib                       0x00007fff92d850b6 _dispatch_client_callout + 8
    26  libdispatch.dylib                       0x00007fff92d861fa _dispatch_worker_thread2 + 304
    27  libsystem_c.dylib                       0x00007fff8c558d0b _pthread_wqthread + 404
    28  libsystem_c.dylib                       0x00007fff8c5431d1 start_wqthread + 13
    Thread 3:: Dispatch queue: com.apple.root.default-overcommit-priority
    0   libsystem_kernel.dylib                  0x00007fff92fc00fa __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x00007fff8c55b023 _pthread_cond_wait + 927
    2   com.apple.Foundation                    0x00007fff939cc589 -[__NSOperationInternal waitUntilFinishedOrTimeout:] + 227
    3   com.apple.IMAP                          0x00007fff94bee328 -[IMAPClientOperationQueue waitUntilOperationIsFinished:] + 167
    4   com.apple.IMAP                          0x00007fff94c0780e -[IMAPGateway waitUntilClientOperationIsFinished:] + 168
    5   com.apple.IMAP                          0x00007fff94c07756 -[IMAPGateway addClientOperation:toQueueAndWaitUntilFinished:] + 411
    6   com.apple.IMAP                          0x00007fff94bf1ad6 -[IMAPCommandPipeline failureResponsesFromSendingCommandsWithGateway:responseHandler:highPriority:] + 284
    7   com.apple.MessageFramework              0x00007fff94d4ce62 -[LibraryIMAPStore _waitForDataFromDownload:uid:gateway:] + 411
    8   com.apple.MessageFramework              0x00007fff94d28d09 -[LibraryIMAPStore _fetchBodyDataForMessage:andHeaderDataIfReadilyAvailable:fetchIfNotAvailable:] + 347
    9   com.apple.MessageFramework              0x00007fff94d288d6 -[MessageStore bodyDataForMessage:fetchIfNotAvailable:allowPartial:] + 329
    10  com.apple.IMAP                          0x00007fff94c1a086 -[IMAPMessageWithCache bodyDataFetchIfNotAvailable:allowPartial:] + 197
    11  com.apple.CoreMessage                   0x00007fff93526331 -[MimePart(MessageSupport) parseMimeBodyFetchIfNotAvailable:allowPartial:] + 170
    12  com.apple.MessageFramework              0x00007fff94d284cd -[MessageStore _fetchBodyForMessage:fetchIfNotAvailable:updateFlags:allowPartial:] + 231
    13  com.apple.MessageFramework              0x00007fff94d278a0 -[MessageStore bodyForMessage:fetchIfNotAvailable:updateFlags:allowPartial:] + 162
    14  com.apple.MessageFramework              0x00007fff94dfecad -[MessageCriterion _evaluateJunkMailCriterion:] + 462
    15  com.apple.MessageFramework              0x00007fff94dfffd7 -[MessageCriterion _evaluateMessage:] + 80
    16  com.apple.MessageFramework              0x00007fff94dfff7f -[MessageCriterion doesMessageSatisfyRuleEvaluationCriterion:] + 75
    17  com.apple.MessageFramework              0x00007fff94e0d6f2 -[MessageRule doesMessageSatisfyCriteria:] + 453
    18  com.apple.MessageFramework              0x00007fff94e05807 +[MessageRouter putRulesThatWantsToHandleMessage:intoArray:colorRulesOnly:] + 499
    19  com.apple.MessageFramework              0x00007fff94e072f2 -[MessageRouter routeMessages:fromStores:] + 2225
    20  com.apple.MessageFramework              0x00007fff94e1442f -[MessageStore routeMessages:isUserAction:] + 123
    21  com.apple.IMAP                          0x00007fff94c12028 -[IMAPMailboxSyncEngine _processResponsesWithMonitor:] + 1709
    22  com.apple.IMAP                          0x00007fff94c11552 -[IMAPMailboxSyncEngine _goWithMessages:] + 858
    23  com.apple.MessageFramework              0x00007fff94d17962 -[LibraryIMAPStore openSynchronouslyUpdatingMetadata:withOptions:] + 373
    24  com.apple.MessageFramework              0x00007fff94d31826 -[LibraryIMAPStore _fetchForCheckingNewMail:] + 53
    25  com.apple.MessageFramework              0x00007fff94d31688 -[IMAPAccount fetchSynchronouslyIsAuto:] + 139
    26  com.apple.CoreFoundation                0x00007fff8cf8009c __invoking___ + 140
    27  com.apple.CoreFoundation                0x00007fff8cf7ff37 -[NSInvocation invoke] + 263
    28  com.apple.CoreMessage                   0x00007fff9352d7d7 -[MonitoredInvocation invoke] + 225
    29  com.apple.CoreMessage                   0x00007fff93545e22 -[ThrowingInvocationOperation main] + 33
    30  com.apple.CoreMessage                   0x00007fff934f1f82 -[_MFInvocationOperation main] + 431
    31  com.apple.Foundation                    0x00007fff93a25926 -[__NSOperationInternal start] + 684
    32  com.apple.Foundation                    0x00007fff93a2d0f1 __block_global_6 + 129
    33  libdispatch.dylib                       0x00007fff92d88f01 _dispatch_call_block_and_release + 15
    34  libdispatch.dylib                       0x00007fff92d850b6 _dispatch_client_callout + 8
    35  libdispatch.dylib                       0x00007fff92d861fa _dispatch_worker_thread2 + 304
    36  libsystem_c.dylib                       0x00007fff8c558d0b _pthread_wqthread + 404
    37  libsystem_c.dylib                       0x00007fff8c5431d1 start_wqthread + 13
    Thread 4:: Dispatch queue: com.apple.root.default-overcommit-priority
    0   libsystem_kernel.dylib                  0x00007fff92fc0122 __psynch_mutexwait + 10
    1   libsystem_c.dylib                       0x00007fff8c55bdfd pthread_mutex_lock + 536
    2   com.apple.Foundation                    0x00007fff939dbb79 -[NSRecursiveLock lock] + 22
    3   com.apple.IMAP                          0x00007fff94bfd4c8 -[IMAPConnectionPool checkInConnection:forGateway:] + 50
    4   com.apple.IMAP                          0x00007fff94c065f2 __51-[IMAPGateway _tryToCheckInConnectionAndTryToIdle:]_block_invoke_0 + 313
    5   com.apple.Foundation                    0x00007fff93a4f9cf -[NSBlockOperation main] + 124
    6   com.apple.Foundation                    0x00007fff93a25926 -[__NSOperationInternal start] + 684
    7   com.apple.Foundation                    0x00007fff93a2d0f1 __block_global_6 + 129
    8   libdispatch.dylib                       0x00007fff92d88f01 _dispatch_call_block_and_release + 15
    9   libdispatch.dylib                       0x00007fff92d850b6 _dispatch_client_callout + 8
    10  libdispatch.dylib                       0x00007fff92d861fa _dispatch_worker_thread2 + 304
    11  libsystem_c.dylib                       0x00007fff8c558d0b _pthread_wqthread + 404
    12  libsystem_c.dylib                       0x00007fff8c5431d1 start_wqthread + 13
    Thread 5:
    0   libsystem_kernel.dylib                  0x00007fff92fc06d6 __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x00007fff8c558f4c _pthread_workq_return + 25
    2   libsystem_c.dylib                       0x00007fff8c558d13 _pthread_wqthread + 412
    3   libsystem_c.dylib                       0x00007fff8c5431d1 start_wqthread + 13
    Thread 6:
    0   libsystem_kernel.dylib                  0x00007fff92fc06d6 __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x00007fff8c558f4c _pthread_workq_return + 25
    2   libsystem_c.dylib                       0x00007fff8c558d13 _pthread_wqthread + 412
    3   libsystem_c.dylib                       0x00007fff8c5431d1 start_wqthread + 13
    Thread 7 Crashed:: Dispatch queue: com.apple.root.default-overcommit-priority
    0   libsystem_kernel.dylib                  0x00007fff92fc0212 __pthread_kill + 10
    1   libsystem_c.dylib                       0x00007fff8c557b54 pthread_kill + 90
    2   libsystem_c.dylib                       0x00007fff8c59bdce abort + 143
    3   libc++abi.dylib                         0x00007fff8c51f9eb abort_message + 257
    4   libc++abi.dylib                         0x00007fff8c51d39a default_terminate() + 28
    5   libobjc.A.dylib                         0x00007fff8b91b873 _objc_terminate() + 91
    6   libc++.1.dylib                          0x00007fff929fa8fe std::terminate() + 20
    7   libobjc.A.dylib                         0x00007fff8b91b5de objc_terminate + 9
    8   libdispatch.dylib                       0x00007fff92d850ca _dispatch_client_callout + 28
    9   libdispatch.dylib                       0x00007fff92d861fa _dispatch_worker_thread2 + 304
    10  libsystem_c.dylib                       0x00007fff8c558d0b _pthread_wqthread + 404
    11  libsystem_c.dylib                       0x00007fff8c5431d1 start_wqthread + 13
    Thread 8:: Dispatch queue: com.apple.root.default-overcommit-priority
    0   libsystem_kernel.dylib                  0x00007fff92fc0122 __psynch_mutexwait + 10
    1   libsystem_c.dylib                       0x00007fff8c55bdfd pthread_mutex_lock + 536
    2   com.apple.Foundation                    0x00007fff939dbb79 -[NSRecursiveLock lock] + 22
    3   com.apple.IMAP                          0x00007fff94bfd4c8 -[IMAPConnectionPool checkInConnection:forGateway:] + 50
    4   com.apple.IMAP                          0x00007fff94c065f2 __51-[IMAPGateway _tryToCheckInConnectionAndTryToIdle:]_block_invoke_0 + 313
    5   com.apple.Foundation                    0x00007fff93a4f9cf -[NSBlockOperation main] + 124
    6   com.apple.Foundation                    0x00007fff93a25926 -[__NSOperationInternal start] + 684
    7   com.apple.Foundation                    0x00007fff93a2d0f1 __block_global_6 + 129
    8   libdispatch.dylib                       0x00007fff92d88f01 _dispatch_call_block_and_release + 15
    9   libdispatch.dylib                       0x00007fff92d850b6 _dispatch_client_callout + 8
    10  libdispatch.dylib                       0x00007fff92d861fa _dispatch_worker_thread2 + 304
    11  libsystem_c.dylib                       0x00007fff8c558d0b _pthread_wqthread + 404
    12  libsystem_c.dylib                       0x00007fff8c5431d1 start_wqthread + 13
    Thread 9:: Dispatch queue: com.apple.root.default-overcommit-priority
    0   libsystem_kernel.dylib                  0x00007fff92fbe686 mach_msg_trap + 10
    1   libsystem_kernel.dylib                  0x00007fff92fbdc42 mach_msg + 70
    2   com.apple.CoreFoundation                0x00007fff8cf29233 __CFRunLoopServiceMachPort + 195
    3   com.apple.CoreFoundation                0x00007fff8cf2e916 __CFRunLoopRun + 1078
    4   com.apple.CoreFoundation                0x00007fff8cf2e0e2 CFRunLoopRunSpecific + 290
    5   com.apple.CoreMessage                   0x00007fff934ca0e9 _handleRequestWithTimeout + 1527
    6   com.apple.CoreMessage                   0x00007fff934cc8cb -[_NSSocket readBytes:length:error:] + 161
    7   com.apple.CoreMessage                   0x00007fff934e6a7b -[Connection _readBytesFromSocketIntoBuffer:amount:requireAllBytes:error:] + 76
    8   com.apple.CoreMessage                   0x00007fff934e6961 -[Connection _fillBuffer:] + 764
    9   com.apple.CoreMessage                   0x00007fff934e64f3 -[Connection _readLineIntoData:error:] + 202
    10  com.apple.IMAP                          0x00007fff94bf5486 -[IMAPConnection _readLineIntoData:error:] + 53
    11  com.apple.IMAP                          0x00007fff94bfbe14 -[IMAPConnection(MFPrivate) _readDataOfLength:intoData:error:] + 112
    12  com.apple.IMAP                          0x00007fff94c1e428 -[IMAPResponse initWithConnection:error:] + 144
    13  com.apple.IMAP                          0x00007fff94bf557a -[IMAPConnection _copyNextServerResponse:] + 55
    14  com.apple.IMAP                          0x00007fff94bf57eb -[IMAPConnection _copyNextTaggedOrContinuationResponseForCommand:exists:] + 551
    15  com.apple.IMAP                          0x00007fff94bfaa87 -[IMAPConnection _responseFromSendingOperation:] + 863
    16  com.apple.IMAP                          0x00007fff94bf7ad0 -[IMAPConnection executeLogin:] + 63
    17  com.apple.IMAP                          0x00007fff94be6107 -[IMAPClientLoginOperation executeOnConnection:] + 26
    18  com.apple.IMAP                          0x00007fff94bf49f5 -[IMAPConnection prepareAndExecuteOperation:outWrongState:] + 1247
    19  com.apple.IMAP                          0x00007fff94c07501 -[IMAPGateway _allowClientOperationThrough:] + 1237
    20  com.apple.IMAP                          0x00007fff94c06fd4 -[IMAPGateway allowClientOperationThrough:] + 369
    21  com.apple.IMAP                          0x00007fff94bebae3 -[IMAPClientOperation main] + 84
    22  com.apple.Foundation                    0x00007fff93a25926 -[__NSOperationInternal start] + 684
    23  com.apple.Foundation                    0x00007fff93a2d0f1 __block_global_6 + 129
    24  libdispatch.dylib                       0x00007fff92d88f01 _dispatch_call_block_and_release + 15
    25  libdispatch.dylib                       0x00007fff92d850b6 _dispatch_client_callout + 8
    26  libdispatch.dylib                       0x00007fff92d861fa _dispatch_worker_thread2 + 304
    27  libsystem_c.dylib                       0x00007fff8c558d0b _pthread_wqthread + 404
    28  libsystem_c.dylib                       0x00007fff8c5431d1 start_wqthread + 13
    Thread 10:: -[MFAosImapAccount _fetchUnreadCountsCheckForNewMessages:]  Dispatch queue: com.apple.root.default-overcommit-priority
    0   libsystem_kernel.dylib                  0x00007fff92fc0122 __psynch_mutexwait + 10
    1   libsystem_c.dylib                       0x00007fff8c55bdfd pthread_mutex_lock + 536
    2   com.apple.IMAP                          0x00007fff94c0bcaa -[IMAPMailboxSyncEngine _copyDataSource] + 32
    3   com.apple.IMAP                          0x00007fff94c11227 -[IMAPMailboxSyncEngine _goWithMessages:] + 47
    4   com.apple.MessageFramework              0x00007fff94d3cc66 -[LibraryIMAPStore _retrieveNewMessagesForCheckingNewMail:] + 237
    5   com.apple.MessageFramework              0x00007fff94d31a63 -[LibraryIMAPStore _fetchForCheckingNewMail:] + 626
    6   com.apple.MessageFramework              0x00007fff94d3d8f5 -[IMAPAccount _fetchUnreadCountsForMailboxUid:recursively:gateway:checkForNewMessages:] + 725
    7   com.apple.MessageFramework              0x00007fff94d3d258 -[IMAPAccount _fetchUnreadCountsCheckForNewMessages:] + 417
    8   com.apple.CoreFoundation                0x00007fff8cf8009c __invoking___ + 140
    9   com.apple.CoreFoundation                0x00007fff8cf7ff37 -[NSInvocation invoke] + 263
    10  com.apple.CoreMessage                   0x00007fff9352d7d7 -[MonitoredInvocation invoke] + 225
    11  com.apple.CoreMessage                   0x00007fff93545e22 -[ThrowingInvocationOperation main] + 33
    12  com.apple.CoreMessage                   0x00007fff934f1f82 -[_MFInvocationOperation main] + 431
    13  com.apple.Foundation                    0x00007fff93a25926 -[__NSOperationInternal start] + 684
    14  com.apple.Foundation                    0x00007fff93a2d0f1 __block_global_6 + 129
    15  libdispatch.dylib                       0x00007fff92d88f01 _dispatch_call_block_and_release + 15
    16  libdispatch.dylib                       0x00007fff92d850b6 _dispatch_client_callout + 8
    17  libdispatch.dylib                       0x00007fff92d861fa _dispatch_worker_thread2 + 304
    18  libsystem_c.dylib                       0x00007fff8c558d0b _pthread_wqthread + 404
    19  libsystem_c.dylib                       0x00007fff8c5431d1 start_wqthread + 13
    Thread 11:: -[IMAPAccount fetchSynchronouslyIsAuto:]  Dispatch queue: com.apple.root.default-overcommit-priority
    0   libsystem_kernel.dylib                  0x00007fff92fc0122 __psynch_mutexwait + 10
    1   libsystem_c.dylib                       0x00007fff8c55bdfd pthread_mutex_lock + 536
    2   com.apple.IMAP                          0x00007fff94c0bcaa -[IMAPMailboxSyncEngine _copyDataSource] + 32
    3   com.apple.IMAP                          0x00007fff94c11227 -[IMAPMailboxSyncEngine _goWithMessages:] + 47
    4   com.apple.MessageFramework              0x00007fff94d17962 -[LibraryIMAPStore openSynchronouslyUpdatingMetadata:withOptions:] + 373
    5   com.apple.MessageFramework              0x00007fff94d31826 -[LibraryIMAPStore _fetchForCheckingNewMail:] + 53
    6   com.apple.MessageFramework              0x00007fff94d31688 -[IMAPAccount fetchSynchronouslyIsAuto:] + 139
    7   com.apple.CoreFoundation                0x00007fff8cf8009c __invoking___ + 140
    8   com.apple.CoreFoundation                0x00007fff8cf7ff37 -[NSInvocation invoke] + 263
    9   com.apple.CoreMessage                   0x00007fff9352d7d7 -[MonitoredInvocation invoke] + 225
    10  com.apple.CoreMessage                   0x00007fff93545e22 -[ThrowingInvocationOperation main] + 33
    11  com.apple.CoreMessage                   0x00007fff934f1f82 -[_MFInvocationOperation main] + 431
    12  com.apple.Foundation                    0x00007fff93a25926 -[__NSOperationInternal start] + 684
    13  com.apple.Foundation                    0x00007fff93a2d0f1 __block_global_6 + 129
    14  libdispatch.dylib                       0x00007fff92d88f01 _dispatch_call_block_and_release + 15
    15  libdispatch.dylib                       0x00007fff92d850b6 _dispatch_client_callout + 8
    16  libdispatch.dylib                       0x00007fff92d861fa _dispatch_worker_thread2 + 304
    17  libsystem_c.dylib                       0x00007fff8c558d0b _pthread_wqthread + 404
    18  libsystem_c.dylib                       0x00007fff8c5431d1 start_wqthread + 13
    Thread 12:: -[LibraryIMAPStore openSynchronously]  Dispatch queue: com.apple.root.default-overcommit-priority
    0   libsystem_kernel.dylib                  0x00007fff92fc00fa __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x00007fff8c55b023 _pthread_cond_wait + 927
    2   com.apple.Foundation                    0x00007fff939cc589 -[__NSOperationInternal waitUntilFinishedOrTimeout:] + 227
    3   com.apple.IMAP                          0x00007fff94bee328 -[IMAPClientOperationQueue waitUntilOperationIsFinished:] + 167
    4   com.apple.IMAP                          0x00007fff94c0780e -[IMAPGateway waitUntilClientOperationIsFinished:] + 168
    5   com.apple.IMAP                          0x00007fff94c07756 -[IMAPGateway addClientOperation:toQueueAndWaitUntilFinished:] + 411
    6   com.apple.IMAP                          0x00007fff94c14146 -[IMAPMailboxSyncEngine _fetchUidsAndFlagsWithMonitor:] + 1924
    7   com.apple.IMAP                          0x00007fff94c115a3 -[IMAPMailboxSyncEngine _goWithMessages:] + 939
    8   com.apple.MessageFramework              0x00007fff94d17962 -[LibraryIMAPStore openSynchronouslyUpdatingMetadata:withOptions:] + 373
    9   com.apple.CoreFoundation                0x00007fff8cf8009c __invoking___ + 140
    10  com.apple.CoreFoundation                0x00007fff8cf7ff37 -[NSInvocation invoke] + 263
    11  com.apple.CoreMessage                   0x00007fff9352d7d7 -[MonitoredInvocation invoke] + 225
    12  com.apple.CoreMessage                   0x00007fff93545e22 -[ThrowingInvocationOperation main] + 33
    13  com.apple.CoreMessage                   0x00007fff934f1f82 -[_MFInvocationOperation main] + 431
    14  com.apple.Foundation                    0x00007fff93a25926 -[__NSOperationInternal start] + 684
    15  com.apple.Foundation                    0x00007fff93a2d0f1 __block_global_6 + 129
    16  libdispatch.dylib                       0x00007fff92d88f01 _dispatch_call_block_and_release + 15
    17  libdispatch.dylib                       0x00007fff92d850b6 _dispatch_client_callout + 8
    18  libdispatch.dylib                       0x00007fff92d861fa _dispatch_worker_thread2 + 304
    19  libsystem_c.dylib                       0x00007fff8c558d0b _pthread_wqthread + 404
    20  libsystem_c.dylib                       0x00007fff8c5431d1 start_wqthread + 13
    Thread 13:: -[LibraryIMAPStore openSynchronously]  Dispatch queue: com.apple.root.default-overcommit-priority
    0   libsystem_kernel.dylib                  0x00007fff92fc0122 __psynch_mutexwait + 10
    1   libsystem_c.dylib                       0x00007fff8c55bdfd pthread_mutex_lock + 536
    2   com.apple.IMAP                          0x00007fff94c11311 -[IMAPMailboxSyncEngine _goWithMessages:] + 281
    3   com.apple.MessageFramework              0x00007fff94d17962 -[LibraryIMAPStore openSynchronouslyUpdatingMetadata:withOptions:] + 373
    4   com.apple.CoreFoundation                0x00007fff8cf8009c __invoking___ + 140
    5   com.apple.CoreFoundation                0x00007fff8cf7ff37 -[NSInvocation invoke] + 263
    6   com.apple.CoreMessage                   0x00007fff9352d7d7 -[MonitoredInvocation invoke] + 225
    7   com.apple.CoreMessage                   0x00007fff93545e22 -[ThrowingInvocationOperation main] + 33
    8   com.apple.CoreMessage                   0x00007fff934f1f82 -[_MFInvocationOperation main] + 431
    9   com.apple.Foundation                    0x00007fff93a25926 -[__NSOperationInternal start] + 684
    10  com.apple.Foundation                    0x00007fff93a2d0f1 __block_global_6 + 129
    11  libdispatch.dylib                       0x00007fff92d88f01 _dispatch_call_block_and_release + 15
    12  libdispatch.dylib                       0x00007fff92d850b6 _dispatch_client_callout + 8
    13  libdispatch.dylib                       0x00007fff92d861fa _dispatch_worker_thread2 + 304
    14  libsystem_c.dylib                       0x00007fff8c558d0b _pthread_wqthread + 404
    15  libsystem_c.dylib                       0x00007fff8c5431d1 start_wqthread + 13
    Thread 14:: -[IMAPAccount fetchSynchronouslyIsAuto:]  Dispatch queue: com.apple.root.default-overcommit-priority
    0   libsystem_kernel.dylib                  0x00007fff92fc0122 __psynch_mutexwait + 10
    1   libsystem_c.dylib                       0x00007fff8c55bdfd pthread_mutex_lock + 536
    2   com.apple.IMAP                          0x00007fff94c0bcaa -[IMAPMailboxSyncEngine _copyDataSource] + 32
    3   com.apple.IMAP                          0x00007fff94c11227 -[IMAPMailboxSyncEngine _goWithMessages:] + 47
    4   com.apple.MessageFramework              0x00007fff94d17962 -[LibraryIMAPStore openSynchronouslyUpdatingMetadata:withOptions:] + 373
    5   com.apple.MessageFramework              0x00007fff94d31826 -[LibraryIMAPStore _fetchForCheckingNewMail:] + 53
    6   com.apple.MessageFramework              0x00007fff94d31688 -[IMAPAccount fetchSynchronouslyIsAuto:] + 139
    7   com.apple.CoreFoundation                0x00007fff8cf8009c __invoking___ + 140
    8   com.apple.CoreFoundation                0x00007fff8cf7ff37 -[NSInvocation invoke] + 263
    9   com.apple.CoreMessage                   0x00007fff9352d7d7 -[MonitoredInvocation invoke] + 225
    10  com.apple.CoreMessage                   0x00007fff93545e22 -[ThrowingInvocationOperation main] + 33
    11  com.apple.CoreMessage                   0x00007fff934f1f82 -[_MFInvocationOperation main] + 431
    12  com.apple.Foundation                    0x00007fff93a25926 -[__NSOperationInternal start] + 684
    13  com.apple.Foundation                    0x00007fff93a2d0f1 __block_global_6 + 129
    14  libdispatch.dylib                       0x00007fff92d88f01 _dispatch_call_block_and_release + 15
    15  libdispatch.dylib                       0x00007fff92d850b6 _dispatch_client_callout + 8
    16  libdispatch.dylib                       0x00007fff92d861fa _dispatch_worker_thread2 + 304
    17  libsystem_c.dylib                       0x00007fff8c558d0b _pthread_wqthread + 404
    18  libsystem_c.dylib                       0x00007fff8c5431d1 start_wqthread + 13
    Thread 15:: Dispatch queue: com.apple.root.default-overcommit-priority
    0   libsystem_kernel.dylib                  0x00007fff92fc002a __open_nocancel + 10
    1   libsystem_c.dylib                       0x00007fff8c5a8a8b __opendir2$INODE64 + 45
    2   libsystem_c.dylib                       0x00007fff8c5aa7b0 scandir$INODE64 + 33
    3   com.apple.MessageFramework              0x00007fff94d33243 mf_scandir + 61
    4   com.apple.MessageFramework              0x00007fff94d332bb mf_scandir + 181
    5   com.apple.MessageFramework              0x00007fff94d332bb mf_scandir + 181
    6   com.apple.MessageFramework              0x00007fff94d332bb mf_scandir + 181
    7   com.apple.MessageFramework              0x00007fff94e339ce -[MFFilesystemWatcher registerPath:] + 168
    8   com.apple.MessageFramework              0x00007fff94d330d1 -[LibraryIMAPStore cacheDirectoryContents] + 131
    9   com.apple.IMAP                          0x00007fff94c1538e -[IMAPMailboxSyncEngine _cacheMessagesWithMonitor:] + 1109
    10  com.apple.IMAP                          0x00007fff94c115d5 -[IMAPMailboxSyncEngine _goWithMessages:] + 989
    11  com.apple.MessageFramework              0x00007fff94d17962 -[LibraryIMAPStore openSynchronouslyUpdatingMetadata:withOptions:] + 373
    12  com.apple.CoreFoundation                0x00007fff8cf8009c __invoking___ + 140
    13  com.apple.CoreFoundation                0x00007fff8cf7ff37 -[NSInvocation invoke] + 263
    14  com.apple.CoreMessage                   0x00007fff9352d7d7 -[MonitoredInvocation invoke] + 225
    15  com.apple.CoreMessage                   0x00007fff93545e22 -[ThrowingInvocationOperation main] + 33
    16  com.apple.CoreMessage                   0x00007fff934f1f82 -[_MFInvocationOperation main] + 431
    17  com.apple.Foundation                    0x00007fff93a25926 -[__NSOperationInternal start] + 684
    18  com.apple.Foundation                    0x00007fff93a2d0f1 __block_global_6 + 129
    19  libdispatch.dylib                       0x00007fff92d88f01 _dispatch_call_block_and_release + 15
    20  libdispatch.dylib                       0x00007fff92d850b6 _dispatch_client_callout + 8
    21  libdispatch.dylib                       0x00007fff92d861fa _dispatch_worker_thread2 + 304
    22  libsystem_c.dylib                       0x00007fff8c558d0b _pthread_wqthread + 404
    23  libsystem_c.dylib                       0x00007fff8c5431d1 start_wqthread + 13
    Thread 16:: Dispatch queue: com.apple.root.default-overcommit-priority
    0   libsystem_kernel.dylib                  0x00007fff92fbe686 mach_msg_trap + 10
    1   libsystem_kernel.dylib                  0x00007fff92fbdc42 mach_msg + 70
    2   com.apple.CoreFoundation                0x00007fff8cf29233 __CFRunLoopServiceMachPort + 195
    3   com.apple.CoreFoundation                0x00007fff8cf2e916 __CFRunLoopRun + 1078
    4   com.apple.CoreFoundation                0x00007fff8cf2e0e2 CFRunLoopRunSpecific + 290
    5   com.apple.CoreMessage                   0x00007fff934ca0e9 _handleRequestWithTimeout + 1527
    6   com.apple.CoreMessage                   0x00007fff934cc8cb -[_NSSocket readBytes:length:error:] + 161
    7   com.apple.CoreMessage                   0x00007fff934e6a7b -[Connection _readBytesFromSocketIntoBuffer:amount:requireAllBytes:error:] + 76
    8   com.apple.CoreMessage                   0x00007fff934e6961 -[Connection _fillBuffer:] + 764
    9   com.apple.CoreMessage                   0x00007fff934e64f3 -[Connection _readLineIntoData:error:] + 202
    10  com.apple.IMAP                          0x00007fff94bf5486 -[IMAPConnection _readLineIntoData:error:] + 53
    11  com.apple.IMAP                          0x00007fff94bfbe14 -[IMAPConnection(MFPrivate) _readDataOfLength:intoData:error:] + 112
    12  com.apple.IMAP                          0x00007fff94c1e428 -[IMAPResponse initWithConnection:error:] + 144
    13  com.apple.IMAP                          0x00007fff94bf557a -[IMAPConnection _copyNextServerResponse:] + 55
    14  com.apple.IMAP                          0x00007fff94bf57eb -[IMAPConnection _copyNextTaggedOrContinuationResponseForCommand:exists:] + 551
    15  com.apple.IMAP                          0x00007fff94bfaa87 -[IMAPConnection _responseFromSendingOperation:] + 863
    16  com.apple.IMAP                          0x00007fff94bfa3d1 -[IMAPConnection executeFetch:] + 44
    17  com.apple.IMAP                          0x00007fff94be7ee2 -[IMAPClientFetchOperation executeOnConnection:] + 26
    18  com.apple.IMAP                          0x00007fff94bf49f5 -[IMAPConnection prepareAndExecuteOperation:outWrongState:] + 1247
    19  com.apple.IMAP                          0x00007fff94c07501 -[IMAPGateway _allowClientOperationThrough:] + 1237
    20  com.apple.IMAP                          0x00007fff94c06fd4 -[IMAPGateway allowClientOperationThrough:] + 369
    21  com.apple.IMAP                          0x00007fff94bebae3 -[IMAPClientOperation main] + 84
    22  com.apple.Foundation                    0x00007fff93a25926 -[__NSOperationInternal start] + 684
    23  com.apple.Foundation                    0x00007fff93a2d0f1 __block_global_6 + 129
    24  libdispatch.dylib                       0x00007fff92d88f01 _dispatch_call_block_and_release + 15
    25  libdispatch.dylib                       0x00007fff92d850b6 _dispatch_client_callout + 8
    26  libdispatch.dylib                       0x00007fff92d861fa _dispatch_worker_thread2 + 304
    27  libsystem_c.dylib                       0x00007fff8c558d0b _pthread_wqthread + 404
    28  libsystem_c.dylib                       0x00007fff8c5431d1 start_wqthread + 13
    Thread 17:: Dispatch queue: com.apple.root.default-overcommit-priority
    0   libsystem_c.dylib                       0x00007fff8c544cfc OSAtomicCompareAndSwap64Barrier$VARIANT$mp + 8
    1   libsystem_c.dylib                       0x00007fff8c55bdb4 pthread_mutex_lock + 463
    2   com.apple.CoreMessage                   0x00007fff9353eea9 -[SafeValueCache retainedValue] + 22
    3   com.apple.CoreMessage                   0x00007fff9353edf7 -[SafeValueCache value] + 17
    4   com.apple.MessageFramework              0x00007fff94df45de -[MailboxUid _URLStringIsSyncable:] + 57
    5   com.apple.CoreFoundation                0x00007fff8cf9e3ed -[NSArray arrayByApplyingSelector:] + 429
    6   com.apple.MessageFramework              0x00007fff94d06758 +[Library _getActiveAccountURLs:andActiveMailboxURLs:] + 960
    7   com.apple.MessageFramework              0x00007fff94cef16a +[Library executeBlock:isWriter:useTransaction:isPrivileged:] + 280
    8   com.apple.MessageFramework              0x00007fff94d103c1 +[Library sendMessagesMatchingQuery:to:options:] + 398
    9   com.apple.MessageFramework              0x00007fff94d0c952 +[Library sendMessagesMatchingCriterion:to:options:] + 1677
    10  com.apple.MessageFramework              0x00007fff94d0c16c +[Library messagesMatchingCriterion:options:] + 119
    11  com.apple.MessageFramework              0x00007fff94d43b7d +[LibraryStore filterMessages:throughSmartMailbox:] + 685
    12  com.apple.MessageFramework              0x00007fff94e6ea6c __block_global_2 + 165
    13  com.apple.CoreFoundation                0x00007fff8cf788a9 __NSDictionaryEnumerate + 1081
    14  com.apple.MessageFramework              0x00007fff94e6e998 __62-[_NonContentSmartMailboxUnreadCountManager _messagesChanged:]_block_invoke_0 + 147
    15  com.apple.Foundation                    0x00007fff93a4f9cf -[NSBlockOperation main] + 124
    16  com.apple.Foundation                    0x00007fff93a25926 -[__NSOperationInternal start] + 684
    17  com.apple.Foundation                    0x00007fff93a2d0f1 __block_global_6 + 129
    18  libdispatch.dylib                       0x00007fff92d88f01 _dispatch_call_block_and_release + 15
    19  libdispatch.dylib                       0x00007fff92d850b6 _dispatch_client_callout + 8
    20  libdispatch.dylib                       0x00007fff92d861fa _dispatch_worker_thread2 + 304
    21  libsystem_c.dylib                       0x00007fff8c558d0b _pthread_wqthread + 404
    22  libsystem_c.dylib                       0x00007fff8c5431d1 start_wqthread + 13
    Thread 18:
    0   libsystem_kernel.dylib                  0x00007fff92fbe686 mach_msg_trap + 10
    1   libsystem_kernel.dylib                  0x00007fff92fbdc42 mach_msg + 70
    2   com.apple.CoreFoundation                0x00007fff8cf29233 __CFRunLoopServiceMachPort + 195
    3   com.apple.CoreFoundation                0x00007fff8cf2e916 __CFRunLoopRun + 1078
    4   com.apple.CoreFoundation                0x00007fff8cf2e0e2 CFRunLoopRunSpecific + 290
    5   com.apple.Foundation                    0x00007fff93a317ee -[NSRunLoop(NSRunLoop) runMode:beforeDate:] + 268
    6   com.apple.Foundation                    0x00007fff939ca1aa -[NSRunLoop(NSRunLoop) run] + 74
    7   com.apple.CoreMessage                   0x00007fff934cad57 +[_NSSocket _runIOThread] + 77
    8   com.apple.Foundation                    0x00007fff93a2c562 __NSThread__main__ + 1345
    9   libsystem_c.dylib                       0x00007fff8c5567a2 _pthread_start + 327
    10  libsystem_c.dylib                       0x00007fff8c5431e1 thread_start + 13
    Thread 19:: com.apple.CFSocket.private
    0   libsystem_kernel.dylib                  0x00007fff92fc0322 __select + 10
    1   com.apple.CoreFoundation                0x00007fff8cf6df46 __CFSocketManager + 1302
    2   libsystem_c.dylib                       0x00007fff8c5567a2 _pthread_start + 327
    3   libsystem_c.dylib                       0x00007fff8c5431e1 thread_start + 13
    Thread 20:: -[IMAPAccount _synchronizeAccountWithServerWithUserInput:]  Dispatch queue: com.apple.root.default-overcommit-priority
    0   libsystem_kernel.dylib                  0x00007fff92fc00fa __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x00007fff8c55b023 _pthread_cond_wait + 927
    2   com.apple.Foundation                    0x00007fff939cc589 -[__NSOperationInternal waitUntilFinishedOrTimeout:] + 227
    3   com.apple.IMAP                          0x00007fff94bee328 -[IMAPClientOperationQueue waitUntilOperationIsFinished:] + 167
    4   com.apple.IMAP                          0x00007fff94c0780e -[IMAPGateway waitUntilClientOperationIsFinished:] + 168
    5   com.apple.IMAP                          0x00007fff94bf79aa -[IMAPConnection _loginWithUsername:password:] + 692
    6   com.apple.IMAP                          0x00007fff94bf6c75 -[IMAPConnection _authenticateWithAuthenticator:] + 850
    7   com.apple.CoreMessage                   0x00007fff934e6295 -[Connection authenticate] + 598
    8   com.apple.IMAP                          0x00007fff94bf6830 -[IMAPConnection authenticate] + 66
    9   com.apple.MessageFramework              0x00007fff94d9dfd9 -[IMAPAccount connectAndAuthenticate:] + 1058
    10  com.apple.IMAP                          0x00007fff94bffd5d -[IMAPConnectionPool _validateAndCheckOutGateway:forMailbox:allowReconnect:newGateway:] + 334
    11  com.apple.IMAP                          0x00007fff94bfde39 -[IMAPConnectionPool _checkOutNewGatewayWithConnection:forMailbox:] + 301
    12  com.apple.MessageFramework              0x00007fff94d1c695 -[IMAPAccount _getPotentialGatewayForMailbox:options:createdNewConnection:needsSelect:] + 429
    13  com.apple.MessageFramework              0x00007fff94d1c2a0 -[IMAPAccount _gatewayForMailboxUid:name:options:] + 180
    14  com.apple.MessageFramework              0x00007fff94d3791a -[IMAPAccount _listingForMailboxUid:listAllChildren:onlySubscribed:withUserInput:] + 115
    15  com.apple.MessageFramework              0x00007fff94d37498 -[IMAPAccount _listingForMailboxUid:listAllChildren:withUserInput:] + 126
    16  com.apple.MessageFramework              0x00007fff94d373b3 -[IMAPAccount _synchronizeMailboxListWithUserInput:] + 64
    17  com.apple.MessageFramework              0x00007fff94d33c1f -[RemoteStoreAccount _synchronizeAccountWithServerWithUserInput:] + 318
    18  com.apple.MessageFramework              0x00007fff94d338b3 -[IMAPAccount _synchronizeAccountWithServerWithUserInput:] + 45
    19  com.apple.CoreFoundation                0x00007fff8cf8009c __invoking___ + 140
    20  com.apple.CoreFoundation                0x00007fff8cf7ff37 -[NSInvocation invoke] + 263
    21  com.apple.CoreMessage                   0x00007fff9352d7d7 -[MonitoredInvocation invoke] + 225
    22  com.apple.CoreMessage                   0x00007fff93545e22 -[ThrowingInvocationOperation main] + 33
    23  com.apple.CoreMessage                   0x00007fff934f1f82 -[_MFInvocationOperation main] + 431
    24  com.apple.Foundation                    0x00007fff93a25926 -[__NSOperationInternal start] + 684
    25  com.apple.Foundation                    0x00007fff93a2d0f1 __block_global_6 + 129
    26  libdispatch.dylib                       0x00007fff92d88f01 _dispatch_call_block_and_release + 15
    27  libdispatch.dylib                       0x00007fff92d850b6 _dispatch_client_callout + 8
    28  libdispatch.dylib                       0x00007fff92d861fa _dispatch_worker_thread2 + 304
    29  libsystem_c.dylib                       0x00007fff8c558d0b _pthread_wqthread + 404
    30  libsystem_c.dylib                       0x00007fff8c5431d1 start_wqthread + 13
    Thread 21:: -[IMAPAccount _synchronizeAccountWithServerWithUserInput:]  Dispatch queue: com.apple.root.default-overcommit-priority
    0   libsystem_kernel.dylib                  0x00007fff92fbe686 mach_msg_trap + 10
    1   libsystem_kernel.dylib                  0x00007fff92fbdc42 mach_msg + 70
    2   com.apple.CoreFoundation                0x00007fff8cf29233 __CFRunLoopServiceMachPort + 195
    3   com.apple.CoreFoundation                0x00007fff8cf2e916 __CFRunLoopRun + 1078
    4   com.apple.CoreFoundation                0x00007fff8cf2e0e2 CFRunLoopRunSpecific + 290
    5   com.apple.CoreMessage                   0x00007fff934ca0e9 _handleRequestWithTimeout + 1527
    6   com.apple.CoreMessage                   0x00007fff934cc58c -[_NSSocket connectToHost:withPort:] + 814
    7   com.apple.CoreMessage                   0x00007fff934e53ae -[Connection connectDiscoveringBestSettings:] + 1191
    8   com.apple.MessageFramework              0x00007fff94d9ddad -[IMAPAccount connectAndAuthenticate:] + 502
    9   com.apple.IMAP                          0x00007fff94bffd5d -[IMAPConnectionPool _validateAndCheckOutGateway:forMailbox:allowReconnect:newGateway:] + 334
    10  com.apple.IMAP                          0x00007fff94bfde39 -[IMAPConnectionPool _checkOutNewGatewayWithConnection:forMailbox:] + 301
    11  com.apple.MessageFramework              0x00007fff94d1c695 -[IMAPAccount _getPotentialGatewayForMailbox:options:createdNewConnection:needsSelect:] + 429
    12  com.apple.MessageFramework              0x00007fff94d1c2a0 -[IMAPAccount _gatewayForMailboxUid:name:options:] + 180
    13  com.apple.MessageFramework              0x00007fff94d3db39 -[IMAPAccount _namespacePrefixesForPrivate:public:shared:] + 177
    14  com.apple.MessageFramework              0x00007fff94d374d3 -[IMAPAccount _listingForMailboxUid:listAllChildren:withUserInput:] + 185
    15  com.apple.MessageFramework              0x00007fff94d373b3 -[IMAPAccount _synchronizeMailboxListWithUserInput:] + 64
    16  com.apple.MessageFramework              0x00007fff94d33c1f -[RemoteStoreAccount _synchronizeAccountWithServerWithUserInput:] + 318
    17  com.apple.MessageFramework              0x00007fff94d338b3 -[IMAPAccount _synchronizeAccountWithServerWithUserInput:] + 45
    18  com.apple.CoreFoundation                0x00007fff8cf8009c __invoking___ + 140
    19  com.apple.CoreFoundation                0x00007fff8cf7ff37 -[NSInvocation invoke] + 263
    20  com.apple.CoreMessage                   0x00007fff9352d7d7 -[MonitoredInvocation invoke] + 225
    21  com.apple.CoreMessage                   0x00007fff93545e22 -[ThrowingInvocationOperation main] + 33
    22  com.apple.CoreMessage                   0x00007fff934f1f82 -[_MFInvocationOperation main] + 431
    23  com.apple.Foundation                    0x00007fff93a25926 -[__NSOperationInternal start] + 684
    24  com.apple.Foundation                    0x00007fff93a2d0f1 __block_global_6 + 129
    25  libdispatch.dylib                       0x00007fff92d88f01 _dispatch_call_block_and_release + 15
    26  libdispatch.dylib                       0x00007fff92d850b6 _dispatch_client_callout + 8
    27  libdispatch.dylib                       0x00007fff92d861fa _dispatch_worker_thread2 + 304
    28  libsystem_c.dylib                       0x00007fff8c558d0b _pthread_wqthread + 404
    29  libsystem_c.dylib                       0x00007fff8c5431d1 start_wqthread + 13
    Thread 22:: Dispatch queue: com.apple.root.default-priority
    0   libsystem_kernel.dylib                  0x00007fff92fc0122 __psynch_mutexwait + 10
    1   libsystem_c.dylib                       0x00007fff8c55bdfd pthread_mutex_lock + 536
    2   com.apple.Foundation                    0x00007fff939dbb79 -[NSRecursiveLock lock] + 22
    3   com.apple.IMAP                          0x00007fff94bed1e7 __56-[IMAPClientOperationQueue _postDelayedActivityFinished]_block_invoke_0 + 116
    4   libdispatch.dylib                       0x00007fff92d850b6 _dispatch_client_callout + 8
    5   libdispatch.dylib                       0x00007fff92d8729b _dispatch_source_invoke + 691
    6   libdispatch.dylib                       0x00007fff92d86305 _dispatch_queue_invoke + 72
    7   libdispatch.dylib                       0x00007fff92d861c3 _dispatch_worker_thread2 + 249
    8   libsystem_c.dylib                       0x00007fff8c558d0b _pthread_wqthread + 404
    9   libsystem_c.dylib                       0x00007fff8c5431d1 start_wqthread + 13
    Thread 23:
    0   libsystem_kernel.dylib                  0x00007fff92fc06d6 __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x00007fff8c558f4c _pthread_workq_return + 25
    2   libsystem_c.dylib                       0x00007fff8c558d13 _pthread_wqthread + 412
    3   libsystem_c.dylib                       0x00007fff8c5431d1 start_wqthread + 13
    Thread 24:: -[IMAPMailboxSyncEngine _goWithMessagesIfNeeded:]  Dispatch queue: com.apple.root.default-overcommit-priority
    0   libsystem_kernel.dylib     

    Back up all data.
    Try the steps suggested on this page. if the problem isn't solved that way, continue as below.
    In the Finder, hold down the option key and select
    Go ▹ Library
    from the menu bar. Move the following items from the folder that opens to the Trash (some may not exist):
    Caches/com.apple.mail
    Saved Application State/com.apple.mail.savedState
    Leave the Finder window open for now.
    Try to launch Mail. If the problem is solved, you’re done. Otherwise, move these items, if they exist, from the open Library folder to the Desktop:
    Application Support/AddressBook/MailRecents-v4.abcdmr
    Containers/com.apple.mail
    Preferences/com.apple.mail.plist
    Preferences/com.apple.mail.searchhistory.plist
    Try Mail again. If it launches, you'll have to recreate some of your settings. Delete the items you moved to the Desktop.
    If Mail still doesn't work, put the items you moved to the Desktop back where they were. You don’t need to replace the items you moved to the Trash.
    Move the subfolder named "Mail" — not the Mail application — from the Library folder to the Desktop.
    Test. If Mail now launches, it will prompt you to set up an account. Cancel and restore the Mail folder from the most recent backup you have that predates the issue. A corrupt database is causing the problem.
    If there’s no improvement, put back the Mail folder and post your results.

  • My notes has crashed.  i made a guest account and it is fine there.  Here is the info on the crash screen.  Please help, Process:         Notes [377] Path:            /Applications/Notes.app/Contents/MacOS/Notes Identifier:      com.apple.Notes Version:

    My notes has crashed and here is the printout.  It works fine in a guest account I created.
    Please help
    Process:         Notes [377]
    Path:            /Applications/Notes.app/Contents/MacOS/Notes
    Identifier:      com.apple.Notes
    Version:         1.5 (107)
    Build Info:      Notes-107000000000000~3
    Code Type:       X86-64 (Native)
    Parent Process:  launchd [186]
    User ID:         501
    Date/Time:       2013-08-18 22:07:25.392 -0700
    OS Version:      Mac OS X 10.8.4 (12E55)
    Report Version:  10
    Interval Since Last Report:          8448 sec
    Crashes Since Last Report:           24
    Per-App Interval Since Last Report:  34 sec
    Per-App Crashes Since Last Report:   24
    Anonymous UUID:                      14E94F91-30E8-3221-31AA-EC9E86F52275
    Crashed Thread:  0  Dispatch queue: com.apple.main-thread
    Exception Type:  EXC_BAD_ACCESS (SIGSEGV)
    Exception Codes: EXC_I386_GPFLT
    Application Specific Information:
    objc_msgSend() selector name: retain
    Thread 0 Crashed:: Dispatch queue: com.apple.main-thread
    0   libobjc.A.dylib                         0x000000010e6a2710 objc_msgSend_vtable13 + 16
    1   com.apple.CoreFoundation                0x000000010e8fd1de +[__NSArrayI __new:::] + 174
    2   com.apple.CoreFoundation                0x000000010e8694d3 -[NSArray initWithObjects:] + 707
    3   com.apple.WebKit                        0x000000010e425035 -[WebHTMLView(WebPrivate) _setAsideSubviews] + 133
    4   com.apple.WebKit                        0x000000010e4251eb -[WebHTMLView drawRect:] + 363
    5   com.apple.Notes                         0x000000010dbdcc04 0x10dbc4000 + 101380
    6   com.apple.AppKit                        0x000000010f7f7064 -[NSView _drawRect:clip:] + 4217
    7   com.apple.AppKit                        0x000000010f7f56c1 -[NSView _recursiveDisplayAllDirtyWithLockFocus:visRect:] + 1656
    8   com.apple.WebKit                        0x000000010e424f5b -[WebHTMLView(WebPrivate) _recursiveDisplayAllDirtyWithLockFocus:visRect:] + 267
    9   com.apple.AppKit                        0x000000010f7f5ad9 -[NSView _recursiveDisplayAllDirtyWithLockFocus:visRect:] + 2704
    10  com.apple.AppKit                        0x000000010f7f5ad9 -[NSView _recursiveDisplayAllDirtyWithLockFocus:visRect:] + 2704
    11  com.apple.AppKit                        0x000000010f7f5ad9 -[NSView _recursiveDisplayAllDirtyWithLockFocus:visRect:] + 2704
    12  com.apple.AppKit                        0x000000010f7f5ad9 -[NSView _recursiveDisplayAllDirtyWithLockFocus:visRect:] + 2704
    13  com.apple.AppKit                        0x000000010f7f36f2 -[NSView _recursiveDisplayRectIfNeededIgnoringOpacity:isVisibleRect:rectIsVisibleRectFor View:topView:] + 817
    14  com.apple.AppKit                        0x000000010f7f4a44 -[NSView _recursiveDisplayRectIfNeededIgnoringOpacity:isVisibleRect:rectIsVisibleRectFor View:topView:] + 5763
    15  com.apple.AppKit                        0x000000010f7f4a44 -[NSView _recursiveDisplayRectIfNeededIgnoringOpacity:isVisibleRect:rectIsVisibleRectFor View:topView:] + 5763
    16  com.apple.AppKit                        0x000000010f7f4a44 -[NSView _recursiveDisplayRectIfNeededIgnoringOpacity:isVisibleRect:rectIsVisibleRectFor View:topView:] + 5763
    17  com.apple.AppKit                        0x000000010f7f4a44 -[NSView _recursiveDisplayRectIfNeededIgnoringOpacity:isVisibleRect:rectIsVisibleRectFor View:topView:] + 5763
    18  com.apple.AppKit                        0x000000010f7f4a44 -[NSView _recursiveDisplayRectIfNeededIgnoringOpacity:isVisibleRect:rectIsVisibleRectFor View:topView:] + 5763
    19  com.apple.AppKit                        0x000000010f7f4a44 -[NSView _recursiveDisplayRectIfNeededIgnoringOpacity:isVisibleRect:rectIsVisibleRectFor View:topView:] + 5763
    20  com.apple.AppKit                        0x000000010f7f3143 -[NSThemeFrame _recursiveDisplayRectIfNeededIgnoringOpacity:isVisibleRect:rectIsVisibleRectFor View:topView:] + 314
    21  com.apple.AppKit                        0x000000010f7eed6d -[NSView _displayRectIgnoringOpacity:isVisibleRect:rectIsVisibleRectForView:] + 4675
    22  com.apple.AppKit                        0x000000010f7b8c93 -[NSView displayIfNeeded] + 1830
    23  com.apple.AppKit                        0x000000010f731322 -[NSAnimationManager animationTimerFired:] + 2256
    24  com.apple.Foundation                    0x000000010ebad463 __NSFireTimer + 96
    25  com.apple.CoreFoundation                0x000000010e835804 __CFRUNLOOP_IS_CALLING_OUT_TO_A_TIMER_CALLBACK_FUNCTION__ + 20
    26  com.apple.CoreFoundation                0x000000010e83531d __CFRunLoopDoTimer + 557
    27  com.apple.CoreFoundation                0x000000010e81aad9 __CFRunLoopRun + 1529
    28  com.apple.CoreFoundation                0x000000010e81a0e2 CFRunLoopRunSpecific + 290
    29  com.apple.Foundation                    0x000000010ebd47ee -[NSRunLoop(NSRunLoop) runMode:beforeDate:] + 268
    30  com.apple.Notes                         0x000000010dbe9d3e 0x10dbc4000 + 154942
    31  com.apple.Notes                         0x000000010dbe9b55 0x10dbc4000 + 154453
    32  com.apple.Notes                         0x000000010dbe9528 0x10dbc4000 + 152872
    33  com.apple.Notes                         0x000000010dbe9591 0x10dbc4000 + 152977
    34  com.apple.Notes                         0x000000010dbdc9e8 0x10dbc4000 + 100840
    35  com.apple.AppKit                        0x000000010f7f7064 -[NSView _drawRect:clip:] + 4217
    36  com.apple.AppKit                        0x000000010f7f56c1 -[NSView _recursiveDisplayAllDirtyWithLockFocus:visRect:] + 1656
    37  com.apple.WebKit                        0x000000010e424f5b -[WebHTMLView(WebPrivate) _recursiveDisplayAllDirtyWithLockFocus:visRect:] + 267
    38  com.apple.AppKit                        0x000000010f7f5ad9 -[NSView _recursiveDisplayAllDirtyWithLockFocus:visRect:] + 2704
    39  com.apple.AppKit                        0x000000010f7f5ad9 -[NSView _recursiveDisplayAllDirtyWithLockFocus:visRect:] + 2704
    40  com.apple.AppKit                        0x000000010f7f5ad9 -[NSView _recursiveDisplayAllDirtyWithLockFocus:visRect:] + 2704
    41  com.apple.AppKit                        0x000000010f7f5ad9 -[NSView _recursiveDisplayAllDirtyWithLockFocus:visRect:] + 2704
    42  com.apple.AppKit                        0x000000010f7f36f2 -[NSView _recursiveDisplayRectIfNeededIgnoringOpacity:isVisibleRect:rectIsVisibleRectFor View:topView:] + 817
    43  com.apple.AppKit                        0x000000010f7f4a44 -[NSView _recursiveDisplayRectIfNeededIgnoringOpacity:isVisibleRect:rectIsVisibleRectFor View:topView:] + 5763
    44  com.apple.AppKit                        0x000000010f7f4a44 -[NSView _recursiveDisplayRectIfNeededIgnoringOpacity:isVisibleRect:rectIsVisibleRectFor View:topView:] + 5763
    45  com.apple.AppKit                        0x000000010f7f4a44 -[NSView _recursiveDisplayRectIfNeededIgnoringOpacity:isVisibleRect:rectIsVisibleRectFor View:topView:] + 5763
    46  com.apple.AppKit                        0x000000010f7f4a44 -[NSView _recursiveDisplayRectIfNeededIgnoringOpacity:isVisibleRect:rectIsVisibleRectFor View:topView:] + 5763
    47  com.apple.AppKit                        0x000000010f7f4a44 -[NSView _recursiveDisplayRectIfNeededIgnoringOpacity:isVisibleRect:rectIsVisibleRectFor View:topView:] + 5763
    48  com.apple.AppKit                        0x000000010f7f4a44 -[NSView _recursiveDisplayRectIfNeededIgnoringOpacity:isVisibleRect:rectIsVisibleRectFor View:topView:] + 5763
    49  com.apple.AppKit                        0x000000010f7f3143 -[NSThemeFrame _recursiveDisplayRectIfNeededIgnoringOpacity:isVisibleRect:rectIsVisibleRectFor View:topView:] + 314
    50  com.apple.AppKit                        0x000000010f7eed6d -[NSView _displayRectIgnoringOpacity:isVisibleRect:rectIsVisibleRectForView:] + 4675
    51  com.apple.AppKit                        0x000000010f7b8c93 -[NSView displayIfNeeded] + 1830
    52  com.apple.AppKit                        0x000000010f7b81cc _handleWindowNeedsDisplayOrLayoutOrUpdateConstraints + 738
    53  com.apple.AppKit                        0x000000010fd83901 __83-[NSWindow _postWindowNeedsDisplayOrLayoutOrUpdateConstraintsUnlessPostingDisabled]_block_ invoke_01208 + 46
    54  com.apple.CoreFoundation                0x000000010e83f417 __CFRUNLOOP_IS_CALLING_OUT_TO_AN_OBSERVER_CALLBACK_FUNCTION__ + 23
    55  com.apple.CoreFoundation                0x000000010e83f381 __CFRunLoopDoObservers + 369
    56  com.apple.CoreFoundation                0x000000010e81a7b8 __CFRunLoopRun + 728
    57  com.apple.CoreFoundation                0x000000010e81a0e2 CFRunLoopRunSpecific + 290
    58  com.apple.HIToolbox                     0x00000001113ceeb4 RunCurrentEventLoopInMode + 209
    59  com.apple.HIToolbox                     0x00000001113ceb94 ReceiveNextEventCommon + 166
    60  com.apple.HIToolbox                     0x00000001113ceae3 BlockUntilNextEventMatchingListInMode + 62
    61  com.apple.AppKit                        0x000000010f7b5533 _DPSNextEvent + 685
    62  com.apple.AppKit                        0x000000010f7b4df2 -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 128
    63  com.apple.AppKit                        0x000000010f7ac1a3 -[NSApplication run] + 517
    64  com.apple.AppKit                        0x000000010f750bd6 NSApplicationMain + 869
    65  libdyld.dylib                           0x0000000110a177e1 start + 1
    Thread 1:: Dispatch queue: com.apple.libdispatch-manager
    0   libsystem_kernel.dylib                  0x0000000110bedd16 kevent + 10
    1   libdispatch.dylib                       0x00000001109e0dea _dispatch_mgr_invoke + 883
    2   libdispatch.dylib                       0x00000001109e09ee _dispatch_mgr_thread + 54
    Thread 2:: Dispatch queue: com.apple.root.default-overcommit-priority
    0   libsystem_kernel.dylib                  0x0000000110bed0fa __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x0000000110a7b023 _pthread_cond_wait + 927
    2   com.apple.Foundation                    0x000000010eb6f589 -[__NSOperationInternal waitUntilFinishedOrTimeout:] + 227
    3   com.apple.IMAP                          0x000000010dd7b328 -[IMAPClientOperationQueue waitUntilOperationIsFinished:] + 167
    4   com.apple.IMAP                          0x000000010dd9480e -[IMAPGateway waitUntilClientOperationIsFinished:] + 168
    5   com.apple.IMAP                          0x000000010dd94756 -[IMAPGateway addClientOperation:toQueueAndWaitUntilFinished:] + 411
    6   com.apple.IMAP                          0x000000010dd84dc4 -[IMAPConnection separatorChar] + 116
    7   com.apple.IMAP                          0x000000010dd839e8 -[IMAPConnection _authenticateWithAuthenticator:] + 197
    8   com.apple.CoreMessage                   0x000000010dc5c295 -[Connection authenticate] + 598
    9   com.apple.IMAP                          0x000000010dd83830 -[IMAPConnection authenticate] + 66
    10  com.apple.Notes.framework               0x000000010df31cc7 -[NFIMAPAccountProxy connectAndAuthenticate:] + 963
    11  com.apple.Notes.framework               0x000000010df350e5 -[NFIMAPAccountProxy _recoverFromConnectionlessState] + 115
    12  com.apple.Notes.framework               0x000000010df34c8b -[NFIMAPAccountProxy checkOutGatewayForFolder:highPriority:needsCheckIn:] + 403
    13  com.apple.Notes.framework               0x000000010df3c891 -[NFIMAPFolderProxy synchronizeWithServer] + 318
    14  com.apple.Foundation                    0x000000010ebf29cf -[NSBlockOperation main] + 124
    15  com.apple.Foundation                    0x000000010ebc8926 -[__NSOperationInternal start] + 684
    16  com.apple.Foundation                    0x000000010ebd00f1 __block_global_6 + 129
    17  libdispatch.dylib                       0x00000001109e1f01 _dispatch_call_block_and_release + 15
    18  libdispatch.dylib                       0x00000001109de0b6 _dispatch_client_callout + 8
    19  libdispatch.dylib                       0x00000001109df1fa _dispatch_worker_thread2 + 304
    20  libsystem_c.dylib                       0x0000000110a78d0b _pthread_wqthread + 404
    21  libsystem_c.dylib                       0x0000000110a631d1 start_wqthread + 13
    Thread 3:
    0   libsystem_kernel.dylib                  0x0000000110bed6d6 __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x0000000110a78f4c _pthread_workq_return + 25
    2   libsystem_c.dylib                       0x0000000110a78d13 _pthread_wqthread + 412
    3   libsystem_c.dylib                       0x0000000110a631d1 start_wqthread + 13
    Thread 4:
    0   libsystem_kernel.dylib                  0x0000000110bed6d6 __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x0000000110a78f4c _pthread_workq_return + 25
    2   libsystem_c.dylib                       0x0000000110a78d13 _pthread_wqthread + 412
    3   libsystem_c.dylib                       0x0000000110a631d1 start_wqthread + 13
    Thread 5:
    0   libsystem_kernel.dylib                  0x0000000110bed6d6 __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x0000000110a78f4c _pthread_workq_return + 25
    2   libsystem_c.dylib                       0x0000000110a78d13 _pthread_wqthread + 412
    3   libsystem_c.dylib                       0x0000000110a631d1 start_wqthread + 13
    Thread 6:: Dispatch queue: com.apple.root.default-overcommit-priority
    0   libsystem_kernel.dylib                  0x0000000110bed0fa __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x0000000110a7b023 _pthread_cond_wait + 927
    2   com.apple.Foundation                    0x000000010eb6f589 -[__NSOperationInternal waitUntilFinishedOrTimeout:] + 227
    3   com.apple.IMAP                          0x000000010dd7b328 -[IMAPClientOperationQueue waitUntilOperationIsFinished:] + 167
    4   com.apple.IMAP                          0x000000010dd9480e -[IMAPGateway waitUntilClientOperationIsFinished:] + 168
    5   com.apple.IMAP                          0x000000010dd94756 -[IMAPGateway addClientOperation:toQueueAndWaitUntilFinished:] + 411
    6   com.apple.IMAP                          0x000000010dd83039 -[IMAPConnection _fetchCapabilitiesIfNeeded] + 262
    7   com.apple.IMAP                          0x000000010dd82c30 -[IMAPConnection capabilities] + 33
    8   com.apple.IMAP                          0x000000010dd839d0 -[IMAPConnection _authenticateWithAuthenticator:] + 173
    9   com.apple.CoreMessage                   0x000000010dc5c295 -[Connection authenticate] + 598
    10  com.apple.IMAP                          0x000000010dd83830 -[IMAPConnection authenticate] + 66
    11  com.apple.Notes.framework               0x000000010df31cc7 -[NFIMAPAccountProxy connectAndAuthenticate:] + 963
    12  com.apple.Notes.framework               0x000000010df350e5 -[NFIMAPAccountProxy _recoverFromConnectionlessState] + 115
    13  com.apple.Notes.framework               0x000000010df34c8b -[NFIMAPAccountProxy checkOutGatewayForFolder:highPriority:needsCheckIn:] + 403
    14  com.apple.Notes.framework               0x000000010df3c891 -[NFIMAPFolderProxy synchronizeWithServer] + 318
    15  com.apple.Foundation                    0x000000010ebf29cf -[NSBlockOperation main] + 124
    16  com.apple.Foundation                    0x000000010ebc8926 -[__NSOperationInternal start] + 684
    17  com.apple.Foundation                    0x000000010ebd00f1 __block_global_6 + 129
    18  libdispatch.dylib                       0x00000001109e1f01 _dispatch_call_block_and_release + 15
    19  libdispatch.dylib                       0x00000001109de0b6 _dispatch_client_callout + 8
    20  libdispatch.dylib                       0x00000001109df1fa _dispatch_worker_thread2 + 304
    21  libsystem_c.dylib                       0x0000000110a78d0b _pthread_wqthread + 404
    22  libsystem_c.dylib                       0x0000000110a631d1 start_wqthread + 13
    Thread 7:
    0   libsystem_kernel.dylib                  0x0000000110beb686 mach_msg_trap + 10
    1   libsystem_kernel.dylib                  0x0000000110beac42 mach_msg + 70
    2   com.apple.CoreFoundation                0x000000010e815233 __CFRunLoopServiceMachPort + 195
    3   com.apple.CoreFoundation                0x000000010e81a916 __CFRunLoopRun + 1078
    4   com.apple.CoreFoundation                0x000000010e81a0e2 CFRunLoopRunSpecific + 290
    5   com.apple.Foundation                    0x000000010ebd47ee -[NSRunLoop(NSRunLoop) runMode:beforeDate:] + 268
    6   com.apple.Foundation                    0x000000010eb6d1aa -[NSRunLoop(NSRunLoop) run] + 74
    7   com.apple.CoreMessage                   0x000000010dc40d57 +[_NSSocket _runIOThread] + 77
    8   com.apple.Foundation                    0x000000010ebcf562 __NSThread__main__ + 1345
    9   libsystem_c.dylib                       0x0000000110a767a2 _pthread_start + 327
    10  libsystem_c.dylib                       0x0000000110a631e1 thread_start + 13
    Thread 8:: Dispatch queue: com.apple.root.default-overcommit-priority
    0   libsystem_kernel.dylib                  0x0000000110beb686 mach_msg_trap + 10
    1   libsystem_kernel.dylib                  0x0000000110beac42 mach_msg + 70
    2   com.apple.CoreFoundation                0x000000010e815233 __CFRunLoopServiceMachPort + 195
    3   com.apple.CoreFoundation                0x000000010e81a916 __CFRunLoopRun + 1078
    4   com.apple.CoreFoundation                0x000000010e81a0e2 CFRunLoopRunSpecific + 290
    5   com.apple.CoreMessage                   0x000000010dc400e9 _handleRequestWithTimeout + 1527
    6   com.apple.CoreMessage                   0x000000010dc428cb -[_NSSocket readBytes:length:error:] + 161
    7   com.apple.CoreMessage                   0x000000010dc5ca7b -[Connection _readBytesFromSocketIntoBuffer:amount:requireAllBytes:error:] + 76
    8   com.apple.CoreMessage                   0x000000010dc5c961 -[Connection _fillBuffer:] + 764
    9   com.apple.CoreMessage                   0x000000010dc5c4f3 -[Connection _readLineIntoData:error:] + 202
    10  com.apple.IMAP                          0x000000010dd82486 -[IMAPConnection _readLineIntoData:error:] + 53
    11  com.apple.IMAP                          0x000000010dd88e14 -[IMAPConnection(MFPrivate) _readDataOfLength:intoData:error:] + 112
    12  com.apple.IMAP                          0x000000010ddab428 -[IMAPResponse initWithConnection:error:] + 144
    13  com.apple.IMAP                          0x000000010dd8257a -[IMAPConnection _copyNextServerResponse:] + 55
    14  com.apple.IMAP                          0x000000010dd827eb -[IMAPConnection _copyNextTaggedOrContinuationResponseForCommand:exists:] + 551
    15  com.apple.IMAP                          0x000000010dd87a87 -[IMAPConnection _responseFromSendingOperation:] + 863
    16  com.apple.IMAP                          0x000000010dd84f8f -[IMAPConnection executeListOrLSub:] + 215
    17  com.apple.IMAP                          0x000000010dd765ae -[IMAPClientListOperation executeOnConnection:] + 26
    18  com.apple.IMAP                          0x000000010dd819f5 -[IMAPConnection prepareAndExecuteOperation:outWrongState:] + 1247
    19  com.apple.IMAP                          0x000000010dd94501 -[IMAPGateway _allowClientOperationThrough:] + 1237
    20  com.apple.IMAP                          0x000000010dd93fd4 -[IMAPGateway allowClientOperationThrough:] + 369
    21  com.apple.IMAP                          0x000000010dd78ae3 -[IMAPClientOperation main] + 84
    22  com.apple.Foundation                    0x000000010ebc8926 -[__NSOperationInternal start] + 684
    23  com.apple.Foundation                    0x000000010ebd00f1 __block_global_6 + 129
    24  libdispatch.dylib                       0x00000001109e1f01 _dispatch_call_block_and_release + 15
    25  libdispatch.dylib                       0x00000001109de0b6 _dispatch_client_callout + 8
    26  libdispatch.dylib                       0x00000001109df1fa _dispatch_worker_thread2 + 304
    27  libsystem_c.dylib                       0x0000000110a78d0b _pthread_wqthread + 404
    28  libsystem_c.dylib                       0x0000000110a631d1 start_wqthread + 13
    Thread 9:
    0   libsystem_kernel.dylib                  0x0000000110bed6d6 __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x0000000110a78f4c _pthread_workq_return + 25
    2   libsystem_c.dylib                       0x0000000110a78d13 _pthread_wqthread + 412
    3   libsystem_c.dylib                       0x0000000110a631d1 start_wqthread + 13
    Thread 10:
    0   libsystem_kernel.dylib                  0x0000000110bed6d6 __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x0000000110a78f4c _pthread_workq_return + 25
    2   libsystem_c.dylib                       0x0000000110a78d13 _pthread_wqthread + 412
    3   libsystem_c.dylib                       0x0000000110a631d1 start_wqthread + 13
    Thread 11:: com.apple.NSURLConnectionLoader
    0   libsystem_kernel.dylib                  0x0000000110bed0fa __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x0000000110a7afe9 _pthread_cond_wait + 869
    2   com.apple.Foundation                    0x000000010eb70453 -[__NSOperationInternal waitUntilFinished] + 151
    3   com.apple.Notes                         0x000000010dbc9cf0 0x10dbc4000 + 23792
    4   com.apple.Foundation                    0x000000010ebf29cf -[NSBlockOperation main] + 124
    5   com.apple.Foundation                    0x000000010ebc8926 -[__NSOperationInternal start] + 684
    6   com.apple.Foundation                    0x000000010ec1c2a7 -[_NSCFURLProtocolBridgeWithTrampoline processEventQ] + 279
    7   com.apple.Foundation                    0x000000010ec1c8b8 -[_NSCFURLProtocolBridgeWithTrampoline pushEvent:from:] + 180
    8   com.apple.Foundation                    0x000000010ec1d0aa -[_NSCFURLProtocolBridge start] + 98
    9   com.apple.Foundation                    0x000000010ec1e09c _bridger + 65
    10  com.apple.CFNetwork                     0x0000000112384376 URLProtocol_Classic::_protocolInterface_startLoad(_CFCachedURLResponse const*) + 74
    11  com.apple.CFNetwork                     0x000000011232b589 ___private_ScheduleOriginLoad_block_invoke_0108 + 157
    12  com.apple.CFNetwork                     0x000000011232b4ba __withExistingProtocolAsync_block_invoke_0 + 28
    13  com.apple.CFNetwork                     0x00000001123caf3a __block_global_1 + 28
    14  com.apple.CoreFoundation                0x000000010e816154 CFArrayApplyFunction + 68
    15  com.apple.CFNetwork                     0x000000011232b2b4 RunloopBlockContext::perform() + 124
    16  com.apple.CFNetwork                     0x000000011232b18b MultiplexerSource::perform() + 221
    17  com.apple.CoreFoundation                0x000000010e7f7b31 __CFRUNLOOP_IS_CALLING_OUT_TO_A_SOURCE0_PERFORM_FUNCTION__ + 17
    18  com.apple.CoreFoundation                0x000000010e7f7455 __CFRunLoopDoSources0 + 245
    19  com.apple.CoreFoundation                0x000000010e81a7f5 __CFRunLoopRun + 789
    20  com.apple.CoreFoundation                0x000000010e81a0e2 CFRunLoopRunSpecific + 290
    21  com.apple.Foundation                    0x000000010eb71546 +[NSURLConnection(Loader) _resourceLoadLoop:] + 356
    22  com.apple.Foundation                    0x000000010ebcf562 __NSThread__main__ + 1345
    23  libsystem_c.dylib                       0x0000000110a767a2 _pthread_start + 327
    24  libsystem_c.dylib                       0x0000000110a631e1 thread_start + 13
    Thread 12:: com.apple.CFSocket.private
    0   libsystem_kernel.dylib                  0x0000000110bed322 __select + 10
    1   com.apple.CoreFoundation                0x000000010e859f46 __CFSocketManager + 1302
    2   libsystem_c.dylib                       0x0000000110a767a2 _pthread_start + 327
    3   libsystem_c.dylib                       0x0000000110a631e1 thread_start + 13
    Thread 13:: JavaScriptCore::BlockFree
    0   libsystem_kernel.dylib                  0x0000000110bed0fa __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x0000000110a7afe9 _pthread_cond_wait + 869
    2   com.apple.JavaScriptCore                0x00000001173cfb66 ***::ThreadCondition::timedWait(***::Mutex&, double) + 118
    3   com.apple.JavaScriptCore                0x00000001175f2bfa JSC::BlockAllocator::blockFreeingThreadMain() + 90
    4   com.apple.JavaScriptCore                0x000000011760825f ***::wtfThreadEntryPoint(void*) + 15
    5   libsystem_c.dylib                       0x0000000110a767a2 _pthread_start + 327
    6   libsystem_c.dylib                       0x0000000110a631e1 thread_start + 13
    Thread 14:: JavaScriptCore::Marking
    0   libsystem_kernel.dylib                  0x0000000110bed0fa __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x0000000110a7afe9 _pthread_cond_wait + 869
    2   com.apple.JavaScriptCore                0x00000001175559d4 JSC::SlotVisitor::drainFromShared(JSC::SlotVisitor::SharedDrainMode) + 212
    3   com.apple.JavaScriptCore                0x00000001175558b6 JSC::MarkStackThreadSharedData::markingThreadMain() + 214
    4   com.apple.JavaScriptCore                0x000000011760825f ***::wtfThreadEntryPoint(void*) + 15
    5   libsystem_c.dylib                       0x0000000110a767a2 _pthread_start + 327
    6   libsystem_c.dylib                       0x0000000110a631e1 thread_start + 13
    Thread 15:: JavaScriptCore::Marking
    0   libsystem_kernel.dylib                  0x0000000110bed0fa __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x0000000110a7afe9 _pthread_cond_wait + 869
    2   com.apple.JavaScriptCore                0x00000001175559d4 JSC::SlotVisitor::drainFromShared(JSC::SlotVisitor::SharedDrainMode) + 212
    3   com.apple.JavaScriptCore                0x00000001175558b6 JSC::MarkStackThreadSharedData::markingThreadMain() + 214
    4   com.apple.JavaScriptCore                0x000000011760825f ***::wtfThreadEntryPoint(void*) + 15
    5   libsystem_c.dylib                       0x0000000110a767a2 _pthread_start + 327
    6   libsystem_c.dylib                       0x0000000110a631e1 thread_start + 13
    Thread 16:: JavaScriptCore::Marking
    0   libsystem_kernel.dylib                  0x0000000110bed0fa __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x0000000110a7afe9 _pthread_cond_wait + 869
    2   com.apple.JavaScriptCore                0x00000001175559d4 JSC::SlotVisitor::drainFromShared(JSC::SlotVisitor::SharedDrainMode) + 212
    3   com.apple.JavaScriptCore                0x00000001175558b6 JSC::MarkStackThreadSharedData::markingThreadMain() + 214
    4   com.apple.JavaScriptCore                0x000000011760825f ***::wtfThreadEntryPoint(void*) + 15
    5   libsystem_c.dylib                       0x0000000110a767a2 _pthread_start + 327
    6   libsystem_c.dylib                       0x0000000110a631e1 thread_start + 13
    Thread 17:: com.apple.CoreAnimation.render-server
    0   libsystem_kernel.dylib                  0x0000000110beb686 mach_msg_trap + 10
    1   libsystem_kernel.dylib                  0x0000000110beac42 mach_msg + 70
    2   com.apple.QuartzCore                    0x000000010f17f17b CA::Render::Server::server_thread(void*) + 403
    3   com.apple.QuartzCore                    0x000000010f203dc6 thread_fun + 25
    4   libsystem_c.dylib                       0x0000000110a767a2 _pthread_start + 327
    5   libsystem_c.dylib                       0x0000000110a631e1 thread_start + 13
    Thread 18:: Dispatch queue: com.apple.root.default-overcommit-priority
    0   libsystem_kernel.dylib                  0x0000000110beb686 mach_msg_trap + 10
    1   libsystem_kernel.dylib                  0x0000000110beac42 mach_msg + 70
    2   com.apple.CoreFoundation                0x000000010e815233 __CFRunLoopServiceMachPort + 195
    3   com.apple.CoreFoundation                0x000000010e81a916 __CFRunLoopRun + 1078
    4   com.apple.CoreFoundation                0x000000010e81a0e2 CFRunLoopRunSpecific + 290
    5   com.apple.CoreMessage                   0x000000010dc400e9 _handleRequestWithTimeout + 1527
    6   com.apple.CoreMessage                   0x000000010dc428cb -[_NSSocket readBytes:length:error:] + 161
    7   com.apple.CoreMessage                   0x000000010dc5ca7b -[Connection _readBytesFromSocketIntoBuffer:amount:requireAllBytes:error:] + 76
    8   com.apple.CoreMessage                   0x000000010dc5c961 -[Connection _fillBuffer:] + 764
    9   com.apple.CoreMessage                   0x000000010dc5c4f3 -[Connection _readLineIntoData:error:] + 202
    10  com.apple.IMAP                          0x000000010dd82486 -[IMAPConnection _readLineIntoData:error:] + 53
    11  com.apple.IMAP                          0x000000010dd88e14 -[IMAPConnection(MFPrivate) _readDataOfLength:intoData:error:] + 112
    12  com.apple.IMAP                          0x000000010ddab428 -[IMAPResponse initWithConnection:error:] + 144
    13  com.apple.IMAP                          0x000000010dd8257a -[IMAPConnection _copyNextServerResponse:] + 55
    14  com.apple.IMAP                          0x000000010dd827eb -[IMAPConnection _copyNextTaggedOrContinuationResponseForCommand:exists:] + 551
    15  com.apple.IMAP                          0x000000010dd87a87 -[IMAPConnection _responseFromSendingOperation:] + 863
    16  com.apple.IMAP                          0x000000010dd8310b -[IMAPConnection executeCapability:] + 42
    17  com.apple.IMAP                          0x000000010dd79bc8 -[IMAPClientCapabilityOperation executeOnConnection:] + 26
    18  com.apple.IMAP                          0x000000010dd819f5 -[IMAPConnection prepareAndExecuteOperation:outWrongState:] + 1247
    19  com.apple.IMAP                          0x000000010dd94501 -[IMAPGateway _allowClientOperationThrough:] + 1237
    20  com.apple.IMAP                          0x000000010dd93fd4 -[IMAPGateway allowClientOperationThrough:] + 369
    21  com.apple.IMAP                          0x000000010dd78ae3 -[IMAPClientOperation main] + 84
    22  com.apple.Foundation                    0x000000010ebc8926 -[__NSOperationInternal start] + 684
    23  com.apple.Foundation                    0x000000010ebd00f1 __block_global_6 + 129
    24  libdispatch.dylib                       0x00000001109e1f01 _dispatch_call_block_and_release + 15
    25  libdispatch.dylib                       0x00000001109de0b6 _dispatch_client_callout + 8
    26  libdispatch.dylib                       0x00000001109df1fa _dispatch_worker_thread2 + 304
    27  libsystem_c.dylib                       0x0000000110a78d0b _pthread_wqthread + 404
    28  libsystem_c.dylib                       0x0000000110a631d1 start_wqthread + 13
    Thread 19:
    0   libsystem_kernel.dylib                  0x0000000110bed6d6 __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x0000000110a78f4c _pthread_workq_return + 25
    2   libsystem_c.dylib                       0x0000000110a78d13 _pthread_wqthread + 412
    3   libsystem_c.dylib                       0x0000000110a631d1 start_wqthread + 13
    Thread 0 crashed with X86 Thread State (64-bit):
      rax: 0x3000000000000000  rbx: 0x00007f7ffe8b7390  rcx: 0x3000000000000000  rdx: 0x000000010ea1a180
      rdi: 0x00007f7ffd6b21d0  rsi: 0x000000010e9e5640  rbp: 0x00007fff52031600  rsp: 0x00007fff520315b8
       r8: 0x000000011aebaa00   r9: 0x000000010e9ff4d0  r10: 0x00007f7ffbc19d30  r11: 0x00007f7ffe8b7380
      r12: 0x0000000000000001  r13: 0x00007fff52031610  r14: 0x000000010ea14110  r15: 0x00007f7ffd6b21d0
      rip: 0x000000010e6a2710  rfl: 0x0000000000010246  cr2: 0x00007f7ffe8eb0af
    Logical CPU: 0
    Binary Images:
           0x10dbc4000 -        0x10dc07fff  com.apple.Notes (1.5 - 107) <69EAB705-A00B-3584-91C6-F532B94806F9> /Applications/Notes.app/Contents/MacOS/Notes
           0x10dc2d000 -        0x10dc2efff  libDiagnosticMessagesClient.dylib (8) <8548E0DC-0D2F-30B6-B045-FE8A038E76D8> /usr/lib/libDiagnosticMessagesClient.dylib
           0x10dc3a000 -        0x10dc3afff  com.apple.Cocoa (6.7 - 19) <3CFC90D2-2BE9-3E5C-BFDB-5E161A2C2B29> /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
           0x10dc3e000 -        0x10dcf6fff  com.apple.CoreMessage (6.5 - 1508) <E05A89F9-46AB-310C-B147-8B1E89C5A565> /System/Library/PrivateFrameworks/CoreMessage.framework/Versions/A/CoreMessage
           0x10dd71000 -        0x10ddd0fff  com.apple.IMAP (6.5 - 1508) <42C96BC0-5E8B-38CC-BA03-BE32A7115521> /System/Library/PrivateFrameworks/IMAP.framework/Versions/A/IMAP
           0x10de10000 -        0x10de4afff  com.apple.framework.internetaccounts (2.1 - 210) <546769AA-C561-3C17-8E8E-4E65A700E2F1> /System/Library/PrivateFrameworks/InternetAccounts.framework/Versions/A/Interne tAccounts
           0x10de7f000 -        0x10deedff7  com.apple.framework.IOKit (2.0.1 - 755.24.1) <04BFB138-8AF4-310A-8E8C-045D8A239654> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
           0x10df1e000 -        0x10df60ff7  com.apple.Notes.framework (1.5 - 107) <A665344C-A62E-33EE-A0F3-66959EB4D12E> /System/Library/PrivateFrameworks/Notes.framework/Versions/A/Notes
           0x10df96000 -        0x10df96fff  com.apple.quartzframework (1.5 - 1.5) <6403C982-0D45-37EE-A0F0-0EF8BCFEF440> /System/Library/Frameworks/Quartz.framework/Versions/A/Quartz
           0x10df99000 -        0x10e26aff7  com.apple.security (7.0 - 55179.13) <F428E306-C407-3B55-BA82-E58755E8A76F> /System/Library/Frameworks/Security.framework/Versions/A/Security
           0x10e39e000 -        0x10e3d2fff  com.apple.securityinterface (6.0 - 55024.4) <FCF87CA0-CDC1-3F7C-AADA-2AC3FE4E97BD> /System/Library/Frameworks/SecurityInterface.framework/Versions/A/SecurityInter face
           0x10e403000 -        0x10e403fff  SleepServices (1.46) <A49C34BF-A696-3266-BCC1-D0788853D626> /System/Library/PrivateFrameworks/SleepServices.framework/Versions/A/SleepServi ces
           0x10e408000 -        0x10e40afff  apop.so (169) <2A1CAD32-5734-3D4E-868B-E773DCD192B5> /usr/lib/sasl2/apop.so
           0x10e40f000 -        0x10e59afff  com.apple.WebKit (8536 - 8536.30.1) <56B86FA1-ED74-3001-8942-1CA2281540EC> /System/Library/Frameworks/WebKit.framework/Versions/A/WebKit
           0x10e690000 -        0x10e691ff7  libSystem.B.dylib (169.3) <92475A81-385C-32B9-9D6D-38E4BAC90996> /usr/lib/libSystem.B.dylib
           0x10e69b000 -        0x10e7b392f  libobjc.A.dylib (532.2) <90D31928-F48D-3E37-874F-220A51FD9E37> /usr/lib/libobjc.A.dylib
           0x10e7d3000 -        0x10e7d5fff  libanonymous.2.so (166) <6417EA9E-4202-31DA-A086-B58F1E92C931> /usr/lib/sasl2/libanonymous.2.so
           0x10e7da000 -        0x10e7dafff  com.apple.CoreServices (57 - 57) <45F1466A-8264-3BB7-B0EC-E5E5BFBED143> /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
           0x10e7de000 -        0x10e7e0fff  login.so (166) <1F868238-FB26-3477-B31C-67DB400D6F68> /usr/lib/sasl2/login.so
           0x10e7e5000 -        0x10e9cfff7  com.apple.CoreFoundation (6.8 - 744.19) <0F7403CA-2CB8-3D0A-992B-679701DF27CA> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
           0x10eb33000 -        0x10eb33fff  com.apple.ApplicationServices (45 - 45) <5302CC85-D534-3FE5-9E56-CA16762177F6> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services
           0x10eb39000 -        0x10ee98fff  com.apple.Foundation (6.8 - 945.18) <1D7E58E6-FA3A-3CE8-AC85-B9D06B8C0AA0> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
           0x10f0bb000 -        0x10f0bdfff  libplain.2.so (166) <074D7604-3435-3E01-A86B-FF102001FC5B> /usr/lib/sasl2/libplain.2.so
           0x10f0c2000 -        0x10f270fff  com.apple.QuartzCore (1.8 - 304.3) <F450F2DE-2F24-3557-98B6-310E05DAC17F> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
           0x10f329000 -        0x10f55eff7  com.apple.CoreData (106.1 - 407.7) <24E0A6B4-9ECA-3D12-B26A-72B9DCF09768> /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
           0x10f660000 -        0x11028dfff  com.apple.AppKit (6.8 - 1187.39) <199962F0-B06B-3666-8FD5-5C90374BA16A> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
           0x110982000 -        0x110984fff  pwauxprop.so (387.2) <F29F2067-8A39-3BDC-B1CA-9FC7C3470675> /usr/lib/sasl2/pwauxprop.so
           0x110989000 -        0x11098efff  libcache.dylib (57) <65187C6E-3FBF-3EB8-A1AA-389445E2984D> /usr/lib/system/libcache.dylib
           0x110993000 -        0x110995fff  smb_nt.so (169) <757409B3-32F6-3FA1-97A4-92FEEF9FD624> /usr/lib/sasl2/smb_nt.so
           0x11099a000 -        0x1109a8fff  libcommonCrypto.dylib (60027) <BAAFE0C9-BB86-3CA7-88C0-E3CBA98DA06F> /usr/lib/system/libcommonCrypto.dylib
           0x1109b5000 -        0x1109b5ff7  com.apple.SafariServices.framework (8536 - 8536.30.1) <2EB5365E-7D56-3283-89BB-AF6ED10F6D73> /System/Library/PrivateFrameworks/SafariServices.framework/Versions/A/SafariSer vices
           0x1109bb000 -        0x1109c0fff  libcompiler_rt.dylib (30) <08F8731D-5961-39F1-AD00-4590321D24A9> /usr/lib/system/libcompiler_rt.dylib
           0x1109c8000 -        0x1109cffff  libcopyfile.dylib (89) <876573D0-E907-3566-A108-577EAD1B6182> /usr/lib/system/libcopyfile.dylib
           0x1109d6000 -        0x1109d6fff  com.apple.SafariDAVNotifier (1.1.1 - 1) <89F59707-91A2-387B-9415-ABD5D92D1776> /System/Library/PrivateFrameworks/BookmarkDAV.framework/Versions/A/Frameworks/S afariDAVNotifier.framework/Versions/A/SafariDAVNotifier
           0x1109dc000 -        0x1109f1ff7  libdispatch.dylib (228.23) <D26996BF-FC57-39EB-8829-F63585561E09> /usr/lib/system/libdispatch.dylib
           0x110a0a000 -        0x110a0bff7  libdnsinfo.dylib (453.19) <14202FFB-C3CA-3FCC-94B0-14611BF8692D> /usr/lib/system/libdnsinfo.dylib
           0x110a15000 -        0x110a18ff7  libdyld.dylib (210.2.3) <F59367C9-C110-382B-A695-9035A6DD387E> /usr/lib/system/libdyld.dylib
           0x110a1f000 -        0x110a1ffff  libkeymgr.dylib (25) <CC9E3394-BE16-397F-926B-E579B60EE429> /usr/lib/system/libkeymgr.dylib
           0x110a25000 -        0x110a2dfff  liblaunch.dylib (442.26.2) <2F71CAF8-6524-329E-AC56-C506658B4C0C> /usr/lib/system/liblaunch.dylib
           0x110a37000 -        0x110a3dfff  libmacho.dylib (829) <BF332AD9-E89F-387E-92A4-6E1AB74BD4D9> /usr/lib/system/libmacho.dylib
           0x110a45000 -        0x110a47fff  libquarantine.dylib (52.1) <143B726E-DF47-37A8-90AA-F059CFD1A2E4> /usr/lib/system/libquarantine.dylib
           0x110a4c000 -        0x110a4dfff  libodfde.dylib (18) <46A5538E-3719-3BE8-AD13-537930B4082C> /usr/lib/libodfde.dylib
           0x110a53000 -        0x110a54ff7  libremovefile.dylib (23.2) <6763BC8E-18B8-3AD9-8FFA-B43713A7264F> /usr/lib/system/libremovefile.dylib
           0x110a5a000 -        0x110a5bfff  libsystem_blocks.dylib (59) <D92DCBC3-541C-37BD-AADE-ACC75A0C59C8> /usr/lib/system/libsystem_blocks.dylib
           0x110a62000 -        0x110b2eff7  libsystem_c.dylib (825.26) <4C9EB006-FE1F-3F8F-8074-DFD94CF2CE7B> /usr/lib/system/libsystem_c.dylib
           0x110b77000 -        0x110b7fff7  libsystem_dnssd.dylib (379.38.1) <BDCB8566-0189-34C0-9634-35ABD3EFE25B> /usr/lib/system/libsystem_dnssd.dylib
           0x110b8b000 -        0x110bc1ff7  libsystem_info.dylib (406.17) <C9BA1024-043C-3BD5-908F-AF709E05DEE4> /usr/lib/system/libsystem_info.dylib
           0x110bdb000 -        0x110bf6ff7  libsystem_kernel.dylib (2050.24.15) <A9F97289-7985-31D6-AF89-151830684461> /usr/lib/system/libsystem_kernel.dylib
           0x110c09000 -        0x110c37ff7  libsystem_m.dylib (3022.6) <11B6081D-6212-3EAB-9975-BED6234BD6A5> /usr/lib/system/libsystem_m.dylib
           0x110c46000 -        0x110c54ff7  libsystem_network.dylib (77.10) <2AAA67A1-525E-38F0-8028-1D2B64716611> /usr/lib/system/libsystem_network.dylib
           0x110c66000 -        0x110c71fff  libsystem_notify.dylib (98.5) <C49275CC-835A-3207-AFBA-8C01374927B6> /usr/lib/system/libsystem_notify.dylib
           0x110c81000 -        0x110c82ff7  libsystem_sandbox.dylib (220.3) <B739DA63-B675-387A-AD84-412A651143C0> /usr/lib/system/libsystem_sandbox.dylib
           0x110c8d000 -        0x110c8fff7  libunc.dylib (25) <2FDC94A7-3039-3680-85F3-2164E63B464D> /usr/lib/system/libunc.dylib
           0x110c96000 -        0x110c9cff7  libunwind.dylib (35.1) <21703D36-2DAB-3D8B-8442-EAAB23C060D3> /usr/lib/system/libunwind.dylib
           0x110ca8000 -        0x110ccaff7  libxpc.dylib (140.43) <70BC645B-6952-3264-930C-C835010CCEF9> /usr/lib/system/libxpc.dylib
           0x110ce9000 -        0x110d38ff7  libcorecrypto.dylib (106.2) <CE0C29A3-C420-339B-ADAA-52F4683233CC> /usr/lib/system/libcorecrypto.dylib
           0x110d49000 -        0x110d95ff7  libauto.dylib (185.4) <AD5A4CE7-CB53-313C-9FAE-673303CC2D35> /usr/lib/libauto.dylib
           0x110db2000 -        0x110dd7ff7  libc++abi.dylib (26) <D86169F3-9F31-377A-9AF3-DB17142052E4> /usr/lib/libc++abi.dylib
           0x110e0a000 -        0x110e72ff7  libc++.1.dylib (65.1) <E5A0C88E-0837-3015-A987-F8C5A0D35DD6> /usr/lib/libc++.1.dylib
           0x110ecb000 -        0x110f0eff7  com.apple.RemoteViewServices (2.0 - 80.6) <5CFA361D-4853-3ACC-9EFC-A2AC1F43BA4B> /System/Library/PrivateFrameworks/RemoteViewServices.framework/Versions/A/Remot eViewServices
           0x110f46000 -        0x111098fff  com.apple.audio.toolbox.AudioToolbox (1.9 - 1.9) <62770C0F-5600-3EF9-A893-8A234663FFF5> /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
           0x111128000 -        0x111128ffd  com.apple.audio.units.AudioUnit (1.9 - 1.9) <EC55FB59-2443-3F08-9142-7BCC93C76E4E> /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
           0x111132000 -        0x11119fff7  com.apple.datadetectorscore (4.1 - 269.3) <5775F0DB-87D6-310D-8B03-E2AD729EFB28> /System/Library/PrivateFrameworks/DataDetectorsCore.framework/Versions/A/DataDe tectorsCore
           0x1111dc000 -        0x1112fcfff  com.apple.desktopservices (1.7.4 - 1.7.4) <ED3DA8C0-160F-3CDC-B537-BF2E766AB7C1> /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/Desk topServicesPriv
           0x11136f000 -        0x11169ffff  com.apple.HIToolbox (2.0 - 626.1) <656D08C2-9068-3532-ABDD-32EC5057CCB2> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox
           0x1117fa000 -        0x111804fff  com.apple.speech.recognition.framework (4.1.5 - 4.1.5) <5A4B532E-3428-3F0A-8032-B0AFFF72CA3D> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecogni tion.framework/Versions/A/SpeechRecognition
           0x11180e000 -        0x111810fff  com.apple.Notes.webplugin (1.5 - 107) <F7192C71-204F-312E-94F1-50E701287E91> /Applications/Notes.app/Contents/PlugIns/Notes.webplugin/Contents/MacOS/Notes
           0x111815000 -        0x111a15fff  libicucore.A.dylib (491.11.3) <5783D305-04E8-3D17-94F7-1CEAFA975240> /usr/lib/libicucore.A.dylib
           0x111abb000 -        0x111bb8ff7  libxml2.2.dylib (22.3) <7FD09F53-83DA-3ECD-8DD9-870E1A2F0427> /usr/lib/libxml2.2.dylib
           0x111bf1000 -        0x111c03ff7  libz.1.dylib (43) <2A1551E8-A272-3DE5-B692-955974FE1416> /usr/lib/libz.1.dylib
           0x111c09000 -        0x111c0aff7  ATSHI.dylib (341.1) <6852B534-7542-338A-903F-26615745901F> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/ATSHI.dylib
           0x111c0f000 -        0x111cd4ff7  com.apple.coreui (2.0 - 181.1) <7C4196D5-79E8-3557-963B-71F494DC9B04> /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
           0x111d4a000 -        0x111dadff7  com.apple.audio.CoreAudio (4.1.1 - 4.1.1) <9ACD3AED-6C04-3BBB-AB2A-FC253B16D093> /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
           0x111dd4000 -        0x111ddafff  com.apple.DiskArbitration (2.5.2 - 2.5.2) <C713A35A-360E-36CE-AC0A-25C86A3F50CA> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
           0x111de8000 -        0x111de9fff  liblangid.dylib (116) <864C409D-D56B-383E-9B44-A435A47F2346> /usr/lib/liblangid.dylib
           0x111def000 -        0x111e05fff  com.apple.MultitouchSupport.framework (235.29 - 235.29) <617EC8F1-BCE7-3553-86DD-F857866E1257> /System/Library/PrivateFrameworks/MultitouchSupport.framework/Versions/A/Multit ouchSupport
           0x111e15000 -        0x111e3cff7  com.apple.PerformanceAnalysis (1.16 - 16) <1BDA3662-18B7-3F38-94E5-9ACD477A7682> /System/Library/PrivateFrameworks/PerformanceAnalysis.framework/Versions/A/Perf ormanceAnalysis
           0x111e5f000 -        0x111e76fff  com.apple.GenerationalStorage (1.1 - 132.3) <FD4A84B3-13A8-3C60-A59E-25A361447A17> /System/Library/PrivateFrameworks/GenerationalStorage.framework/Versions/A/Gene rationalStorage
           0x111e87000 -        0x111e96fff  com.apple.opengl (1.8.9 - 1.8.9) <6FD163A7-16CC-3D1F-B4B5-B0FDC4ADBF79> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
           0x111ea0000 -        0x111f72ff7  com.apple.CoreText (260.0 - 275.16) <990F3C7D-EEF1-33C4-99D6-8E81C96ED3E3> /System/Library/Frameworks/CoreText.framework/Versions/A/CoreText
           0x111fd9000 -        0x1120f2fff  com.apple.ImageIO.framework (3.2.1 - 850) <C3FFCEEB-AA0C-314B-9E94-7005EE48A403> /System/Library/Frameworks/ImageIO.framework/Versions/A/ImageIO
           0x112151000 -        0x11222bfff  com.apple.backup.framework (1.4.3 - 1.4.3) <6B65C44C-7777-3331-AD9D-438D10AAC777> /System/Library/PrivateFrameworks/Backup.framework/Versions/A/Backup
           0x1122ae000 -        0x112423ff7  com.apple.CFNetwork (596.4.3 - 596.4.3) <A57B3308-2F08-3EC3-B4AC-39A3D9F0B9F7> /System/Library/Frameworks/CFNetwork.framework/Versions/A/CFNetwork
           0x1124e7000 -        0x112538ff7  com.apple.SystemConfiguration (1.12.2 - 1.12.2) <A4341BBD-A330-3A57-8891-E9C1A286A72D> /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfi guration
           0x11256d000 -        0x11258eff7  libCRFSuite.dylib (33) <B49DA255-A4D9-33AF-95AB-B319570CDF7B> /usr/lib/libCRFSuite.dylib
           0x11259e000 -        0x1125a2ff7  com.apple.TCC (1.0 - 1) <76A86876-2280-3849-8478-450E1A8C0E01> /System/Library/PrivateFrameworks/TCC.framework/Versions/A/TCC
           0x1125ac000 -        0x112615fff  libstdc++.6.dylib (56) <EAA2B53E-EADE-39CF-A0EF-FB9D4940672A> /usr/lib/libstdc++.6.dylib
           0x112681000 -        0x112694ff7  libbsm.0.dylib (32) <F497D3CE-40D9-3551-84B4-3D5E39600737> /usr/lib/libbsm.0.dylib
           0x1126a0000 -        0x11279dfff  libsqlite3.dylib (138.1) <ADE9CB98-D77D-300C-A32A-556B7440769F> /usr/lib/libsqlite3.dylib
           0x1127b8000 -        0x1127c7ff7  libxar.1.dylib (105) <B6A7C8AA-3E20-3A1D-A7BA-4FD0052FA508> /usr/lib/libxar.1.dylib
           0x1127d3000 -        0x1127d7fff  libpam.2.dylib (20) <C8F45864-5B58-3237-87E1-2C258A1D73B8> /usr/lib/libpam.2.dylib
           0x1127e1000 -        0x1127e1fff  libOpenScriptingUtil.dylib (148.3) <F8681222-0969-3B10-8BCE-C55A4B9C520C> /usr/lib/libOpenScriptingUtil.dylib
           0x1127e5000 -        0x1127f2fff  libbz2.1.0.dylib (29) <CE9785E8-B535-3504-B392-82F0064D9AF2> /usr/lib/libbz2.1.0.dylib
           0x1127fc000 -        0x112b13ff7  com.apple.CoreServices.CarbonCore (1037.6 - 1037.6) <1E567A52-677F-3168-979F-5FBB0818D52B> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore
           0x112b92000 -        0x112c13fff  com.apple.Metadata (10.7.0 - 707.11) <2DD25313-420D-351A-90F1-300E95C970CA> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadat a.framework/Versions/A/Metadata
           0x112c6d000 -        0x112d13ff7  com.apple.CoreServices.OSServices (557.6 - 557.6) <1BDB5456-0CE9-301C-99C1-8EFD0D2BFCCD> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServi ces.framework/Versions/A/OSServices
           0x112d7a000 -        0x112e07ff7  com.apple.SearchKit (1.4.0 - 1.4.0) <54A8069C-E497-3B07-BEA7-D3BC9DB5B649> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchK it.framework/Versions/A/SearchKit
           0x112e4e000 -        0x112eadfff  com.apple.AE (645.6 - 645.6) <44F403C1-660A-3543-AB9C-3902E02F936F> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.fram ework/Versions/A/AE
           0x112eda000 -        0x112f8bfff  com.apple.LaunchServices (539.9 - 539.9) <07FC6766-778E-3479-8F28-D2C9917E1DD1> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchS ervices.framework/Versions/A/LaunchServices
           0x112fe4000 -        0x113015ff7  com.apple.DictionaryServices (1.2 - 184.4) <2EC80C71-263E-3D63-B461-6351C876C50D> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Diction aryServices.framework/Versions/A/DictionaryServices
           0x11303b000 -        0x113042fff  com.apple.NetFS (5.0 - 4.0) <195D8EC9-72BB-3E04-A64D-E1A89B4850C1> /System/Library/Frameworks/NetFS.framework/Versions/A/NetFS
           0x113049000 -        0x113057ff7  libkxld.dylib (2050.24.15) <A619A9AC-09AF-3FF3-95BF-F07CC530EC31> /usr/lib/system/libkxld.dylib
           0x113061000 -        0x11306eff7  com.apple.NetAuth (4.0 - 4.0) <A4A21A2F-B26A-3DC9-95E4-DAFA43A4A2C3> /System/Library/PrivateFrameworks/NetAuth.framework/Versions/A/NetAuth
           0x113080000 -        0x113097fff  com.apple.CFOpenDirectory (10.8 - 151.10) <10F41DA4-AD54-3F52-B898-588D9A117171> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/Frameworks/CFOpen Directory.framework/Versions/A/CFOpenDirectory
           0x1130b3000 -        0x1130defff  libxslt.1.dylib (11.3) <441776B8-9130-3893-956F-39C85FFA644F> /usr/lib/libxslt.1.dylib
           0x1130ee000 -        0x113115fff  com.apple.framework.familycontrols (4.1 - 410) <50F5A52C-8FB6-300A-977D-5CFDE4D5796B> /System/Library/PrivateFrameworks/FamilyControls.framework/Versions/A/FamilyCon trols
           0x113136000 -        0x1131d4ff7  com.apple.ink.framework (10.8.2 - 150) <3D8D16A2-7E01-3EA1-B637-83A36D353308> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework /Versions/A/Ink
           0x113208000 -        0x113b984af  com.apple.CoreGraphics (1.600.0 - 332) <5AB32E51-9154-3733-B83B-A9A748652847> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/CoreGraphics
           0x113ca0000 -        0x113d20ff7  com.apple.ApplicationServices.ATS (332 - 341.1) <AFDC05E6-F842-33D9-9379-81DF26E510CA> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/ATS
           0x113d52000 -        0x113e0fff7  com.apple.ColorSync (4.8.0 - 4.8.0) <73BE495D-8985-3B88-A7D0-23DF0CB50304> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ColorSync.framework/Versions/A/ColorSync
           0x113e55000 -        0x113eabfff  com.apple.HIServices (1.20 - 417) <A1129272-FEC8-350B-BA26-5A97F23C413D> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ HIServices.framework/Versions/A/HIServices
           0x113ee1000 -        0x113ef4ff7  com.apple.LangAnalysis (1.7.0 - 1.7.0) <023D909C-3AFA-3438-88EB-05D0BDA5AFFE> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LangAnalysis.framework/Versions/A/LangAnalysis
           0x113f08000 -        0x113f62fff  com.apple.print.framework.PrintCore (8.3 - 387.2) <5BA0CBED-4D80-386A-9646-F835C9805B71> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ PrintCore.framework/Versions/A/PrintCore
           0x113f96000 -        0x113fd5ff7  com.apple.QD (3.42.1 - 285.1) <77A20C25-EBB5-341C-A05C-5D458B97AD5C> /System/Library/Frameworks/Ap

    Here goes:
    Hardware Information:
              MacBook Pro (Retina, 13-inch, Early 2013)
              MacBook Pro - model: MacBookPro10,2
              1 3 GHz Intel Core i7 CPU: 2 cores
              8 GB RAM
    Video Information:
              Intel HD Graphics 4000 - VRAM: 768 MB
    System Software:
              OS X 10.8.4 (12E55) - Uptime: 0 days 1:25:41
    Disk Information:
              APPLE SSD SM512E disk0 : (500.28 GB)
                        disk0s1 (disk0s1) <not mounted>: 209.7 MB
                        Macintosh HD (disk0s2) /: 499.42 GB (458.41 GB free)
                        Recovery HD (disk0s3) <not mounted>: 650 MB
    USB Information:
              Microsoft Microsoft® Nano Transceiver v2.0
              Apple Inc. Apple Internal Keyboard / Trackpad
              Apple Inc. BRCM20702 Hub
                        Apple Inc. Bluetooth USB Host Controller
              Apple Inc. FaceTime HD Camera (Built-in)
    FireWire Information:
    Thunderbolt Information:
              Apple Inc. thunderbolt_bus
    Kernel Extensions:
    Problem System Launch Daemons:
    Problem System Launch Agents:
    Launch Daemons:
              [loaded] com.adobe.fpsaud.plist
    Launch Agents:
    User Launch Agents:
    User Login Items:
              iTunesHelper
    3rd Party Preference Panes:
              Flash Player
              Java
    Internet Plug-ins:
              Flash Player.plugin
              FlashPlayer-10.6.plugin
              Flip4Mac WMV Plugin.plugin
              JavaAppletPlugin.plugin
              QuickTime Plugin.plugin
              Silverlight.plugin
              SlingPlayer.plugin
    User Internet Plug-ins:
    Bad Fonts:
              None
    Top Processes by CPU:
                   2%          WindowServer
                   1%          EtreCheck
                   1%          fontd
                   1%          Mail
                   0%          Safari
                   0%          ManagedClient
                   0%          WebProcess
                   0%          SystemUIServer
                   0%          System Events
                   0%          configd
    Top Processes by Memory:
              352 MB             Finder
              319 MB             WebProcess
              213 MB             Mail
              213 MB             Safari
              164 MB             WindowServer
              115 MB             Dock
              106 MB             Messages
              66 MB              mds
              57 MB              SystemUIServer
              49 MB              com.apple.dock.extra
    Virtual Memory Statistics
              3.96 GB            Free RAM
              2.18 GB            Active RAM
              256 MB             Inactive RAM
              1.60 GB            Wired RAM
              198 MB             Page-ins
              0 B                Page-outs

  • Mac Mail crashes every time I launch it

    Everything was working fine and now everytime I open Mac Mail I only have about ten seconds before it crashes.
    Below is the report that I get:
    Process:         Mail [1093]
    Path:            /Applications/Mail.app/Contents/MacOS/Mail
    Identifier:      com.apple.mail
    Version:         6.0 (1485)
    Build Info:      Mail-1485000000000000~3
    Code Type:       X86-64 (Native)
    Parent Process:  launchd [144]
    User ID:         501
    Date/Time:       2012-08-06 16:50:14.954 +0200
    OS Version:      Mac OS X 10.8 (12A269)
    Report Version:  10
    Interval Since Last Report:          601 sec
    Crashes Since Last Report:           6
    Per-App Interval Since Last Report:  117 sec
    Per-App Crashes Since Last Report:   6
    Anonymous UUID:                      D59B4C3B-F398-48CF-A2D0-6E1F9A100FD8
    Crashed Thread:  15  Dispatch queue: com.apple.root.default-priority
    Exception Type:  EXC_CRASH (SIGABRT)
    Exception Codes: 0x0000000000000000, 0x0000000000000000
    Application Specific Information:
    Assertion failed: (!contains_overlaps(set)), function remove_overlaps, file CMaps/cmap-cid-set.c, line 200.
    Thread 0:: Dispatch queue: com.apple.main-thread
    0   libsystem_kernel.dylib                  0x00007fff906f3686 mach_msg_trap + 10
    1   libsystem_kernel.dylib                  0x00007fff906f2c42 mach_msg + 70
    2   com.apple.CoreGraphics                  0x00007fff87f53cb6 _CGSGetWindowEventMask + 96
    3   com.apple.CoreGraphics                  0x00007fff87f53c3d CGSGetWindowEventMask + 189
    4   com.apple.AppKit                        0x00007fff8e3402cf _NSEnableMouseMovedEventsForWindow + 53
    5   com.apple.AppKit                        0x00007fff8e4be861 -[NSWindow(NSWindow_Scale) _updateMouseMovedState] + 107
    6   com.apple.AppKit                        0x00007fff8e4bdc33 -[NSView(NSInternal) _uninstallTrackingArea:] + 255
    7   com.apple.AppKit                        0x00007fff8e3bc51b -[NSView(NSInternal) _uninstallRemovedTrackingAreas] + 260
    8   com.apple.AppKit                        0x00007fff8e4bd6c8 -[NSView(NSInternal) _updateTrackingAreas] + 560
    9   com.apple.CoreFoundation                0x00007fff896890b6 __NSArrayEnumerate + 582
    10  com.apple.AppKit                        0x00007fff8e4bd960 -[NSView(NSInternal) _updateTrackingAreas] + 1224
    11  com.apple.CoreFoundation                0x00007fff896890b6 __NSArrayEnumerate + 582
    12  com.apple.AppKit                        0x00007fff8e4bd960 -[NSView(NSInternal) _updateTrackingAreas] + 1224
    13  com.apple.CoreFoundation                0x00007fff896890b6 __NSArrayEnumerate + 582
    14  com.apple.AppKit                        0x00007fff8e4bd960 -[NSView(NSInternal) _updateTrackingAreas] + 1224
    15  com.apple.CoreFoundation                0x00007fff896890b6 __NSArrayEnumerate + 582
    16  com.apple.AppKit                        0x00007fff8e4bd960 -[NSView(NSInternal) _updateTrackingAreas] + 1224
    17  com.apple.CoreFoundation                0x00007fff896890b6 __NSArrayEnumerate + 582
    18  com.apple.AppKit                        0x00007fff8e4bd960 -[NSView(NSInternal) _updateTrackingAreas] + 1224
    19  com.apple.CoreFoundation                0x00007fff896890b6 __NSArrayEnumerate + 582
    20  com.apple.AppKit                        0x00007fff8e4bd960 -[NSView(NSInternal) _updateTrackingAreas] + 1224
    21  com.apple.AppKit                        0x00007fff8e4be6bd -[NSScrollView _updateTrackingAreas] + 122
    22  com.apple.CoreFoundation                0x00007fff896890b6 __NSArrayEnumerate + 582
    23  com.apple.AppKit                        0x00007fff8e4bd960 -[NSView(NSInternal) _updateTrackingAreas] + 1224
    24  com.apple.CoreFoundation                0x00007fff896890b6 __NSArrayEnumerate + 582
    25  com.apple.AppKit                        0x00007fff8e4bd960 -[NSView(NSInternal) _updateTrackingAreas] + 1224
    26  com.apple.CoreFoundation                0x00007fff896890b6 __NSArrayEnumerate + 582
    27  com.apple.AppKit                        0x00007fff8e4bd960 -[NSView(NSInternal) _updateTrackingAreas] + 1224
    28  com.apple.CoreFoundation                0x00007fff896890b6 __NSArrayEnumerate + 582
    29  com.apple.AppKit                        0x00007fff8e4bd960 -[NSView(NSInternal) _updateTrackingAreas] + 1224
    30  com.apple.CoreFoundation                0x00007fff896890b6 __NSArrayEnumerate + 582
    31  com.apple.AppKit                        0x00007fff8e4bd960 -[NSView(NSInternal) _updateTrackingAreas] + 1224
    32  com.apple.CoreFoundation                0x00007fff896890b6 __NSArrayEnumerate + 582
    33  com.apple.AppKit                        0x00007fff8e4bd960 -[NSView(NSInternal) _updateTrackingAreas] + 1224
    34  com.apple.CoreFoundation                0x00007fff896890b6 __NSArrayEnumerate + 582
    35  com.apple.AppKit                        0x00007fff8e4bd960 -[NSView(NSInternal) _updateTrackingAreas] + 1224
    36  com.apple.AppKit                        0x00007fff8e4bd37c _handleInvalidCursorRectsNote + 863
    37  com.apple.AppKit                        0x00007fff8e9b7851 __35-[NSWindow _postInvalidCursorRects]_block_invoke_02794 + 46
    38  com.apple.CoreFoundation                0x00007fff896570c7 __CFRUNLOOP_IS_CALLING_OUT_TO_AN_OBSERVER_CALLBACK_FUNCTION__ + 23
    39  com.apple.CoreFoundation                0x00007fff89657031 __CFRunLoopDoObservers + 369
    40  com.apple.CoreFoundation                0x00007fff896324a8 __CFRunLoopRun + 728
    41  com.apple.CoreFoundation                0x00007fff89631dd2 CFRunLoopRunSpecific + 290
    42  com.apple.HIToolbox                     0x00007fff88ec4774 RunCurrentEventLoopInMode + 209
    43  com.apple.HIToolbox                     0x00007fff88ec4512 ReceiveNextEventCommon + 356
    44  com.apple.HIToolbox                     0x00007fff88ec43a3 BlockUntilNextEventMatchingListInMode + 62
    45  com.apple.AppKit                        0x00007fff8e3e2fa3 _DPSNextEvent + 685
    46  com.apple.AppKit                        0x00007fff8e3e2862 -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 128
    47  com.apple.AppKit                        0x00007fff8e3d9c03 -[NSApplication run] + 517
    48  com.apple.AppKit                        0x00007fff8e37e656 NSApplicationMain + 869
    49  libdyld.dylib                           0x00007fff89a377e1 start + 1
    Thread 1:: Dispatch queue: com.apple.libdispatch-manager
    0   libsystem_kernel.dylib                  0x00007fff906f5d16 kevent + 10
    1   libdispatch.dylib                       0x00007fff9068ae26 _dispatch_mgr_invoke + 883
    2   libdispatch.dylib                       0x00007fff9068aa2a _dispatch_mgr_thread + 54
    Thread 2:
    0   libsystem_kernel.dylib                  0x00007fff906f56d6 __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x00007fff92cc6f2c _pthread_workq_return + 25
    2   libsystem_c.dylib                       0x00007fff92cc6cf3 _pthread_wqthread + 412
    3   libsystem_c.dylib                       0x00007fff92cb11b1 start_wqthread + 13
    Thread 3:
    0   libsystem_kernel.dylib                  0x00007fff906f56d6 __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x00007fff92cc6f2c _pthread_workq_return + 25
    2   libsystem_c.dylib                       0x00007fff92cc6cf3 _pthread_wqthread + 412
    3   libsystem_c.dylib                       0x00007fff92cb11b1 start_wqthread + 13
    Thread 4:: Dispatch queue: com.apple.root.default-overcommit-priority
    0   libsystem_kernel.dylib                  0x00007fff906f3686 mach_msg_trap + 10
    1   libsystem_kernel.dylib                  0x00007fff906f2c42 mach_msg + 70
    2   com.apple.CoreFoundation                0x00007fff8962cf23 __CFRunLoopServiceMachPort + 195
    3   com.apple.CoreFoundation                0x00007fff89632606 __CFRunLoopRun + 1078
    4   com.apple.CoreFoundation                0x00007fff89631dd2 CFRunLoopRunSpecific + 290
    5   com.apple.CoreMessage                   0x00007fff8c769889 _handleRequestWithTimeout + 1527
    6   com.apple.CoreMessage                   0x00007fff8c76c06b -[_NSSocket readBytes:length:error:] + 161
    7   com.apple.CoreMessage                   0x00007fff8c78619f -[Connection _readBytesFromSocketIntoBuffer:amount:requireAllBytes:error:] + 76
    8   com.apple.CoreMessage                   0x00007fff8c786085 -[Connection _fillBuffer:] + 764
    9   com.apple.CoreMessage                   0x00007fff8c785c17 -[Connection _readLineIntoData:error:] + 202
    10  com.apple.IMAP                          0x00007fff8c541a86 -[IMAPConnection _readLineIntoData:error:] + 53
    11  com.apple.IMAP                          0x00007fff8c548414 -[IMAPConnection(MFPrivate) _readDataOfLength:intoData:error:] + 112
    12  com.apple.IMAP                          0x00007fff8c56a6f0 -[IMAPResponse initWithConnection:error:] + 144
    13  com.apple.IMAP                          0x00007fff8c541b7a -[IMAPConnection _copyNextServerResponse:] + 55
    14  com.apple.IMAP                          0x00007fff8c541deb -[IMAPConnection _copyNextTaggedOrContinuationResponseForCommand:exists:] + 551
    15  com.apple.IMAP                          0x00007fff8c547087 -[IMAPConnection _responseFromSendingOperation:] + 863
    16  com.apple.IMAP                          0x00007fff8c54458f -[IMAPConnection executeListOrLSub:] + 215
    17  com.apple.IMAP                          0x00007fff8c535bae -[IMAPClientListOperation executeOnConnection:] + 26
    18  com.apple.IMAP                          0x00007fff8c540ff5 -[IMAPConnection prepareAndExecuteOperation:outWrongState:] + 1247
    19  com.apple.IMAP                          0x00007fff8c553b01 -[IMAPGateway _allowClientOperationThrough:] + 1237
    20  com.apple.IMAP                          0x00007fff8c5535d4 -[IMAPGateway allowClientOperationThrough:] + 369
    21  com.apple.IMAP                          0x00007fff8c5380e3 -[IMAPClientOperation main] + 84
    22  com.apple.Foundation                    0x00007fff8d975bb6 -[__NSOperationInternal start] + 684
    23  com.apple.Foundation                    0x00007fff8d97d3d1 __block_global_6 + 129
    24  libdispatch.dylib                       0x00007fff9068bf3d _dispatch_call_block_and_release + 15
    25  libdispatch.dylib                       0x00007fff906880fa _dispatch_client_callout + 8
    26  libdispatch.dylib                       0x00007fff9068923e _dispatch_worker_thread2 + 304
    27  libsystem_c.dylib                       0x00007fff92cc6ceb _pthread_wqthread + 404
    28  libsystem_c.dylib                       0x00007fff92cb11b1 start_wqthread + 13
    Thread 5:: -[IMAPAccount fetchSynchronouslyIsAuto:]  Dispatch queue: com.apple.root.default-overcommit-priority
    0   libsystem_kernel.dylib                  0x00007fff906f5122 __psynch_mutexwait + 10
    1   libsystem_c.dylib                       0x00007fff92cc9ddd pthread_mutex_lock + 536
    2   com.apple.Foundation                    0x00007fff8d9398de -[NSLock lock] + 148
    3   com.apple.MessageFramework              0x00007fff8b6f4094 -[IMAPAccount _gatewayForMailboxUid:name:options:] + 152
    4   com.apple.MessageFramework              0x00007fff8b6f3d96 -[LibraryIMAPStore _gatewayCreateIfNeeded:options:] + 139
    5   com.apple.MessageFramework              0x00007fff8b6ef716 -[LibraryIMAPStore openSynchronouslyUpdatingMetadata:withOptions:] + 281
    6   com.apple.MessageFramework              0x00007fff8b709646 -[LibraryIMAPStore _fetchForCheckingNewMail:] + 53
    7   com.apple.MessageFramework              0x00007fff8b7094a8 -[IMAPAccount fetchSynchronouslyIsAuto:] + 139
    8   com.apple.CoreFoundation                0x00007fff89683cac __invoking___ + 140
    9   com.apple.CoreFoundation                0x00007fff89683b47 -[NSInvocation invoke] + 263
    10  com.apple.CoreMessage                   0x00007fff8c7ccd5d -[MonitoredInvocation invoke] + 225
    11  com.apple.CoreMessage                   0x00007fff8c7e52b2 -[ThrowingInvocationOperation main] + 33
    12  com.apple.CoreMessage                   0x00007fff8c791602 -[_MFInvocationOperation main] + 431
    13  com.apple.Foundation                    0x00007fff8d975bb6 -[__NSOperationInternal start] + 684
    14  com.apple.Foundation                    0x00007fff8d97d3d1 __block_global_6 + 129
    15  libdispatch.dylib                       0x00007fff9068bf3d _dispatch_call_block_and_release + 15
    16  libdispatch.dylib                       0x00007fff906880fa _dispatch_client_callout + 8
    17  libdispatch.dylib                       0x00007fff9068923e _dispatch_worker_thread2 + 304
    18  libsystem_c.dylib                       0x00007fff92cc6ceb _pthread_wqthread + 404
    19  libsystem_c.dylib                       0x00007fff92cb11b1 start_wqthread + 13
    Thread 6:: -[LibraryIMAPStore openSynchronously]  Dispatch queue: com.apple.root.default-overcommit-priority
    0   libsystem_kernel.dylib                  0x00007fff906f5122 __psynch_mutexwait + 10
    1   libsystem_c.dylib                       0x00007fff92cc9ddd pthread_mutex_lock + 536
    2   com.apple.Foundation                    0x00007fff8d92be39 -[NSRecursiveLock lock] + 22
    3   com.apple.IMAP                          0x00007fff8c54b2a6 -[IMAPConnectionPool yieldGateway:] + 48
    4   com.apple.IMAP                          0x00007fff8c552e94 -[IMAPGateway yield] + 66
    5   com.apple.IMAP                          0x00007fff8c55dc2c -[IMAPMailboxSyncEngine _goWithMessages:] + 1332
    6   com.apple.MessageFramework              0x00007fff8b6ef772 -[LibraryIMAPStore openSynchronouslyUpdatingMetadata:withOptions:] + 373
    7   com.apple.CoreFoundation                0x00007fff89683cac __invoking___ + 140
    8   com.apple.CoreFoundation                0x00007fff89683b47 -[NSInvocation invoke] + 263
    9   com.apple.CoreMessage                   0x00007fff8c7ccd5d -[MonitoredInvocation invoke] + 225
    10  com.apple.CoreMessage                   0x00007fff8c7e52b2 -[ThrowingInvocationOperation main] + 33
    11  com.apple.CoreMessage                   0x00007fff8c791602 -[_MFInvocationOperation main] + 431
    12  com.apple.Foundation                    0x00007fff8d975bb6 -[__NSOperationInternal start] + 684
    13  com.apple.Foundation                    0x00007fff8d97d3d1 __block_global_6 + 129
    14  libdispatch.dylib                       0x00007fff9068bf3d _dispatch_call_block_and_release + 15
    15  libdispatch.dylib                       0x00007fff906880fa _dispatch_client_callout + 8
    16  libdispatch.dylib                       0x00007fff9068923e _dispatch_worker_thread2 + 304
    17  libsystem_c.dylib                       0x00007fff92cc6ceb _pthread_wqthread + 404
    18  libsystem_c.dylib                       0x00007fff92cb11b1 start_wqthread + 13
    Thread 7:: Dispatch queue: com.apple.root.default-overcommit-priority
    0   libsystem_kernel.dylib                  0x00007fff906f5d16 kevent + 10
    1   libsystem_info.dylib                    0x00007fff8c44490a _mdns_search + 1208
    2   libsystem_info.dylib                    0x00007fff8c447275 mdns_hostbyaddr + 458
    3   libsystem_info.dylib                    0x00007fff8c446fe9 search_host_byaddr + 156
    4   libsystem_info.dylib                    0x00007fff8c446cc5 si_nameinfo + 513
    5   libsystem_info.dylib                    0x00007fff8c4401ed getnameinfo + 209
    6   com.apple.Foundation                    0x00007fff8d90eabc __40-[NSHost resolveCurrentHostWithHandler:]_block_invoke_0 + 108
    7   libdispatch.dylib                       0x00007fff9068bf3d _dispatch_call_block_and_release + 15
    8   libdispatch.dylib                       0x00007fff906880fa _dispatch_client_callout + 8
    9   libdispatch.dylib                       0x00007fff9068923e _dispatch_worker_thread2 + 304
    10  libsystem_c.dylib                       0x00007fff92cc6ceb _pthread_wqthread + 404
    11  libsystem_c.dylib                       0x00007fff92cb11b1 start_wqthread + 13
    Thread 8:: Dispatch queue: com.apple.root.default-overcommit-priority
    0   libsystem_kernel.dylib                  0x00007fff906f3686 mach_msg_trap + 10
    1   libsystem_kernel.dylib                  0x00007fff906f2c42 mach_msg + 70
    2   com.apple.CoreFoundation                0x00007fff8962cf23 __CFRunLoopServiceMachPort + 195
    3   com.apple.CoreFoundation                0x00007fff89632606 __CFRunLoopRun + 1078
    4   com.apple.CoreFoundation                0x00007fff89631dd2 CFRunLoopRunSpecific + 290
    5   com.apple.CoreMessage                   0x00007fff8c769889 _handleRequestWithTimeout + 1527
    6   com.apple.CoreMessage                   0x00007fff8c76c06b -[_NSSocket readBytes:length:error:] + 161
    7   com.apple.CoreMessage                   0x00007fff8c78619f -[Connection _readBytesFromSocketIntoBuffer:amount:requireAllBytes:error:] + 76
    8   com.apple.CoreMessage                   0x00007fff8c786085 -[Connection _fillBuffer:] + 764
    9   com.apple.CoreMessage                   0x00007fff8c785c17 -[Connection _readLineIntoData:error:] + 202
    10  com.apple.IMAP                          0x00007fff8c541a86 -[IMAPConnection _readLineIntoData:error:] + 53
    11  com.apple.IMAP                          0x00007fff8c548414 -[IMAPConnection(MFPrivate) _readDataOfLength:intoData:error:] + 112
    12  com.apple.IMAP                          0x00007fff8c56a6f0 -[IMAPResponse initWithConnection:error:] + 144
    13  com.apple.IMAP                          0x00007fff8c541b7a -[IMAPConnection _copyNextServerResponse:] + 55
    14  com.apple.IMAP                          0x00007fff8c541deb -[IMAPConnection _copyNextTaggedOrContinuationResponseForCommand:exists:] + 551
    15  com.apple.IMAP                          0x00007fff8c547087 -[IMAPConnection _responseFromSendingOperation:] + 863
    16  com.apple.IMAP                          0x00007fff8c5440d0 -[IMAPConnection executeLogin:] + 63
    17  com.apple.IMAP                          0x00007fff8c532707 -[IMAPClientLoginOperation executeOnConnection:] + 26
    18  com.apple.IMAP                          0x00007fff8c540ff5 -[IMAPConnection prepareAndExecuteOperation:outWrongState:] + 1247
    19  com.apple.IMAP                          0x00007fff8c553b01 -[IMAPGateway _allowClientOperationThrough:] + 1237
    20  com.apple.IMAP                          0x00007fff8c5535d4 -[IMAPGateway allowClientOperationThrough:] + 369
    21  com.apple.IMAP                          0x00007fff8c5380e3 -[IMAPClientOperation main] + 84
    22  com.apple.Foundation                    0x00007fff8d975bb6 -[__NSOperationInternal start] + 684
    23  com.apple.Foundation                    0x00007fff8d97d3d1 __block_global_6 + 129
    24  libdispatch.dylib                       0x00007fff9068bf3d _dispatch_call_block_and_release + 15
    25  libdispatch.dylib                       0x00007fff906880fa _dispatch_client_callout + 8
    26  libdispatch.dylib                       0x00007fff9068923e _dispatch_worker_thread2 + 304
    27  libsystem_c.dylib                       0x00007fff92cc6ceb _pthread_wqthread + 404
    28  libsystem_c.dylib                       0x00007fff92cb11b1 start_wqthread + 13
    Thread 9:: -[LibraryIMAPStore openSynchronously]  Dispatch queue: com.apple.root.default-overcommit-priority
    0   libsystem_kernel.dylib                  0x00007fff906f5122 __psynch_mutexwait + 10
    1   libsystem_c.dylib                       0x00007fff92cc9ddd pthread_mutex_lock + 536
    2   com.apple.Foundation                    0x00007fff8d92be39 -[NSRecursiveLock lock] + 22
    3   com.apple.IMAP                          0x00007fff8c54b2a6 -[IMAPConnectionPool yieldGateway:] + 48
    4   com.apple.IMAP                          0x00007fff8c552e94 -[IMAPGateway yield] + 66
    5   com.apple.IMAP                          0x00007fff8c55dc2c -[IMAPMailboxSyncEngine _goWithMessages:] + 1332
    6   com.apple.MessageFramework              0x00007fff8b6ef772 -[LibraryIMAPStore openSynchronouslyUpdatingMetadata:withOptions:] + 373
    7   com.apple.CoreFoundation                0x00007fff89683cac __invoking___ + 140
    8   com.apple.CoreFoundation                0x00007fff89683b47 -[NSInvocation invoke] + 263
    9   com.apple.CoreMessage                   0x00007fff8c7ccd5d -[MonitoredInvocation invoke] + 225
    10  com.apple.CoreMessage                   0x00007fff8c7e52b2 -[ThrowingInvocationOperation main] + 33
    11  com.apple.CoreMessage                   0x00007fff8c791602 -[_MFInvocationOperation main] + 431
    12  com.apple.Foundation                    0x00007fff8d975bb6 -[__NSOperationInternal start] + 684
    13  com.apple.Foundation                    0x00007fff8d97d3d1 __block_global_6 + 129
    14  libdispatch.dylib                       0x00007fff9068bf3d _dispatch_call_block_and_release + 15
    15  libdispatch.dylib                       0x00007fff906880fa _dispatch_client_callout + 8
    16  libdispatch.dylib                       0x00007fff9068923e _dispatch_worker_thread2 + 304
    17  libsystem_c.dylib                       0x00007fff92cc6ceb _pthread_wqthread + 404
    18  libsystem_c.dylib                       0x00007fff92cb11b1 start_wqthread + 13
    Thread 10:: -[LocationManager _determineCurrentLocation]  Dispatch queue: com.apple.root.default-overcommit-priority
    0   libsystem_kernel.dylib                  0x00007fff906f36c2 semaphore_wait_trap + 10
    1   libdispatch.dylib                       0x00007fff9068b4c2 _dispatch_semaphore_wait_slow + 241
    2   com.apple.Foundation                    0x00007fff8d90e1d8 -[NSHost blockingResolveUntil:] + 157
    3   com.apple.Foundation                    0x00007fff8d90e129 -[NSHost names] + 30
    4   com.apple.CoreMessage                   0x00007fff8c7cf4bd +[NetworkController filteredDomainNamesFromHost:] + 54
    5   com.apple.MessageFramework              0x00007fff8b6f5b26 -[LocationManager _determineCurrentLocation] + 124
    6   com.apple.CoreFoundation                0x00007fff89683cac __invoking___ + 140
    7   com.apple.CoreFoundation                0x00007fff89683b47 -[NSInvocation invoke] + 263
    8   com.apple.CoreMessage                   0x00007fff8c7e52b2 -[ThrowingInvocationOperation main] + 33
    9   com.apple.CoreMessage                   0x00007fff8c791602 -[_MFInvocationOperation main] + 431
    10  com.apple.Foundation                    0x00007fff8d975bb6 -[__NSOperationInternal start] + 684
    11  com.apple.Foundation                    0x00007fff8d97d3d1 __block_global_6 + 129
    12  libdispatch.dylib                       0x00007fff9068bf3d _dispatch_call_block_and_release + 15
    13  libdispatch.dylib                       0x00007fff906880fa _dispatch_client_callout + 8
    14  libdispatch.dylib                       0x00007fff9068923e _dispatch_worker_thread2 + 304
    15  libsystem_c.dylib                       0x00007fff92cc6ceb _pthread_wqthread + 404
    16  libsystem_c.dylib                       0x00007fff92cb11b1 start_wqthread + 13
    Thread 11:
    0   libsystem_kernel.dylib                  0x00007fff906f36c2 semaphore_wait_trap + 10
    1   libdispatch.dylib                       0x00007fff9068d877 _dispatch_group_wait_slow + 154
    2   com.apple.Foundation                    0x00007fff8d90e839 -[NSHost resolveCurrentHostWithHandler:] + 718
    3   com.apple.Foundation                    0x00007fff8d90e4a0 __18-[NSHost resolve:]_block_invoke_0 + 354
    4   libdispatch.dylib                       0x00007fff9068bf3d _dispatch_call_block_and_release + 15
    5   libdispatch.dylib                       0x00007fff906880fa _dispatch_client_callout + 8
    6   libdispatch.dylib                       0x00007fff906894c3 _dispatch_queue_drain + 235
    7   libdispatch.dylib                       0x00007fff90689335 _dispatch_queue_invoke + 52
    8   libdispatch.dylib                       0x00007fff90689207 _dispatch_worker_thread2 + 249
    9   libsystem_c.dylib                       0x00007fff92cc6ceb _pthread_wqthread + 404
    10  libsystem_c.dylib                       0x00007fff92cb11b1 start_wqthread + 13
    Thread 12:
    0   libsystem_kernel.dylib                  0x00007fff906f56d6 __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x00007fff92cc6f2c _pthread_workq_return + 25
    2   libsystem_c.dylib                       0x00007fff92cc6cf3 _pthread_wqthread + 412
    3   libsystem_c.dylib                       0x00007fff92cb11b1 start_wqthread + 13
    Thread 13:
    0   libsystem_kernel.dylib                  0x00007fff906f56d6 __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x00007fff92cc6f2c _pthread_workq_return + 25
    2   libsystem_c.dylib                       0x00007fff92cc6cf3 _pthread_wqthread + 412
    3   libsystem_c.dylib                       0x00007fff92cb11b1 start_wqthread + 13
    Thread 14:: Dispatch queue: com.apple.root.default-overcommit-priority
    0   libsystem_kernel.dylib                  0x00007fff906f5122 __psynch_mutexwait + 10
    1   libsystem_c.dylib                       0x00007fff92cc9ddd pthread_mutex_lock + 536
    2   com.apple.Foundation                    0x00007fff8d9398de -[NSLock lock] + 148
    3   com.apple.MessageFramework              0x00007fff8b6f4094 -[IMAPAccount _gatewayForMailboxUid:name:options:] + 152
    4   com.apple.MessageFramework              0x00007fff8b6f3d96 -[LibraryIMAPStore _gatewayCreateIfNeeded:options:] + 139
    5   com.apple.MessageFramework              0x00007fff8b723985 -[LibraryIMAPStore _synchronouslyStoreFlagsFromDictionary:forMessages:] + 784
    6   com.apple.MessageFramework              0x00007fff8b72365d -[LibraryIMAPStore _setFlagsFromDictionary:forMessages:] + 232
    7   com.apple.MessageFramework              0x00007fff8b723540 -[LibraryIMAPStore _internalSetFlagsFromDictionary:forMessages:] + 795
    8   com.apple.MessageFramework              0x00007fff8b7a6896 __76-[LibraryIMAPStore async_setFlagsFromDictionary:forMessages:updatingServer:]_block_invoke_0532 + 123
    9   com.apple.Foundation                    0x00007fff8d99fcac -[NSBlockOperation main] + 124
    10  com.apple.CoreMessage                   0x00007fff8c7b2f35 -[MFTaskOperation main] + 709
    11  com.apple.Foundation                    0x00007fff8d975bb6 -[__NSOperationInternal start] + 684
    12  com.apple.Foundation                    0x00007fff8d97d3d1 __block_global_6 + 129
    13  libdispatch.dylib                       0x00007fff9068bf3d _dispatch_call_block_and_release + 15
    14  libdispatch.dylib                       0x00007fff906880fa _dispatch_client_callout + 8
    15  libdispatch.dylib                       0x00007fff9068923e _dispatch_worker_thread2 + 304
    16  libsystem_c.dylib                       0x00007fff92cc6ceb _pthread_wqthread + 404
    17  libsystem_c.dylib                       0x00007fff92cb11b1 start_wqthread + 13
    Thread 15 Crashed:: Dispatch queue: com.apple.root.default-priority
    0   libsystem_kernel.dylib                  0x00007fff906f5212 __pthread_kill + 10
    1   libsystem_c.dylib                       0x00007fff92cc5b34 pthread_kill + 90
    2   libsystem_c.dylib                       0x00007fff92d09dfa abort + 143
    3   libsystem_c.dylib                       0x00007fff92d0add5 __assert_rtn + 146
    4   libCMaps.A.dylib                        0x00000001146ce8ec normalize + 257
    5   libCMaps.A.dylib                        0x00000001146ce7ac cmap_cid_set_find_matching_range + 35
    6   libCMaps.A.dylib                        0x00000001146cf172 cmap_csr_set_convert + 396
    7   com.apple.CoreGraphics                  0x00007fff87eca20c CGPDFCMapGetCIDsForText + 206
    8   com.apple.CorePDF                       0x00007fff901ac7f8 CPFontEnumeratorCreate + 280
    9   com.apple.CorePDF                       0x00007fff901b4e03 ShowText + 451
    10  com.apple.CorePDF                       0x00007fff901b3ac0 op_Tj + 34
    11  com.apple.CoreGraphics                  0x00007fff87f73e17 pdf_scanner_handle_xname + 104
    12  com.apple.CoreGraphics                  0x00007fff87f730e4 CGPDFScannerScan + 238
    13  com.apple.CorePDF                       0x00007fff901b4504 ParsePDF + 190
    14  com.apple.CorePDF                       0x00007fff9017d923 populate + 243
    15  com.apple.CorePDF                       0x00007fff90182df8 -[CPPage reconstruct] + 70
    16  com.apple.CorePDF                       0x00007fff9018acd5 CGPDFPageGetLayout + 360
    17  com.apple.PDFKit                        0x00007fff92e83a61 -[PDFPage(PDFPageInternal) fetchPageLayoutOnThread:] + 73
    18  com.apple.CoreFoundation                0x00007fff89683cac __invoking___ + 140
    19  com.apple.CoreFoundation                0x00007fff89683b47 -[NSInvocation invoke] + 263
    20  com.apple.Foundation                    0x00007fff8d97dd10 -[NSInvocationOperation main] + 34
    21  com.apple.Foundation                    0x00007fff8d975bb6 -[__NSOperationInternal start] + 684
    22  com.apple.Foundation                    0x00007fff8d97d3d1 __block_global_6 + 129
    23  libdispatch.dylib                       0x00007fff9068bf3d _dispatch_call_block_and_release + 15
    24  libdispatch.dylib                       0x00007fff906880fa _dispatch_client_callout + 8
    25  libdispatch.dylib                       0x00007fff9068923e _dispatch_worker_thread2 + 304
    26  libsystem_c.dylib                       0x00007fff92cc6ceb _pthread_wqthread + 404
    27  libsystem_c.dylib                       0x00007fff92cb11b1 start_wqthread + 13
    Thread 16:: -[IMAPAccount fetchSynchronouslyIsAuto:]  Dispatch queue: com.apple.root.default-overcommit-priority
    0   libsystem_kernel.dylib                  0x00007fff906f5122 __psynch_mutexwait + 10
    1   libsystem_c.dylib                       0x00007fff92cc9ddd pthread_mutex_lock + 536
    2   com.apple.Foundation                    0x00007fff8d9398de -[NSLock lock] + 148
    3   com.apple.MessageFramework              0x00007fff8b6f4094 -[IMAPAccount _gatewayForMailboxUid:name:options:] + 152
    4   com.apple.MessageFramework              0x00007fff8b6f3d96 -[LibraryIMAPStore _gatewayCreateIfNeeded:options:] + 139
    5   com.apple.MessageFramework              0x00007fff8b6ef716 -[LibraryIMAPStore openSynchronouslyUpdatingMetadata:withOptions:] + 281
    6   com.apple.MessageFramework              0x00007fff8b709646 -[LibraryIMAPStore _fetchForCheckingNewMail:] + 53
    7   com.apple.MessageFramework              0x00007fff8b7094a8 -[IMAPAccount fetchSynchronouslyIsAuto:] + 139
    8   com.apple.CoreFoundation                0x00007fff89683cac __invoking___ + 140
    9   com.apple.CoreFoundation                0x00007fff89683b47 -[NSInvocation invoke] + 263
    10  com.apple.CoreMessage                   0x00007fff8c7ccd5d -[MonitoredInvocation invoke] + 225
    11  com.apple.CoreMessage                   0x00007fff8c7e52b2 -[ThrowingInvocationOperation main] + 33
    12  com.apple.CoreMessage                   0x00007fff8c791602 -[_MFInvocationOperation main] + 431
    13  com.apple.Foundation                    0x00007fff8d975bb6 -[__NSOperationInternal start] + 684
    14  com.apple.Foundation                    0x00007fff8d97d3d1 __block_global_6 + 129
    15  libdispatch.dylib                       0x00007fff9068bf3d _dispatch_call_block_and_release + 15
    16  libdispatch.dylib                       0x00007fff906880fa _dispatch_client_callout + 8
    17  libdispatch.dylib                       0x00007fff9068923e _dispatch_worker_thread2 + 304
    18  libsystem_c.dylib                       0x00007fff92cc6ceb _pthread_wqthread + 404
    19  libsystem_c.dylib                       0x00007fff92cb11b1 start_wqthread + 13
    Thread 17:
    0   libsystem_kernel.dylib                  0x00007fff906f56d6 __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x00007fff92cc6f2c _pthread_workq_return + 25
    2   libsystem_c.dylib                       0x00007fff92cc6cf3 _pthread_wqthread + 412
    3   libsystem_c.dylib                       0x00007fff92cb11b1 start_wqthread + 13
    Thread 18:: -[IMAPAccount _synchronizeAccountWithServerWithUserInput:]  Dispatch queue: com.apple.root.default-overcommit-priority
    0   libsystem_kernel.dylib                  0x00007fff906f50fa __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x00007fff92cc9003 _pthread_cond_wait + 927
    2   com.apple.Foundation                    0x00007fff8d91c7f9 -[__NSOperationInternal waitUntilFinishedOrTimeout:] + 227
    3   com.apple.IMAP                          0x00007fff8c53a928 -[IMAPClientOperationQueue waitUntilOperationIsFinished:] + 167
    4   com.apple.IMAP                          0x00007fff8c553e0e -[IMAPGateway waitUntilClientOperationIsFinished:] + 168
    5   com.apple.IMAP                          0x00007fff8c553d56 -[IMAPGateway addClientOperation:toQueueAndWaitUntilFinished:] + 411
    6   com.apple.IMAP                          0x00007fff8c5443c4 -[IMAPConnection separatorChar] + 116
    7   com.apple.IMAP                          0x00007fff8c54406e -[IMAPConnection _loginWithUsername:password:] + 888
    8   com.apple.IMAP                          0x00007fff8c543275 -[IMAPConnection _authenticateWithAuthenticator:] + 850
    9   com.apple.CoreMessage                   0x00007fff8c7859b9 -[Connection authenticate] + 598
    10  com.apple.IMAP                          0x00007fff8c542e30 -[IMAPConnection authenticate] + 66
    11  com.apple.MessageFramework              0x00007fff8b775c69 -[IMAPAccount connectAndAuthenticate:] + 1058
    12  com.apple.IMAP                          0x00007fff8c54c35d -[IMAPConnectionPool _validateAndCheckOutGateway:forMailbox:allowReconnect:newGateway:] + 334
    13  com.apple.IMAP                          0x00007fff8c54a439 -[IMAPConnectionPool _checkOutNewGatewayWithConnection:forMailbox:] + 301
    14  com.apple.MessageFramework              0x00007fff8b6f44a5 -[IMAPAccount _getPotentialGatewayForMailbox:options:createdNewConnection:needsSelect:] + 429
    15  com.apple.MessageFramework              0x00007fff8b6f40b0 -[IMAPAccount _gatewayForMailboxUid:name:options:] + 180
    16  com.apple.MessageFramework              0x00007fff8b70f73a -[IMAPAccount _listingForMailboxUid:listAllChildren:onlySubscribed:withUserInput:] + 115
    17  com.apple.MessageFramework              0x00007fff8b70f292 -[IMAPAccount _listingForMailboxUid:listAllChildren:withUserInput:] + 88
    18  com.apple.MessageFramework              0x00007fff8b70f1d3 -[IMAPAccount _synchronizeMailboxListWithUserInput:] + 64
    19  com.apple.MessageFramework              0x00007fff8b70ba3f -[RemoteStoreAccount _synchronizeAccountWithServerWithUserInput:] + 318
    20  com.apple.MessageFramework              0x00007fff8b70b6d3 -[IMAPAccount _synchronizeAccountWithServerWithUserInput:] + 45
    21  com.apple.CoreFoundation                0x00007fff89683cac __invoking___ + 140
    22  com.apple.CoreFoundation                0x00007fff89683b47 -[NSInvocation invoke] + 263
    23  com.apple.CoreMessage                   0x00007fff8c7ccd5d -[MonitoredInvocation invoke] + 225
    24  com.apple.CoreMessage                   0x00007fff8c7e52b2 -[ThrowingInvocationOperation main] + 33
    25  com.apple.CoreMessage                   0x00007fff8c791602 -[_MFInvocationOperation main] + 431
    26  com.apple.Foundation                    0x00007fff8d975bb6 -[__NSOperationInternal start] + 684
    27  com.apple.Foundation                    0x00007fff8d97d3d1 __block_global_6 + 129
    28  libdispatch.dylib                       0x00007fff9068bf3d _dispatch_call_block_and_release + 15
    29  libdispatch.dylib                       0x00007fff906880fa _dispatch_client_callout + 8
    30  libdispatch.dylib                       0x00007fff9068923e _dispatch_worker_thread2 + 304
    31  libsystem_c.dylib                       0x00007fff92cc6ceb _pthread_wqthread + 404
    32  libsystem_c.dylib                       0x00007fff92cb11b1 start_wqthread + 13
    Thread 19:: -[LibraryIMAPStore openSynchronously]  Dispatch queue: com.apple.root.default-overcommit-priority
    0   libsystem_kernel.dylib                  0x00007fff906f5122 __psynch_mutexwait + 10
    1   libsystem_c.dylib                       0x00007fff92cc9ddd pthread_mutex_lock + 536
    2   com.apple.Foundation                    0x00007fff8d92be39 -[NSRecursiveLock lock] + 22
    3   com.apple.IMAP                          0x00007fff8c54b2a6 -[IMAPConnectionPool yieldGateway:] + 48
    4   com.apple.IMAP                          0x00007fff8c552e94 -[IMAPGateway yield] + 66
    5   com.apple.IMAP                          0x00007fff8c55dc2c -[IMAPMailboxSyncEngine _goWithMessages:] + 1332
    6   com.apple.MessageFramework              0x00007fff8b6ef772 -[LibraryIMAPStore openSynchronouslyUpdatingMetadata:withOptions:] + 373
    7   com.apple.CoreFoundation                0x00007fff89683cac __invoking___ + 140
    8   com.apple.CoreFoundation                0x00007fff89683b47 -[NSInvocation invoke] + 263
    9   com.apple.CoreMessage                   0x00007fff8c7ccd5d -[MonitoredInvocation invoke] + 225
    10  com.apple.CoreMessage                   0x00007fff8c7e52b2 -[ThrowingInvocationOperation main] + 33
    11  com.apple.CoreMessage                   0x00007fff8c791602 -[_MFInvocationOperation main] + 431
    12  com.apple.Foundation                    0x00007fff8d975bb6 -[__NSOperationInternal start] + 684
    13  com.apple.Foundation                    0x00007fff8d97d3d1 __block_global_6 + 129
    14  libdispatch.dylib                       0x00007fff9068bf3d _dispatch_call_block_and_release + 15
    15  libdispatch.dylib                       0x00007fff906880fa _dispatch_client_callout + 8
    16  libdispatch.dylib                       0x00007fff9068923e _dispatch_worker_thread2 + 304
    17  libsystem_c.dylib                       0x00007fff92cc6ceb _pthread_wqthread + 404
    18  libsystem_c.dylib                       0x00007fff92cb11b1 start_wqthread + 13
    Thread 20:: -[IMAPAccount _synchronizeAccountWithServerWithUserInput:]  Dispatch queue: com.apple.root.default-overcommit-priority
    0   libsystem_kernel.dylib                  0x00007fff906f50fa __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x00007fff92cc9003 _pthread_cond_wait + 927
    2   com.apple.Foundation                    0x00007fff8d91c7f9 -[__NSOperationInternal waitUntilFinishedOrTimeout:] + 227
    3   com.apple.IMAP                          0x00007fff8c53a928 -[IMAPClientOperationQueue waitUntilOperationIsFinished:] + 167
    4   com.apple.IMAP                          0x00007fff8c553e0e -[IMAPGateway waitUntilClientOperationIsFinished:] + 168
    5   com.apple.IMAP                          0x00007fff8c543faa -[IMAPConnection _loginWithUsername:password:] + 692
    6   com.apple.IMAP                          0x00007fff8c543275 -[IMAPConnection _authenticateWithAuthenticator:] + 850
    7   com.apple.CoreMessage                   0x00007fff8c7859b9 -[Connection authenticate] + 598
    8   com.apple.IMAP                          0x00007fff8c542e30 -[IMAPConnection authenticate] + 66
    9   com.apple.MessageFramework              0x00007fff8b775c69 -[IMAPAccount connectAndAuthenticate:] + 1058
    10  com.apple.IMAP                          0x00007fff8c54c35d -[IMAPConnectionPool _validateAndCheckOutGateway:forMailbox:allowReconnect:newGateway:] + 334
    11  com.apple.IMAP                          0x00007fff8c54a439 -[IMAPConnectionPool _checkOutNewGatewayWithConnection:forMailbox:] + 301
    12  com.apple.MessageFramework              0x00007fff8b6f44a5 -[IMAPAccount _getPotentialGatewayForMailbox:options:createdNewConnection:needsSelect:] + 429
    13  com.apple.MessageFramework              0x00007fff8b6f40b0 -[IMAPAccount _gatewayForMailboxUid:name:options:] + 180
    14  com.apple.MessageFramework              0x00007fff8b70f73a -[IMAPAccount _listingForMailboxUid:listAllChildren:onlySubscribed:withUserInput:] + 115
    15  com.apple.MessageFramework              0x00007fff8b70f292 -[IMAPAccount _listingForMailboxUid:listAllChildren:withUserInput:] + 88
    16  com.apple.MessageFramework              0x00007fff8b70f1d3 -[IMAPAccount _synchronizeMailboxListWithUserInput:] + 64
    17  com.apple.MessageFramework              0x00007fff8b70ba3f -[RemoteStoreAccount _synchronizeAccountWithServerWithUserInput:] + 318
    18  com.apple.MessageFramework              0x00007fff8b70b6d3 -[IMAPAccount _synchronizeAccountWithServerWithUserInput:] + 45
    19  com.apple.CoreFoundation                0x00007fff89683cac __invoking___ + 140
    20  com.apple.CoreFoundation                0x00007fff89683b47 -[NSInvocation invoke] + 263
    21  com.apple.CoreMessage                   0x00007fff8c7ccd5d -[MonitoredInvocation invoke] + 225
    22  com.apple.CoreMessage                   0x00007fff8c7e52b2 -[ThrowingInvocationOperation main] + 33
    23  com.apple.CoreMessage                   0x00007fff8c791602 -[_MFInvocationOperation main] + 431
    24  com.apple.Foundation                    0x00007fff8d975bb6 -[__NSOperationInternal start] + 684
    25  com.apple.Foundation                    0x00007fff8d97d3d1 __block_global_6 + 129
    26  libdispatch.dylib                       0x00007fff9068bf3d _dispatch_call_block_and_release + 15
    27  libdispatch.dylib                       0x00007fff906880fa _dispatch_client_callout + 8
    28  libdispatch.dylib                       0x00007fff9068923e _dispatch_worker_thread2 + 304
    29  libsystem_c.dylib                       0x00007fff92cc6ceb _pthread_wqthread + 404
    30  libsystem_c.dylib                       0x00007fff92cb11b1 start_wqthread + 13
    Thread 21:: Dispatch queue: com.apple.root.default-overcommit-priority
    0   libsystem_kernel.dylib                  0x00007fff906f5d16 kevent + 10
    1   libsystem_info.dylib                    0x00007fff8c44490a _mdns_search + 1208
    2   libsystem_info.dylib                    0x00007fff8c447275 mdns_hostbyaddr + 458
    3   libsystem_info.dylib                    0x00007fff8c446fe9 search_host_byaddr + 156
    4   libsystem_info.dylib                    0x00007fff8c446cc5 si_nameinfo + 513
    5   libsystem_info.dylib                    0x00007fff8c4401ed getnameinfo + 209
    6   com.apple.Foundation                    0x00007fff8d90eabc __40-[NSHost resolveCurrentHostWithHandler:]_block_invoke_0 + 108
    7   libdispatch.dylib                       0x00007fff9068bf3d _dispatch_call_block_and_release + 15
    8   libdispatch.dylib                       0x00007fff906880fa _dispatch_client_callout + 8
    9   libdispatch.dylib                       0x00007fff9068923e _dispatch_worker_thread2 + 304
    10  libsystem_c.dylib                       0x00007fff92cc6ceb _pthread_wqthread + 404
    11  libsystem_c.dylib                       0x00007fff92cb11b1 start_wqthread + 13
    Thread 22:: -[MFAosImapAccount _synchronizeAccountWithServerWithUserInput:]  Dispatch queue: com.apple.root.default-overcommit-priority
    0   libsystem_kernel.dylib                  0x00007fff906f50fa __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x00007fff92cc9003 _pthread_cond_wait + 927
    2   com.apple.Foundation                    0x00007fff8d91c7f9 -[__NSOperationInternal waitUntilFinishedOrTimeout:] + 227
    3   com.apple.IMAP                          0x00007fff8c53a928 -[IMAPClientOperationQueue waitUntilOperationIsFinished:] + 167
    4   com.apple.IMAP                          0x00007fff8c553e0e -[IMAPGateway waitUntilClientOperationIsFinished:] + 168
    5   com.apple.IMAP                          0x00007fff8c553d56 -[IMAPGateway addClientOperation:toQueueAndWaitUntilFinished:] + 411
    6   com.apple.IMAP                          0x00007fff8c542886 -[IMAPConnection sendIDIfNeeded] + 159
    7   com.apple.IMAP                          0x00007fff8c542fdc -[IMAPConnection _authenticateWithAuthenticator:] + 185
    8   com.apple.CoreMessage                   0x00007fff8c7859b9 -[Connection authenticate] + 598
    9   com.apple.IMAP                          0x00007fff8c542e30 -[IMAPConnection authenticate] + 66
    10  com.apple.MessageFramework              0x00007fff8b775c69 -[IMAPAccount connectAndAuthenticate:] + 1058
    11  com.apple.IMAP                          0x00007fff8c54c35d -[IMAPConnectionPool _validateAndCheckOutGateway:forMailbox:allowReconnect:newGateway:] + 334
    12  com.apple.IMAP                          0x00007fff8c54a439 -[IMAPConnectionPool _checkOutNewGatewayWithConnection:forMailbox:] + 301
    13  com.apple.MessageFramework              0x00007fff8b6f44a5 -[IMAPAccount _getPotentialGatewayForMailbox:options:createdNewConnection:needsSelect:] + 429
    14  com.apple.MessageFramework              0x00007fff8b6f40b0 -[IMAPAccount _gatewayForMailboxUid:name:options:] + 180
    15  com.apple.MessageFramework              0x00007fff8b70f73a -[IMAPAccount _listingForMailboxUid:listAllChildren:onlySubscribed:withUserInput:] + 115
    16  com.apple.MessageFramework              0x00007fff8b70f292 -[IMAPAccount _listingForMailboxUid:listAllChildren:withUserInput:] + 88
    17  com.apple.MessageFramework              0x00007fff8b70f1d3 -[IMAPAccount _synchronizeMailboxListWithUserInput:] + 64
    18  com.apple.MessageFramework              0x00007fff8b70ba3f -[RemoteStoreAccount _synchronizeAccountWithServerWithUserInput:] + 318
    19  com.apple.MessageFramework              0x00007fff8b70b6d3 -[IMAPAccount _synchronizeAccountWithServerWithUserInput:] + 45
    20  com.apple.CoreFoundation                0x00007fff89683cac __invoking___ + 140
    21  com.apple.CoreFoundation                0x00007fff89683b47 -[NSInvocation invoke] + 263
    22  com.apple.CoreMessage                   0x00007fff8c7ccd5d -[MonitoredInvocation invoke] + 225
    23  com.apple.CoreMessage                   0x00007fff8c7e52b2 -[ThrowingInvocationOperation main] + 33
    24  com.apple.CoreMessage                   0x00007fff8c791602 -[_MFInvocationOperation main] + 431
    25  com.apple.Foundation                    0x00007fff8d975bb6 -[__NSOperationInternal start] + 684
    26  com.apple.Foundation                    0x00007fff8d97d3d1 __block_global_6 + 129
    27  libdispatch.dylib                       0x00007fff9068bf3d _dispatch_call_block_and_release + 15
    28  libdispatch.dylib                       0x00007fff906880fa _dispatch_client_callout + 8
    29  libdispatch.dylib                       0x00007fff9068923e _dispatch_worker_thread2 + 304
    30  libsystem_c.dylib                       0x00007fff92cc6ceb _pthread_wqthread + 404
    31  libsystem_c.dylib                       0x00007fff92cb11b1 start_wqthread + 13
    Thread 23:: -[IMAPAccount _synchronizeAccountWithServerWithUserInput:]  Dispatch queue: com.apple.root.default-overcommit-priority
    0   libsystem_kernel.dylib                  0x00007fff906f50fa __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x00007fff92cc9003 _pthread_cond_wait + 927
    2   com.apple.Foundation                    0x00007fff8d91c7f9 -[__NSOperationInternal waitUntilFinishedOrTimeout:] + 227
    3   com.apple.IMAP                          0x00007fff8c53a928 -[IMAPClientOperationQueue waitUntilOperationIsFinished:] + 167
    4   com.apple.IMAP                          0x00007fff8c553e0e -[IMAPGateway waitUntilClientOperationIsFinished:] + 168
    5   com.apple.IMAP                          0x00007fff8c543faa -[IMAPConnection _loginWithUsername:password:] + 692
    6   com.apple.IMAP                          0x00007fff8c543275 -[IMAPConnection _authenticateWithAuthenticator:] + 850
    7   com.apple.CoreMessage                   0x00007fff8c7859b9 -[Connection authenticate] + 598
    8   com.apple.IMAP                          0x00007fff8c542e30 -[IMAPConnection authenticate] + 66
    9   com.apple.MessageFramework              0x00007fff8b775c69 -[IMAPAccount connectAndAuthenticate:] + 1058
    10  com.apple.IMAP                          0x00007fff8c54c35d -[IMAPConnectionPool _validateAndCheckOutGateway:forMailbox:allowReconnect:newGateway:] + 334
    11  com.apple.IMAP                          0x00007fff8c54a439 -[IMAPConnectionPool _checkOutNewGatewayWithConnection:forMailbox:] + 301
    12  com.apple.MessageFramework              0x00007fff8b6f44a5 -[IMAPAccount _getPotentialGatewayForMailbox:options:createdNewConnection:needsSelect:] + 429
    13  com.apple.MessageFramework              0x00007fff8b6f40b0 -[IMAPAccount _gatewayForMailboxUid:name:options:] + 180
    14  com.apple.MessageFramework              0x00007fff8b70f73a -[IMAPAccount _listingForMailboxUid:listAllChildren:onlySubscribed:withUserInput:] + 115
    15  com.apple.MessageFramework              0x00007fff8b70f292 -[IMAPAccount _listingForMailboxUid:listAllChildren:withUserInput:] + 88
    16  com.apple.MessageFramework              0x00007fff8b70f1d3 -[IMAPAccount _synchronizeMailboxListWithUserInput:] + 64
    17  com.apple.MessageFramework              0x00007fff8b70ba3f -[RemoteStoreAccount _synchronizeAccountWithServerWithUserInput:] + 318
    18  com.apple.MessageFramework              0x00007fff8b70b6d3 -[IMAPAccount _synchronizeAccountWithServerWithUserInput:] + 45
    19  com.apple.CoreFoundation                0x00007fff89683cac __invoking___ + 140
    20  com.apple.CoreFoundation                0x00007fff89683b47 -[NSInvocation invoke] + 263
    21  com.apple.CoreMessage                   0x00007fff8c7ccd5d -[MonitoredInvocation invoke] + 225
    22  com.apple.CoreMessage                   0x00007fff8c7e52b2 -[ThrowingInvocationOperation main] + 33
    23  com.apple.CoreMessage                   0x00007fff8c791602 -[_MFInvocationOperation main] + 431
    24  com.apple.Foundation                    0x00007fff8d975bb6 -[__NSOperationInternal start] + 684
    25  com.apple.Foundation                    0x00007fff8d97d3d1 __block_global_6 + 129
    26  libdispatch.dylib                       0x00007fff9068bf3d _dispatch_call_block_and_release + 15
    27  libdispatch.dylib                       0x00007fff906880fa _dispatch_client_callout + 8
    28  libdispatch.dylib                       0x00007fff9068923e _dispatch_worker_thread2 + 304
    29  libsystem_c.dylib                       0x00007fff92cc6ceb _pthread_wqthread + 404
    30  libsystem_c.dylib         

    Who hosts your email?  Can you access it via your web page (gmail, yahoo, etc)?
    Download a different email app like Sparrow from the Apple Store and see how well that works.
    If you need to get Apple Mail working again you might need to do more research:
    https://discussions.apple.com/thread/3758523?start=0&tstart=0

  • Historical Report - Missing data

    Hello,
    We have a problem with Historical Report, for some reason we cannot generate report "Agent State Summary by Agent" on particular date (other report have no problem on that particular date). While generating the report, we get the error message "A runtime error occurred while executing the query. Please check log for more detail.".
    HRC log:
    1: 12/8/2010 3:33:59 PM %CHC-LOG_SUBFAC-3-UNK:The following SQL Command failed due to ()SQL Command=[call sp_agent_state_interval ('2010-11-08 17:00:00', '2010-11-09 16:59:59', 0, 0, 'NULL', 'NULL', 'NULL', 'NULL' )]
    2: 12/8/2010 3:33:59 PM %CHC-LOG_SUBFAC-3-UNK:TraceDBError #1:(ADO Error# -2147467259|Description E21000: (-284) A subquery has returned not exactly one row.|Source Ifxoledbc|SQLState |NativeError -284)
    3: 12/8/2010 3:33:59 PM %CHC-LOG_SUBFAC-3-UNK:Database Error | A runtime error occurred while executing the query. Please check log for more details
    4: 12/8/2010 3:34:04 PM %CHC-LOG_SUBFAC-3-UNK:Failed to run Interpreted SQL Command(call sp_agent_state_interval ('2010-11-08 17:00:00', '2010-11-09 16:59:59', 0, 0, 'NULL', 'NULL', 'NULL', 'NULL' ))
    We are on CUCM 8 and UCCX 8.0(2). Does anyone experience this issue? Any idea what cause the issue? Any solution?
    Thank you,
    sovannary

    To fix this kind of issue we need to check if replication between two server is good or not .
    1)Command :- utils uccx dbreplication status (run this command on both the server's
    2) If replication is good then check the status of historical datastore from control center
    3)if all the services are good then check which report is failing .I mean  if agent report is failing then
    run below command to check if that table if fine
    admin:run uccx sql db_cra select count(*) from agentstatedetail
    you can query different tables depending on reports .
    you will get ISAM error in executing sql query then reboot the server . If it does not resolved the problem then open TAC case . we need to drop the table and create it again .
    If Row's on both server's are not matching then we might need to repair the database.
    Command :- utils uccx dbreplication repair db_cra
    Note:- Please contact TAC before executing these commands.
    I hope this will help you .
    Regards
    Ravi

  • Mac crashing daily, post upgrade to Mountain Lion 10.8. Culprit?

    Hi folks,
    hope the hive mind can help solve this bug. Last weekend, i upgraded my 320GB HDD, which was nearly full. The old drive had 10.6. I installed 10.8 on a new 512GB SSD, then imported settings, software, etc onto the new unit from the old one. All seemed fine. But not for long. Two problems surfaced:
    First, Mac mail was a wreck. Crashed while importing old settings. I deleted all the settings files, and re imported. It worked for a day, then crashed again -- became unopenable.  I reinstalled 10.8. Same problem with Mac Mail surfaced on the 2nd install. So I switched to Thunderbird, which I had meant to do for a while. Problems solved? Nope.
    Second, each day since the upgrade, my Mac has blue-screened,  fatal error crash. There's no consistency to when this happens. I've pasted the error log below.
    I'm not sure if the mail issue is related to the crashing, but thought it worth mentioning. I don't have time to do a full rebuild of the drive + applications anytime soon, so for now am hoping to ID the culprit, if that's possible.
    Mondo thanks for any help you can share!
    Best, Adam
    Process:   
    Mail [825]
    Path:       
    /Applications/Mail.app/Contents/MacOS/Mail
    Identifier: 
    com.apple.mail
    Version:   
    6.2 (1499)
    Build Info: 
    Mail-1499000000000000~1
    Code Type: 
    X86-64 (Native)
    Parent Process:  launchd [225]
    User ID:   
    502
    Date/Time: 
    2012-10-15 15:18:46.700 -0400
    OS Version: 
    Mac OS X 10.8.2 (12C60)
    Report Version:  10
    Interval Since Last Report:     
    1448 sec
    Crashes Since Last Report:     
    1
    Per-App Interval Since Last Report:  1239 sec
    Per-App Crashes Since Last Report:   1
    Anonymous UUID:                 
    3C5A6AEB-79F4-9E82-39BB-E550B935551E
    Crashed Thread:  0  Dispatch queue: com.apple.main-thread
    Exception Type:  EXC_CRASH (SIGABRT)
    Exception Codes: 0x0000000000000000, 0x0000000000000000
    Application Specific Information:
    *** Terminating app due to uncaught exception 'NSInvalidArgumentException', reason: '*** -[NSSet initWithArray:range:copyItems:]: array argument is not an NSArray'
    Performing @selector(showViewerWindow:) from sender NSMenuItem 0x7ffe69a1b4f0
    abort() called
    terminate called throwing an exception
    Application Specific Backtrace 1:
    0   CoreFoundation                 
    0x00007fff880b00a6 __exceptionPreprocess + 198
    1   libobjc.A.dylib               
    0x00007fff8ed573f0 objc_exception_throw + 43
    2   CoreFoundation                 
    0x00007fff8808e9f4 -[NSSet initWithArray:range:copyItems:] + 212
    3   Message                       
    0x00007fff89bee25c -[SmartMailboxUnreadCountManager smartMailbox:didInitializeWithDictionaryRepresentation:] + 98
    4   Message                       
    0x00007fff89beda7c -[MailboxUid initWithDictionaryRepresentation:] + 1289
    5   Message                       
    0x00007fff89bed8cf -[MailboxUid initWithDictionaryRepresentation:] + 860
    6   Mail                           
    0x000000010e4f6a4b Mail + 35403
    7   Mail                           
    0x000000010e4f64df Mail + 34015
    8   Mail                           
    0x000000010e4f61b0 Mail + 33200
    9   Mail                           
    0x000000010e4f947f Mail + 46207
    10  Mail                           
    0x000000010e4f8933 Mail + 43315
    11  Mail                           
    0x000000010e691b53 Mail + 1719123
    12  libdispatch.dylib             
    0x00007fff8a1b50b6 _dispatch_client_callout + 8
    13  libdispatch.dylib             
    0x00007fff8a1b5041 dispatch_once_f + 50
    14  Mail                           
    0x000000010e4f87e8 Mail + 42984
    15  Mail                           
    0x000000010e4f86a6 Mail + 42662
    16  CoreFoundation                 
    0x00007fff880a7e89 -[NSSet makeObjectsPerformSelector:] + 201
    17  AppKit                         
    0x00007fff8b73b216 -[NSIBObjectData nibInstantiateWithOwner:topLevelObjects:] + 1168
    18  AppKit                         
    0x00007fff8b71a1fd loadNib + 317
    19  AppKit                         
    0x00007fff8b719729 +[NSBundle(NSNibLoading) _loadNibFile:nameTable:withZone:ownerBundle:] + 219
    20  AppKit                         
    0x00007fff8b956773 -[NSBundle(NSNibLoading) loadNibFile:externalNameTable:withZone:] + 150
    21  CoreMessage                   
    0x00007fff8a76967c -[NSBundle(MessageFrameworkAdditions) loadNibNamed:owner:] + 95
    22  Mail                           
    0x000000010e4f7802 Mail + 38914
    23  Mail                           
    0x000000010e4f76cc Mail + 38604
    24  Mail                           
    0x000000010e66f89c Mail + 1579164
    25  AppKit                         
    0x00007fff8b86aa59 -[NSApplication sendAction:to:from:] + 342
    26  AppKit                         
    0x00007fff8b9a044c -[NSMenuItem _corePerformAction] + 406
    27  AppKit                         
    0x00007fff8b9a013a -[NSCarbonMenuImpl performActionWithHighlightingForItemAtIndex:] + 133
    28  AppKit                         
    0x00007fff8b68d46f -[NSMenu _internalPerformActionForItemAtIndex:] + 36
    29  AppKit                         
    0x00007fff8b68d2f7 -[NSCarbonMenuImpl _carbonCommandProcessEvent:handlerCallRef:] + 135
    30  AppKit                         
    0x00007fff8b999245 NSSLMMenuEventHandler + 342
    31  HIToolbox                     
    0x00007fff822a4f0a _ZL23DispatchEventToHandlersP14EventTargetRecP14OpaqueEventRefP14HandlerCallRec + 1206
    32  HIToolbox                     
    0x00007fff822a43d9 _ZL30SendEventToEventTargetInternalP14OpaqueEventRefP20OpaqueEventTargetRefP14H andlerCallRec + 410
    33  HIToolbox                     
    0x00007fff822ba1bd SendEventToEventTarget + 40
    34  HIToolbox                     
    0x00007fff822f0e89 _ZL18SendHICommandEventjPK9HICommandjjhPKvP20OpaqueEventTargetRefS5_PP14OpaqueE ventRef + 443
    35  HIToolbox                     
    0x00007fff82295c11 SendMenuCommandWithContextAndModifiers + 59
    36  HIToolbox                     
    0x00007fff82295bc3 SendMenuItemSelectedEvent + 254
    37  HIToolbox                     
    0x00007fff82295a4f _ZL19FinishMenuSelectionP13SelectionDataP10MenuResultS2_ + 94
    38  HIToolbox                     
    0x00007fff82271aab _ZL14MenuSelectCoreP8MenuData5PointdjPP13OpaqueMenuRefPt + 605
    39  HIToolbox                     
    0x00007fff822710b8 _HandleMenuSelection2 + 565
    40  AppKit                         
    0x00007fff8b8589c6 _NSHandleCarbonMenuEvent + 245
    41  AppKit                         
    0x00007fff8b77ab7f _DPSNextEvent + 2073
    42  AppKit                         
    0x00007fff8b779ed2 -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 128
    43  AppKit                         
    0x00007fff8b771283 -[NSApplication run] + 517
    44  AppKit                         
    0x00007fff8b715cb6 NSApplicationMain + 869
    45  libdyld.dylib                 
    0x00007fff89b217e1 start + 0
    Thread 0 Crashed:: Dispatch queue: com.apple.main-thread
    0   libsystem_kernel.dylib   
    0x00007fff8a201212 __pthread_kill + 10
    1   libsystem_c.dylib       
    0x00007fff8b1c3af4 pthread_kill + 90
    2   libsystem_c.dylib       
    0x00007fff8b207dce abort + 143
    3   libc++abi.dylib         
    0x00007fff8272ba17 abort_message + 257
    4   libc++abi.dylib         
    0x00007fff827293c6 default_terminate() + 28
    5   libobjc.A.dylib         
    0x00007fff8ed57873 _objc_terminate() + 91
    6   libc++.1.dylib           
    0x00007fff85dd78fe std::terminate() + 20
    7   libobjc.A.dylib         
    0x00007fff8ed575de objc_terminate + 9
    8   libdispatch.dylib       
    0x00007fff8a1b50ca _dispatch_client_callout + 28
    9   libdispatch.dylib       
    0x00007fff8a1b5041 dispatch_once_f + 50
    10  com.apple.mail           
    0x000000010e4f87e8 0x10e4ee000 + 42984
    11  com.apple.mail           
    0x000000010e4f86a6 0x10e4ee000 + 42662
    12  com.apple.CoreFoundation 
    0x00007fff880a7e89 -[NSSet makeObjectsPerformSelector:] + 201
    13  com.apple.AppKit         
    0x00007fff8b73b216 -[NSIBObjectData nibInstantiateWithOwner:topLevelObjects:] + 1168
    14  com.apple.AppKit         
    0x00007fff8b71a1fd loadNib + 317
    15  com.apple.AppKit         
    0x00007fff8b719729 +[NSBundle(NSNibLoading) _loadNibFile:nameTable:withZone:ownerBundle:] + 219
    16  com.apple.AppKit         
    0x00007fff8b956773 -[NSBundle(NSNibLoading) loadNibFile:externalNameTable:withZone:] + 150
    17  com.apple.CoreMessage   
    0x00007fff8a76967c -[NSBundle(MessageFrameworkAdditions) loadNibNamed:owner:] + 95
    18  com.apple.mail           
    0x000000010e4f7802 0x10e4ee000 + 38914
    19  com.apple.mail           
    0x000000010e4f76cc 0x10e4ee000 + 38604
    20  com.apple.mail           
    0x000000010e66f89c 0x10e4ee000 + 1579164
    21  com.apple.AppKit         
    0x00007fff8b86aa59 -[NSApplication sendAction:to:from:] + 342
    22  com.apple.AppKit         
    0x00007fff8b9a044c -[NSMenuItem _corePerformAction] + 406
    23  com.apple.AppKit         
    0x00007fff8b9a013a -[NSCarbonMenuImpl performActionWithHighlightingForItemAtIndex:] + 133
    24  com.apple.AppKit         
    0x00007fff8b68d46f -[NSMenu _internalPerformActionForItemAtIndex:] + 36
    25  com.apple.AppKit         
    0x00007fff8b68d2f7 -[NSCarbonMenuImpl _carbonCommandProcessEvent:handlerCallRef:] + 135
    26  com.apple.AppKit         
    0x00007fff8b999245 NSSLMMenuEventHandler + 342
    27  com.apple.HIToolbox     
    0x00007fff822a4f0a DispatchEventToHandlers(EventTargetRec*, OpaqueEventRef*, HandlerCallRec*) + 1206
    28  com.apple.HIToolbox     
    0x00007fff822a43d9 SendEventToEventTargetInternal(OpaqueEventRef*, OpaqueEventTargetRef*, HandlerCallRec*) + 410
    29  com.apple.HIToolbox     
    0x00007fff822ba1bd SendEventToEventTarget + 40
    30  com.apple.HIToolbox     
    0x00007fff822f0e89 SendHICommandEvent(unsigned int, HICommand const*, unsigned int, unsigned int, unsigned char, void const*, OpaqueEventTargetRef*, OpaqueEventTargetRef*, OpaqueEventRef**) + 443
    31  com.apple.HIToolbox     
    0x00007fff82295c11 SendMenuCommandWithContextAndModifiers + 59
    32  com.apple.HIToolbox     
    0x00007fff82295bc3 SendMenuItemSelectedEvent + 254
    33  com.apple.HIToolbox     
    0x00007fff82295a4f FinishMenuSelection(SelectionData*, MenuResult*, MenuResult*) + 94
    34  com.apple.HIToolbox     
    0x00007fff82271aab MenuSelectCore(MenuData*, Point, double, unsigned int, OpaqueMenuRef**, unsigned short*) + 605
    35  com.apple.HIToolbox     
    0x00007fff822710b8 _HandleMenuSelection2 + 565
    36  com.apple.AppKit         
    0x00007fff8b8589c6 _NSHandleCarbonMenuEvent + 245
    37  com.apple.AppKit         
    0x00007fff8b77ab7f _DPSNextEvent + 2073
    38  com.apple.AppKit         
    0x00007fff8b779ed2 -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 128
    39  com.apple.AppKit         
    0x00007fff8b771283 -[NSApplication run] + 517
    40  com.apple.AppKit         
    0x00007fff8b715cb6 NSApplicationMain + 869
    41  libdyld.dylib           
    0x00007fff89b217e1 start + 1
    Thread 1:: Dispatch queue: com.apple.libdispatch-manager
    0   libsystem_kernel.dylib   
    0x00007fff8a201d16 kevent + 10
    1   libdispatch.dylib       
    0x00007fff8a1b7dea _dispatch_mgr_invoke + 883
    2   libdispatch.dylib       
    0x00007fff8a1b79ee _dispatch_mgr_thread + 54
    Thread 2:: com.apple.NSURLConnectionLoader
    0   libsystem_kernel.dylib   
    0x00007fff8a1ff686 mach_msg_trap + 10
    1   libsystem_kernel.dylib   
    0x00007fff8a1fec42 mach_msg + 70
    2   com.apple.CoreFoundation 
    0x00007fff8804c803 __CFRunLoopServiceMachPort + 195
    3   com.apple.CoreFoundation 
    0x00007fff88051ee6 __CFRunLoopRun + 1078
    4   com.apple.CoreFoundation 
    0x00007fff880516b2 CFRunLoopRunSpecific + 290
    5   com.apple.Foundation     
    0x00007fff8cc13586 +[NSURLConnection(Loader) _resourceLoadLoop:] + 356
    6   com.apple.Foundation     
    0x00007fff8cc71612 __NSThread__main__ + 1345
    7   libsystem_c.dylib       
    0x00007fff8b1c2742 _pthread_start + 327
    8   libsystem_c.dylib       
    0x00007fff8b1af181 thread_start + 13
    Thread 3:: Dispatch queue: com.apple.root.default-overcommit-priority
    0   libsystem_kernel.dylib   
    0x00007fff8a2010fa __psynch_cvwait + 10
    1   libsystem_c.dylib       
    0x00007fff8b1c6fc3 _pthread_cond_wait + 927
    2   com.apple.Foundation     
    0x00007fff8cc115a9 -[__NSOperationInternal waitUntilFinishedOrTimeout:] + 227
    3   com.apple.IMAP           
    0x00007fff8dcbb378 -[IMAPClientOperationQueue waitUntilOperationIsFinished:] + 167
    4   com.apple.IMAP           
    0x00007fff8dcd485e -[IMAPGateway waitUntilClientOperationIsFinished:] + 168
    5   com.apple.IMAP           
    0x00007fff8dcd47a6 -[IMAPGateway addClientOperation:toQueueAndWaitUntilFinished:] + 411
    6   com.apple.IMAP           
    0x00007fff8dcd6523 -[IMAPGateway _storeFlags:state:forUids:mailboxName:] + 107
    7   com.apple.IMAP           
    0x00007fff8dcd6332 -[IMAPGateway _expunge:orStoreFlags:state:forUids:] + 206
    8   com.apple.IMAP           
    0x00007fff8dcd625f -[IMAPGateway storeFlags:state:forUids:] + 30
    9   com.apple.MessageFramework
    0x00007fff89c2f9b0 -[LibraryIMAPStore _synchronouslyStoreFlagsFromDictionary:forMessages:] + 1035
    10  com.apple.MessageFramework
    0x00007fff89c2f58d -[LibraryIMAPStore _setFlagsFromDictionary:forMessages:] + 232
    11  com.apple.MessageFramework
    0x00007fff89c2f470 -[LibraryIMAPStore _internalSetFlagsFromDictionary:forMessages:] + 795
    12  com.apple.MessageFramework
    0x00007fff89cb2b86 __76-[LibraryIMAPStore async_setFlagsFromDictionary:forMessages:updatingServer:]_block_invoke_0532 + 123
    13  com.apple.Foundation     
    0x00007fff8cc94a7c -[NSBlockOperation main] + 124
    14  com.apple.CoreMessage   
    0x00007fff8a747d55 -[MFTaskOperation main] + 709
    15  com.apple.Foundation     
    0x00007fff8cc6a986 -[__NSOperationInternal start] + 684
    16  com.apple.Foundation     
    0x00007fff8cc721a1 __block_global_6 + 129
    17  libdispatch.dylib       
    0x00007fff8a1b8f01 _dispatch_call_block_and_release + 15
    18  libdispatch.dylib       
    0x00007fff8a1b50b6 _dispatch_client_callout + 8
    19  libdispatch.dylib       
    0x00007fff8a1b61fa _dispatch_worker_thread2 + 304
    20  libsystem_c.dylib       
    0x00007fff8b1c4cab _pthread_wqthread + 404
    21  libsystem_c.dylib       
    0x00007fff8b1af171 start_wqthread + 13
    Thread 4:: com.apple.CFSocket.private
    0   libsystem_kernel.dylib   
    0x00007fff8a201322 __select + 10
    1   com.apple.CoreFoundation 
    0x00007fff880914e6 __CFSocketManager + 1302
    2   libsystem_c.dylib       
    0x00007fff8b1c2742 _pthread_start + 327
    3   libsystem_c.dylib       
    0x00007fff8b1af181 thread_start + 13
    Thread 5:
    0   libsystem_kernel.dylib   
    0x00007fff8a1ff686 mach_msg_trap + 10
    1   libsystem_kernel.dylib   
    0x00007fff8a1fec42 mach_msg + 70
    2   com.apple.CoreFoundation 
    0x00007fff8804c803 __CFRunLoopServiceMachPort + 195
    3   com.apple.CoreFoundation 
    0x00007fff88051ee6 __CFRunLoopRun + 1078
    4   com.apple.CoreFoundation 
    0x00007fff880516b2 CFRunLoopRunSpecific + 290
    5   com.apple.Foundation     
    0x00007fff8cc7689e -[NSRunLoop(NSRunLoop) runMode:beforeDate:] + 268
    6   com.apple.Foundation     
    0x00007fff8cc0f18a -[NSRunLoop(NSRunLoop) run] + 74
    7   com.apple.CoreMessage   
    0x00007fff8a6ff117 +[_NSSocket _runIOThread] + 77
    8   com.apple.Foundation     
    0x00007fff8cc71612 __NSThread__main__ + 1345
    9   libsystem_c.dylib       
    0x00007fff8b1c2742 _pthread_start + 327
    10  libsystem_c.dylib       
    0x00007fff8b1af181 thread_start + 13
    Thread 6:
    0   libsystem_kernel.dylib   
    0x00007fff8a2016d6 __workq_kernreturn + 10
    1   libsystem_c.dylib       
    0x00007fff8b1c4eec _pthread_workq_return + 25
    2   libsystem_c.dylib       
    0x00007fff8b1c4cb3 _pthread_wqthread + 412
    3   libsystem_c.dylib       
    0x00007fff8b1af171 start_wqthread + 13
    Thread 7:
    0   libsystem_kernel.dylib   
    0x00007fff8a2016d6 __workq_kernreturn + 10
    1   libsystem_c.dylib       
    0x00007fff8b1c4eec _pthread_workq_return + 25
    2   libsystem_c.dylib       
    0x00007fff8b1c4cb3 _pthread_wqthread + 412
    3   libsystem_c.dylib       
    0x00007fff8b1af171 start_wqthread + 13
    Thread 8:: Dispatch queue: com.apple.root.default-overcommit-priority
    0   libsystem_kernel.dylib   
    0x00007fff8a1ff686 mach_msg_trap + 10
    1   libsystem_kernel.dylib   
    0x00007fff8a1fec42 mach_msg + 70
    2   com.apple.CoreFoundation 
    0x00007fff8804c803 __CFRunLoopServiceMachPort + 195
    3   com.apple.CoreFoundation 
    0x00007fff88051ee6 __CFRunLoopRun + 1078
    4   com.apple.CoreFoundation 
    0x00007fff880516b2 CFRunLoopRunSpecific + 290
    5   com.apple.CoreMessage   
    0x00007fff8a6fe4a9 _handleRequestWithTimeout + 1527
    6   com.apple.CoreMessage   
    0x00007fff8a700c8b -[_NSSocket readBytes:length:error:] + 161
    7   com.apple.CoreMessage   
    0x00007fff8a71ae3b -[Connection _readBytesFromSocketIntoBuffer:amount:requireAllBytes:error:] + 76
    8   com.apple.CoreMessage   
    0x00007fff8a71ad21 -[Connection _fillBuffer:] + 764
    9   com.apple.CoreMessage   
    0x00007fff8a71a8b3 -[Connection _readLineIntoData:error:] + 202
    10  com.apple.IMAP           
    0x00007fff8dcc24d6 -[IMAPConnection _readLineIntoData:error:] + 53
    11  com.apple.IMAP           
    0x00007fff8dcc8e64 -[IMAPConnection(MFPrivate) _readDataOfLength:intoData:error:] + 112
    12  com.apple.IMAP           
    0x00007fff8dceb478 -[IMAPResponse initWithConnection:error:] + 144
    13  com.apple.IMAP           
    0x00007fff8dcc25ca -[IMAPConnection _copyNextServerResponse:] + 55
    14  com.apple.IMAP           
    0x00007fff8dcc283b -[IMAPConnection _copyNextTaggedOrContinuationResponseForCommand:exists:] + 551
    15  com.apple.IMAP           
    0x00007fff8dcc7ad7 -[IMAPConnection _responseFromSendingOperation:] + 863
    16  com.apple.IMAP           
    0x00007fff8dcc6407 -[IMAPConnection executeUIDStore:] + 86
    17  com.apple.IMAP           
    0x00007fff8dcbdd93 -[IMAPClientUIDStoreOperation executeOnConnection:] + 26
    18  com.apple.IMAP           
    0x00007fff8dcc1a45 -[IMAPConnection prepareAndExecuteOperation:outWrongState:] + 1247
    19  com.apple.IMAP           
    0x00007fff8dcd4551 -[IMAPGateway _allowClientOperationThrough:] + 1237
    20  com.apple.IMAP           
    0x00007fff8dcd4024 -[IMAPGateway allowClientOperationThrough:] + 369
    21  com.apple.IMAP           
    0x00007fff8dcb8b33 -[IMAPClientOperation main] + 84
    22  com.apple.Foundation     
    0x00007fff8cc6a986 -[__NSOperationInternal start] + 684
    23  com.apple.Foundation     
    0x00007fff8cc721a1 __block_global_6 + 129
    24  libdispatch.dylib       
    0x00007fff8a1b8f01 _dispatch_call_block_and_release + 15
    25  libdispatch.dylib       
    0x00007fff8a1b50b6 _dispatch_client_callout + 8
    26  libdispatch.dylib       
    0x00007fff8a1b61fa _dispatch_worker_thread2 + 304
    27  libsystem_c.dylib       
    0x00007fff8b1c4cab _pthread_wqthread + 404
    28  libsystem_c.dylib       
    0x00007fff8b1af171 start_wqthread + 13
    Thread 9:: Dispatch queue: com.apple.root.default-overcommit-priority
    0   libsystem_kernel.dylib   
    0x00007fff8a2010fa __psynch_cvwait + 10
    1   libsystem_c.dylib       
    0x00007fff8b1c6fc3 _pthread_cond_wait + 927
    2   com.apple.Foundation     
    0x00007fff8cc115a9 -[__NSOperationInternal waitUntilFinishedOrTimeout:] + 227
    3   com.apple.IMAP           
    0x00007fff8dcbb378 -[IMAPClientOperationQueue waitUntilOperationIsFinished:] + 167
    4   com.apple.IMAP           
    0x00007fff8dcd485e -[IMAPGateway waitUntilClientOperationIsFinished:] + 168
    5   com.apple.IMAP           
    0x00007fff8dcd47a6 -[IMAPGateway addClientOperation:toQueueAndWaitUntilFinished:] + 411
    6   com.apple.IMAP           
    0x00007fff8dcbeb26 -[IMAPCommandPipeline failureResponsesFromSendingCommandsWithGateway:responseHandler:highPriority:] + 284
    7   com.apple.MessageFramework
    0x00007fff89c30b42 -[LibraryIMAPStore _waitForDataFromDownload:uid:gateway:] + 411
    8   com.apple.MessageFramework
    0x00007fff89c0ca39 -[LibraryIMAPStore _fetchBodyDataForMessage:andHeaderDataIfReadilyAvailable:fetchIfNotAvailable:] + 347
    9   com.apple.MessageFramework
    0x00007fff89c0c606 -[MessageStore bodyDataForMessage:fetchIfNotAvailable:allowPartial:] + 329
    10  com.apple.IMAP           
    0x00007fff8dce70d6 -[IMAPMessageWithCache bodyDataFetchIfNotAvailable:allowPartial:] + 197
    11  com.apple.CoreMessage   
    0x00007fff8a75a6c1 -[MimePart(MessageSupport) parseMimeBodyFetchIfNotAvailable:allowPartial:] + 170
    12  com.apple.MessageFramework
    0x00007fff89c0c1fd -[MessageStore _fetchBodyForMessage:fetchIfNotAvailable:updateFlags:allowPartial:] + 231
    13  com.apple.MessageFramework
    0x00007fff89c0b5d0 -[MessageStore bodyForMessage:fetchIfNotAvailable:updateFlags:allowPartial:] + 162
    14  com.apple.MessageFramework
    0x00007fff89ce26fd -[MessageCriterion _evaluateJunkMailCriterion:] + 462
    15  com.apple.MessageFramework
    0x00007fff89ce39b7 -[MessageCriterion _evaluateMessage:] + 80
    16  com.apple.MessageFramework
    0x00007fff89ce395f -[MessageCriterion doesMessageSatisfyRuleEvaluationCriterion:] + 75
    17  com.apple.MessageFramework
    0x00007fff89cf1012 -[MessageRule doesMessageSatisfyCriteria:] + 453
    18  com.apple.MessageFramework
    0x00007fff89ce91e7 +[MessageRouter putRulesThatWantsToHandleMessage:intoArray:colorRulesOnly:] + 499
    19  com.apple.MessageFramework
    0x00007fff89ceacd5 -[MessageRouter routeMessages:fromStores:] + 2228
    20  com.apple.MessageFramework
    0x00007fff89cf7cf7 -[MessageStore routeMessages:isUserAction:] + 123
    21  com.apple.IMAP           
    0x00007fff8dcdf078 -[IMAPMailboxSyncEngine _processResponsesWithMonitor:] + 1709
    22  com.apple.IMAP           
    0x00007fff8dcde5a2 -[IMAPMailboxSyncEngine _goWithMessages:] + 858
    23  com.apple.MessageFramework
    0x00007fff89bfb682 -[LibraryIMAPStore openSynchronouslyUpdatingMetadata:withOptions:] + 373
    24  com.apple.MessageFramework
    0x00007fff89c15556 -[LibraryIMAPStore _fetchForCheckingNewMail:] + 53
    25  com.apple.MessageFramework
    0x00007fff89c22f5a -[RemoteStoreAccount _synchronizeMailboxesSynchronously] + 269
    26  com.apple.MessageFramework
    0x00007fff89c17aa3 -[RemoteStoreAccount _synchronizeAccountWithServerWithUserInput:] + 658
    27  com.apple.MessageFramework
    0x00007fff89c175e3 -[IMAPAccount _synchronizeAccountWithServerWithUserInput:] + 45
    28  com.apple.CoreFoundation 
    0x00007fff880a363c __invoking___ + 140
    29  com.apple.CoreFoundation 
    0x00007fff880a34d7 -[NSInvocation invoke] + 263
    30  com.apple.CoreMessage   
    0x00007fff8a761b67 -[MonitoredInvocation invoke] + 225
    31  com.apple.CoreMessage   
    0x00007fff8a77a0c2 -[ThrowingInvocationOperation main] + 33
    32  com.apple.CoreMessage   
    0x00007fff8a726342 -[_MFInvocationOperation main] + 431
    33  com.apple.Foundation     
    0x00007fff8cc6a986 -[__NSOperationInternal start] + 684
    34  com.apple.Foundation     
    0x00007fff8cc721a1 __block_global_6 + 129
    35  libdispatch.dylib       
    0x00007fff8a1b8f01 _dispatch_call_block_and_release + 15
    36  libdispatch.dylib       
    0x00007fff8a1b50b6 _dispatch_client_callout + 8
    37  libdispatch.dylib       
    0x00007fff8a1b61fa _dispatch_worker_thread2 + 304
    38  libsystem_c.dylib       
    0x00007fff8b1c4cab _pthread_wqthread + 404
    39  libsystem_c.dylib       
    0x00007fff8b1af171 start_wqthread + 13
    Thread 10:: -[IMAPMailboxSyncEngine _goWithMessagesIfNeeded:]  Dispatch queue: com.apple.root.default-overcommit-priority
    0   libsystem_kernel.dylib   
    0x00007fff8a201122 __psynch_mutexwait + 10
    1   libsystem_c.dylib       
    0x00007fff8b1c7d9d pthread_mutex_lock + 536
    2   com.apple.IMAP           
    0x00007fff8dcd8cfa -[IMAPMailboxSyncEngine _copyDataSource] + 32
    3   com.apple.IMAP           
    0x00007fff8dcde277 -[IMAPMailboxSyncEngine _goWithMessages:] + 47
    4   com.apple.CoreFoundation 
    0x00007fff880a363c __invoking___ + 140
    5   com.apple.CoreFoundation 
    0x00007fff880a34d7 -[NSInvocation invoke] + 263
    6   com.apple.CoreMessage   
    0x00007fff8a761b67 -[MonitoredInvocation invoke] + 225
    7   com.apple.CoreMessage   
    0x00007fff8a77a0c2 -[ThrowingInvocationOperation main] + 33
    8   com.apple.CoreMessage   
    0x00007fff8a726342 -[_MFInvocationOperation main] + 431
    9   com.apple.Foundation     
    0x00007fff8cc6a986 -[__NSOperationInternal start] + 684
    10  com.apple.Foundation     
    0x00007fff8cc721a1 __block_global_6 + 129
    11  libdispatch.dylib       
    0x00007fff8a1b8f01 _dispatch_call_block_and_release + 15
    12  libdispatch.dylib       
    0x00007fff8a1b50b6 _dispatch_client_callout + 8
    13  libdispatch.dylib       
    0x00007fff8a1b61fa _dispatch_worker_thread2 + 304
    14  libsystem_c.dylib       
    0x00007fff8b1c4cab _pthread_wqthread + 404
    15  libsystem_c.dylib       
    0x00007fff8b1af171 start_wqthread + 13
    Thread 11:
    0   libsystem_kernel.dylib   
    0x00007fff8a2016d6 __workq_kernreturn + 10
    1   libsystem_c.dylib       
    0x00007fff8b1c4eec _pthread_workq_return + 25
    2   libsystem_c.dylib       
    0x00007fff8b1c4cb3 _pthread_wqthread + 412
    3   libsystem_c.dylib       
    0x00007fff8b1af171 start_wqthread + 13
    Thread 12:
    0   libsystem_kernel.dylib   
    0x00007fff8a2016d6 __workq_kernreturn + 10
    1   libsystem_c.dylib       
    0x00007fff8b1c4eec _pthread_workq_return + 25
    2   libsystem_c.dylib       
    0x00007fff8b1c4cb3 _pthread_wqthread + 412
    3   libsystem_c.dylib       
    0x00007fff8b1af171 start_wqthread + 13
    Thread 13:: JavaScriptCore::BlockFree
    0   libsystem_kernel.dylib   
    0x00007fff8a2010fa __psynch_cvwait + 10
    1   libsystem_c.dylib       
    0x00007fff8b1c6f89 _pthread_cond_wait + 869
    2   com.apple.JavaScriptCore 
    0x00007fff86103d96 ***::ThreadCondition::timedWait(***::Mutex&, double) + 118
    3   com.apple.JavaScriptCore 
    0x00007fff86325d0a JSC::BlockAllocator::blockFreeingThreadMain() + 90
    4   com.apple.JavaScriptCore 
    0x00007fff8633b36f ***::wtfThreadEntryPoint(void*) + 15
    5   libsystem_c.dylib       
    0x00007fff8b1c2742 _pthread_start + 327
    6   libsystem_c.dylib       
    0x00007fff8b1af181 thread_start + 13
    Thread 14:: JavaScriptCore::Marking
    0   libsystem_kernel.dylib   
    0x00007fff8a2010fa __psynch_cvwait + 10
    1   libsystem_c.dylib       
    0x00007fff8b1c6f89 _pthread_cond_wait + 869
    2   com.apple.JavaScriptCore 
    0x00007fff86288724 JSC::SlotVisitor::drainFromShared(JSC::SlotVisitor::SharedDrainMode) + 212
    3   com.apple.JavaScriptCore 
    0x00007fff86288606 JSC::MarkStackThreadSharedData::markingThreadMain() + 214
    4   com.apple.JavaScriptCore 
    0x00007fff8633b36f ***::wtfThreadEntryPoint(void*) + 15
    5   libsystem_c.dylib       
    0x00007fff8b1c2742 _pthread_start + 327
    6   libsystem_c.dylib       
    0x00007fff8b1af181 thread_start + 13
    Thread 15:: JavaScriptCore::Marking
    0   libsystem_kernel.dylib   
    0x00007fff8a2010fa __psynch_cvwait + 10
    1   libsystem_c.dylib       
    0x00007fff8b1c6f89 _pthread_cond_wait + 869
    2   com.apple.JavaScriptCore 
    0x00007fff86288724 JSC::SlotVisitor::drainFromShared(JSC::SlotVisitor::SharedDrainMode) + 212
    3   com.apple.JavaScriptCore 
    0x00007fff86288606 JSC::MarkStackThreadSharedData::markingThreadMain() + 214
    4   com.apple.JavaScriptCore 
    0x00007fff8633b36f ***::wtfThreadEntryPoint(void*) + 15
    5   libsystem_c.dylib       
    0x00007fff8b1c2742 _pthread_start + 327
    6   libsystem_c.dylib       
    0x00007fff8b1af181 thread_start + 13
    Thread 16:: JavaScriptCore::Marking
    0   libsystem_kernel.dylib   
    0x00007fff8a2010fa __psynch_cvwait + 10
    1   libsystem_c.dylib       
    0x00007fff8b1c6f89 _pthread_cond_wait + 869
    2   com.apple.JavaScriptCore 
    0x00007fff86288724 JSC::SlotVisitor::drainFromShared(JSC::SlotVisitor::SharedDrainMode) + 212
    3   com.apple.JavaScriptCore 
    0x00007fff86288606 JSC::MarkStackThreadSharedData::markingThreadMain() + 214
    4   com.apple.JavaScriptCore 
    0x00007fff8633b36f ***::wtfThreadEntryPoint(void*) + 15
    5   libsystem_c.dylib       
    0x00007fff8b1c2742 _pthread_start + 327
    6   libsystem_c.dylib       
    0x00007fff8b1af181 thread_start + 13
    Thread 17:
    0   libsystem_kernel.dylib   
    0x00007fff8a2016d6 __workq_kernreturn + 10
    1   libsystem_c.dylib       
    0x00007fff8b1c4eec _pthread_workq_return + 25
    2   libsystem_c.dylib       
    0x00007fff8b1c4cb3 _pthread_wqthread + 412
    3   libsystem_c.dylib       
    0x00007fff8b1af171 start_wqthread + 13
    Thread 0 crashed with X86 Thread State (64-bit):
      rax: 0x0000000000000000  rbx: 0x0000000000000006  rcx: 0x00007fff517101d8  rdx: 0x0000000000000000
      rdi: 0x0000000000000c07  rsi: 0x0000000000000006  rbp: 0x00007fff51710200  rsp: 0x00007fff517101d8
       r8: 0x00007fff732aa278   r9: 0x0000000000000002  r10: 0x0000000020000000  r11: 0x0000000000000206
      r12: 0x00007fff51710360  r13: 0x00007ffe6bf40900  r14: 0x00007fff732ab180  r15: 0x00007fff51710240
      rip: 0x00007fff8a201212  rfl: 0x0000000000000206  cr2: 0x00007fff732a3fe8
    Logical CPU: 0
    Binary Images:
    0x10e4ee000 -   
    0x10e88dfff  com.apple.mail (6.2 - 1499) <CA67357A-2C0F-352B-98FC-1752A4438371> /Applications/Mail.app/Contents/MacOS/Mail
    0x10eb70000 -   
    0x10eb74ff7  com.apple.google.iaplugin (2.1 - 210) <2C3B7EE3-FA27-3411-99CE-FA2F8EC84B90> /System/Library/InternetAccounts/Google.iaplugin/Contents/MacOS/Google
    0x10ec1e000 -   
    0x10ec3bff7  com.apple.Mail.Syncer (6.0 - 1499) <F3DF0BBB-9D3B-38D0-B503-43895E6F50F9> /System/Library/Frameworks/Message.framework/Versions/B/Resources/Syncer.syncsc hema/Contents/MacOS/Syncer
    0x10ed02000 -   
    0x10ed03fff  libACSClient.dylib (48) <DCF5B9D9-B76E-38C3-A8A8-F5CBE52F8CEB> /usr/lib/libACSClient.dylib
    0x110ad8000 -   
    0x110adafff  apop.so (169) <2A1CAD32-5734-3D4E-868B-E773DCD192B5> /usr/lib/sasl2/apop.so
    0x110ade000 -   
    0x110af2fff  dhx.so (169) <3C4D7E51-F30B-3A5B-9BB6-4426EC607E10> /usr/lib/sasl2/dhx.so
    0x110afe000 -   
    0x110b07ff7  digestmd5WebDAV.so (169) <D1EF0A0E-92FA-321F-9445-DD08A64C2493> /usr/lib/sasl2/digestmd5WebDAV.so
    0x110b0c000 -   
    0x110b0efff  libanonymous.2.so (166) <6417EA9E-4202-31DA-A086-B58F1E92C931> /usr/lib/sasl2/libanonymous.2.so
    0x110b15000 -   
    0x110b18fff  libcrammd5.2.so (166) <866C8DD4-5086-376A-BFC7-897A40327DB4> /usr/lib/sasl2/libcrammd5.2.so
    0x110b1d000 -   
    0x110b22fff  libgssapiv2.2.so (166) <83A21AF3-FB42-3ACC-B6ED-26B23388C4F4> /usr/lib/sasl2/libgssapiv2.2.so
    0x110e50000 -   
    0x110e55ff7  libFontRegistryUI.dylib (100) <9F172961-DB6F-3A82-9F90-28F9A233F755> /System/Library/Frameworks/ApplicationServices.framework/Frameworks/ATS.framewo rk/Resources/libFontRegistryUI.dylib
    0x111397000 -   
    0x1113a0ff7  libdigestmd5.2.so (166) <F2344A08-F032-35D3-9EBB-F147D4100517> /usr/lib/sasl2/libdigestmd5.2.so
    0x1113a5000 -   
    0x1113a7fff  login.so (166) <1F868238-FB26-3477-B31C-67DB400D6F68> /usr/lib/sasl2/login.so
    0x1113ab000 -   
    0x1113b0fff  libntlm.so (166) <82608FB8-E225-39FF-BC83-B9D3F89D7CEC> /usr/lib/sasl2/libntlm.so
    0x1113b5000 -   
    0x1113bcfff  libotp.2.so (166) <2AE53E63-A826-3E20-9B4D-476CC712410D> /usr/lib/sasl2/libotp.2.so
    0x1113c5000 -   
    0x1113c7fff  libplain.2.so (166) <074D7604-3435-3E01-A86B-FF102001FC5B> /usr/lib/sasl2/libplain.2.so
    0x1113cb000 -   
    0x1113cffff  libpps.so (169) <3C150ECF-0D94-3DBE-8AB6-7B0070700699> /usr/lib/sasl2/libpps.so
    0x1113d4000 -   
    0x1113d7fff  mschapv2.so (169) <9DAC741E-6BB8-3DFA-85AD-532EB20E780B> /usr/lib/sasl2/mschapv2.so
    0x1113dc000 -   
    0x111409fff  com.apple.DirectoryService.PasswordServerFramework (10.8 - 27) <4D67D74D-9200-3838-87D6-5E1968C81019> /System/Library/PrivateFrameworks/PasswordServer.framework/Versions/A/PasswordS erver
    0x11141f000 -   
    0x111421fff  pwauxprop.so (387) <02EC8AD8-70F5-3512-8026-B41832050634> /usr/lib/sasl2/pwauxprop.so
    0x111426000 -   
    0x111429fff  shadow_auxprop.so (169) <FE9BCBA3-7F30-303B-A815-8FADE514246E> /usr/lib/sasl2/shadow_auxprop.so
    0x11142e000 -   
    0x111430fff  smb_nt.so (169) <F6798ECD-BBC9-3055-96E9-3A9836E36E7A> /usr/lib/sasl2/smb_nt.so
    0x11143f000 -   
    0x111442fff  smb_ntlmv2.so (169) <FB9D0145-0F31-3FA1-A6B4-5F8530CC60CA> /usr/lib/sasl2/smb_ntlmv2.so
    0x112673000 -   
    0x112674fff  com.apple.AddressBook.LocalSourceBundle (2.1 - 1167) <07E0DB43-14DD-3741-BCCA-31CE397A53BC> /System/Library/Address Book Plug-Ins/LocalSource.sourcebundle/Contents/MacOS/LocalSource
    0x112686000 -   
    0x112689fff  com.apple.DirectoryServicesSource (2.1 - 1167) <2BB7BD50-BBB3-3FA9-BAB1-04C704726905> /System/Library/Address Book Plug-Ins/DirectoryServices.sourcebundle/Contents/MacOS/DirectoryServices
    0x112690000 -   
    0x1126e3fff  com.apple.AddressBook.CardDAVPlugin (10.8 - 332) <14042D69-8E1F-3241-A679-C7ED224F2C43> /System/Library/Address Book Plug-Ins/CardDAVPlugin.sourcebundle/Contents/MacOS/CardDAVPlugin
    0x11270f000 -   
    0x112720ff7  com.apple.NSServerNotificationCenter (5.0 - 5.0) <79D8FF5B-BBC9-3A86-8927-177738E5D857> /System/Library/Frameworks/ServerNotification.framework/Versions/A/ServerNotifi cation
    0x11295c000 -   
    0x112965fff  com.apple.exchange.iaplugin (2.1 - 210) <AC5786E6-4911-36C3-82C7-DD8A338A2EE6> /System/Library/InternetAccounts/Exchange.iaplugin/Contents/MacOS/Exchange
    0x11296f000 -   
    0x11298bfff  com.apple.icloud.iaplugin (1.0.1 - 238.3) <B6A99272-B09A-3C74-8516-39D39CC8E856> /System/Library/InternetAccounts/iCloud.iaplugin/Contents/MacOS/iCloud
    0x11299f000 -   
    0x1129f8fff  com.apple.AOSUI (1.1 - 149) <1F4006E0-FD21-3836-B94C-A2D4181759C8> /System/Library/PrivateFrameworks/AOSUI.framework/Versions/A/AOSUI
    0x112a32000 -   
    0x112a3cff7  com.apple.AppleSRP (5.0 - 1) <16B1431A-295A-386B-9159-A396877D6FE3> /System/Library/PrivateFrameworks/AppleSRP.framework/Versions/A/AppleSRP
    0x112a43000 -   
    0x112a55ff7  com.apple.syncservices.syncservicesui (7.0 - 713) <188BC0FA-C4F7-3F96-BACF-61CDFDDABE9C> /System/Library/PrivateFrameworks/SyncServicesUI.framework/Versions/A/SyncServi cesUI
    0x11309c000 -   
    0x11309fff7  com.apple.126.iaplugin (1.1 - 110) <28237247-AC0F-3346-B8F6-24D245CECC61> /System/Library/InternetAccounts/126.iaplugin/Contents/MacOS/126
    0x11385d000 -   
    0x11385eff7  ATSHI.dylib (341.1) <3328D0EC-BD75-3041-A458-05FFE934C019> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/ATSHI.dylib
    0x113a0b000 -   
    0x113a95ff7  com.apple.xquery (1.3.1 - 30) <04E0E165-BE1D-3DD7-899F-10AFD053B30C> /System/Library/PrivateFrameworks/XQuery.framework/XQuery
    0x113b53000 -   
    0x113b56ff7  com.apple.163.iaplugin (1.1 - 110) <F7B047C7-9FEF-35FE-B424-65588EE45305> /System/Library/InternetAccounts/163.iaplugin/Contents/MacOS/163
    0x113b5c000 -   
    0x113b61ff7  com.apple.contacts.iaplugin (2.1 - 1167) <0B5DCBCD-EB14-31A8-B195-1F52A62DC6E2> /System/Library/InternetAccounts/AddressBook.iaplugin/Contents/MacOS/AddressBoo k
    0x113b68000 -   
    0x113b6bfff  com.apple.aol.iaplugin (2.1 - 210) <21E2CE93-5CD8-31C8-8983-5B21189FF8A2> /System/Library/InternetAccounts/AOL.iaplugin/Contents/MacOS/AOL
    0x113b71000 -   
    0x113b79ff7  com.apple.calendar.iaplugin (6.0 - 1245) <96C245EE-2056-30B9-8FEB-31578CD70D64> /System/Library/InternetAccounts/Calendar.iaplugin/Contents/MacOS/Calendar
    0x113b82000 -   
    0x113b8aff7  com.apple.facebook.iaplugin (1.1 - 110) <E81B139F-46F9-381D-9BC2-FD268494B3DC> /System/Library/InternetAccounts/Facebook.iaplugin/Contents/MacOS/Facebook
    0x113b93000 -   
    0x113b9eff7  com.apple.flickr.iaplugin (1.1 - 110) <830A87A4-89C8-3786-AEBB-3D6879F665B4> /System/Library/InternetAccounts/Flickr.iaplugin/Contents/MacOS/Flickr
    0x113ba9000 -   
    0x113baefff  com.apple.chat.iaplugin (7.0.1 - 3314) <11923513-0085-30E5-812E-95A39C637D1B> /System/Library/InternetAccounts/iChat.iaplugin/Contents/MacOS/iChat
    0x113bb4000 -   
    0x113bbcfff  com.apple.mail.iaplugin (6.2 - 1499) <805FB6A7-0AC0-3EAE-8610-4042448F379A> /System/Library/InternetAccounts/Mail.iaplugin/Contents/MacOS/Mail
    0x113bc3000 -   
    0x113bc9ff7  com.apple.Notes.iaplugin (1.1 - 99) <46B8A3F3-9ED8-3538-BE02-C8D7EBE03EE3> /System/Library/InternetAccounts/Notes.iaplugin/Contents/MacOS/Notes
    0x113bd0000 -   
    0x113c11ff7  com.apple.Notes.framework (1.1 - 99) <1AE41D51-4594-374F-BA37-DA377AC20495> /System/Library/PrivateFrameworks/Notes.framework/Versions/A/Notes
    0x113c92000 -   
    0x113c97fff  com.apple.osxserver.iaplugin (2.1 - 210) <1A1A62B1-F045-30E5-B2B9-98B55062D329> /System/Library/InternetAccounts/OSXServer.iaplugin/Contents/MacOS/OSXServer
    0x113c9f000 -   
    0x113ca2fff  com.apple.qq.iaplugin (1.1 - 110) <5ADCB6DA-697E-3B72-88B7-CD5135876960> /System/Library/InternetAccounts/QQ.iaplugin/Contents/MacOS/QQ
    0x113ca8000 -   
    0x113cafff7  com.apple.tudou.iaplugin (1.1 - 110) <BCBDD485-DA59-3D36-A11F-A13C09D12CB4> /System/Library/InternetAccounts/Tudou.iaplugin/Contents/MacOS/Tudou
    0x113cb8000 -   
    0x113cbfff7  com.apple.twitter.iaplugin (1.1 - 110) <CF58CB2E-EAE1-3055-A709-E2477879386C> /System/Library/InternetAccounts/TwitterPlugin.iaplugin/Contents/MacOS/TwitterP lugin
    0x113cc8000 -   
    0x113ccffff  com.apple.vimeo.iaplugin (1.1 - 110) <BC0F39D8-21D7-388F-BCD9-841F5FB9E481> /System/Library/InternetAccounts/Vimeo.iaplugin/Contents/MacOS/Vimeo
    0x113cd8000 -   
    0x113cdffff  com.apple.weibo.iaplugin (1.1 - 110) <A06888AB-F3C0-35BC-8196-9A97014026B8> /System/Library/InternetAccounts/Weibo.iaplugin/Contents/MacOS/Weibo

    It's incapable of running 10.8 or 10.9; if it matters, getting to those versions or 10.7.5 requires going through 10.6.3 and 10.6.8.
    (97728)

Maybe you are looking for