Mail Panics every Friday morning with Region error

Every Friday morning around 8:00, Mail dies with the following error and I have to reboot the server. Could someone tell me why this happens?
PANIC: fatal region error detected; run recovery

Bryan Kennedy wrote:
Every Friday morning around 8:00, Mail dies with the following error and I have to reboot the server. Could someone tell me why this happens?
PANIC: fatal region error detected; run recovery
sounds like your mail db is hosed. get a copy of mailbfr at http://downloads.topicdesk.com/mailbfr/mailbfr-1.0.6.pkg.tar.gz
first i would backup everything to another drive.
I always have mail stores not on the primary OS drive, so you can swap out the OS when it gets funky,
run repair/reconstrcut db on your system.( using mailbfr ) gui tools don't work. their for looking.

Similar Messages

  • My wife was looking for me last Friday morning with the app find my phone.  The app showed that I was not where I said I was and she does not believe me.  How is the explanation for this mistake, I know where I was at but she is very upset.

    Please help!!! My wife has a Samsung galaxy 4s, and she was looking for me last Friday (09/19/2014) morning with the find my phone app.  I have a iPhone 5S and the app placed me in a location about 5 or 6 miles away from where I was actually at.  My wife if very up set and thinks I am lying to her.  Is there a way to get here the proper information so she does not have to feel like I am a lier.  This is a big problem and I need help. I can get video but it is very  expensive and takes a court order. I truly need help with this I have kids and this is problem is destroying our marriage.
    Thanks
    Greg Soileau

    How was your wife using the Find My iPhone app from a Samsung phone? But, that question aside, your wife should educate herself on how GPS works, especially on a cell phone. GPS signals can be interfered with by trees, buildings, clouds. Off by several miles would be unusual, though.
    If your wife is tracking your cell phone and not believing what you tell her, you may want to consider counseling as there are some very serious issues that go way beyond the technology.
    Best of luck.

  • Outlook 2013 Mail Setup Add Account crashes with Rundll32 error and will not connect to Exchange in Windows 8.1

    I got a new Acer laptop with Windows 8.1 over 3 weeks ago, and installed Office Professional Plus 2013.  I have an Office365 E1 subscription, but this Office 2013 is not associated with the subscription.
    When I go to setup any email account using the automatic mode (primary will be Exchange Online with my 365 account, but I've tested POP email accounts with the same result), the Mail Setup crashes once the email address and password is entered and Next is
    pressed.  This error message is displayed:
    "Windows host process (Rundll32) has stopped working
    A problem caused the program to stop working correctly.  Windows will close the program and notify you if a solution is available."
    The step displayed as in process when the crash occurs is the "Searching for [email address] settings".  The first step "Establishing network connection" is checked complete.
    I've run an Office Repair, and there's no change.  I've run a clean boot, and even uninstalled/reinstalled with the same error still appearing.
    If I use the manual setup mode and input the server outlook.office365.com, both the Check Name function and the Next button result in the error message:
    "The action cannot be completed. The connection to Microsoft Exchange is unavailable.  Outlook must be online or connected to complete this action."  The folks in the Office365 support community have told me that Office365 ExchangeOnline
    servers have to be configured with the auto-setup and cannot be setup manually.
    I've done both a system refresh and a system reset, and I'm still getting the Rundll32 error.  I tried to run a reset from a disk, but the laptop does not want to run it from the external DVD drive (giving error messages), so that doesn't appear
    to be an option.
    I've searched extensively, and there doesn't seem to be any existing threads where anything like this problem is discussed. 
    Can you offer any ideas or solutions?
    After THREE WEEKS of troubleshooting this, and some significant delays in getting help from support, I'm really close to returning this laptop.
    I need an answer on this ASAP to see if you've got an insights before I return the laptop for a new one.
    Thanks,
    Jason

    IMPORTANT: I found the solution.  Another user figured it out and posted the answer on another thread.
    Please spread this around to all other Outlook support techs so they know to point people in the direction of the quick (though very obscure) fix to this problem. 
    See this thread for how to disable graphics acceleration in Office, which iswhat causes the rundll23 error.
    http://answers.microsoft.com/en-us/office/forum/office_2013_release-outlook/rundll32-outlook-mail-windows-host-process-error/bf90e1fd-3985-4b15-bc50-f9b3e937a859?tm=1424345216297
    Thanks,
    Jason

  • Upon firefox update this morning, every window opens with error: CaptureMovieFox could not be initialized. Some files of the extension may be missing or there is a problem with the Firefox.

    upon firefox update this morning, every window opens with this error in a popup: ''CaptureMovieFox could not be initialized. Some files of the extension may be missing or there is a problem with the Firefox.''
    when I close the popup, the original window opens seemingly without issue.

    http://getfirebug.com/releases/firebug/1.8/
    visit this and find the compatible version of this f***ing firebug. which certainly has nothing to do with us (not-programmers). i have been having this problem for months but now the last link worked for my firefox 6. Find yours here.

  • Help with Error:  PANIC: fatal region error detected; run recovery

    Here's what I'm trying to do:
    I am trying to us BDBXML in a webapp using tomcat 5.5. I have a class that is responsible for opening and closing the db. This class is accessed by a servlet for some AJAX RCP stuff and it also serves as an access point for a Web Service (Apache Axis). This class looks like this:
    public class DG implements Serializable {
    private javax.xml.datatype.DatatypeFactory datatypeFactory;
    private Environment environment;
    private EnvironmentConfig environmentConf;
    private XmlContainer xmlContainer = null;
    private XmlManager xmlManager = null;
    private XmlManagerConfig xmlManagerConfig;
    public DG() {
    try {
    File envHome = new File("C:\\bdbxml\\database");
    environmentConf = new EnvironmentConfig();
    environmentConf.setAllowCreate(true);
    environmentConf.setInitializeCache(true);
    environmentConf.setInitializeLocking(true);
    environmentConf.setInitializeLogging(true);
    environmentConf.setRunRecovery(true);
    environmentConf.setTransactional(true);
    environmentConf.setLockDetectMode(LockDetectMode.MINWRITE);
         //tried the following with default and 10000
         environmentConf.setMaxLockers(100000);
    environmentConf.setMaxLockObjects(100000);
    environmentConf.setMaxLocks(100000);
    environmentConf.setTxnMaxActive(100000);
    environment = new Environment(envHome, environmentConf);
    CheckpointConfig cpc = new CheckpointConfig();
    cpc.setKBytes(500);
    environment.checkpoint(cpc);
    xmlManagerConfig = new XmlManagerConfig();
    xmlManagerConfig.setAdoptEnvironment(true);
    xmlManager = new XmlManager(environment, xmlManagerConfig);
    XmlContainerConfig xmlContainerConfig = new XmlContainerConfig();
    xmlContainerConfig.setIndexNodes(true);
    xmlContainerConfig.setTransactional(true);
    xmlContainerConfig.setNodeContainer(true);
    xmlContainer = xmlManager.openContainer("container.dbxml", xmlContainerConfig);
    xmlContainer.sync();
    datatypeFactory = javax.xml.datatype.DatatypeFactory.newInstance();
    } catch (FileNotFoundException e) {
         e.printStackTrace();
    } catch (DatabaseException e) {
         e.printStackTrace();
    } catch (DatatypeConfigurationException e) {
         e.printStackTrace();
    public void close() {
    try {
    if (xmlContainer != null) {
    xmlContainer.close();
    if (xmlManager != null) {
    xmlManager.close();
    } catch (DatabaseException e) {
    e.printStackTrace();
    public String getDocument(String docId) {
    try {
    XmlDocument doc = xmlContainer.getDocument(docId);
    String docString = doc.getContentAsString();
    doc.delete();
    return docString;
    } catch (XmlException e) {
    e.printStackTrace();
    public Result[] search(Search search) {
    try {
         //normally I construct the query string using the Search object
    StringBuffer q = new StringBuffer("subsequence(collection('container.dbxml')/metadata[contains(./idinfo//title, 'Ecology')], 1,10)");
    XmlQueryContext xqc = xmlManager.createQueryContext();
    XmlQueryExpression xqe = xmlManager.prepare(q.toString(), xqc);
    XmlResults xr = xqe.execute(xqc);
    int i = 0;
    Vector<Result> vec = new Vector<Result>();
    while (xr.hasNext()) {
    XmlValue xv = xr.next();
    XmlDocument xd = xv.asDocument();
    Result r = new Result();
    r.setMetadata(xd.getContentAsString());
    r.setDocumentId(xd.getName());
    XmlValue groupVal = new XmlValue(XmlValue.STRING);
    xd.getMetaData("", "group", groupVal);
    r.setGroup(groupVal.asString());
    XmlValue ownerVal = new XmlValue(XmlValue.STRING);
    xd.getMetaData("", "owner", ownerVal);
    r.setOwner(ownerVal.asString());
    XmlValue createdVal = new XmlValue(XmlValue.DATE_TIME);
    xd.getMetaData("", "created", createdVal);
    r.setCreated(createdVal.asString());
    XmlValue updatedVal = new XmlValue(XmlValue.DATE_TIME);
    xd.getMetaData("", "updated", updatedVal);
    r.setModified(updatedVal.asString());
    r.setPosition(search.getStartPosition() + i);
    updatedVal.delete();
    createdVal.delete();
    ownerVal.delete();
    groupVal.delete();
    xd.delete();
    xv.delete();
    vec.add(r);
    i++;
    xr.delete();
    xqe.delete();
    xqc.delete();
    return vec.toArray(new Result[vec.size()]);
    } catch (XmlException e) {
    e.printStackTrace();
    // PLUS SOME OTHER METHODS, BUT USING ONLY THESE TO TEST
    The Servlet looks like this:
    public class DGServlet extends javax.servlet.http.HttpServlet implements javax.servlet.Servlet {
    private DG dg;
    private final XPathFactory xpf = XPathFactory.newInstance();
    private final XPath xp = xpf.newXPath();
    private final SimpleDateFormat df = new SimpleDateFormat("EEE MMM d HH:mm:ss z yyyy");
    public DGServlet() {
    super();
    @Override
    public void destroy() {
    try {
    dg.close();
    } catch (Exception e) {
    log(e.getMessage());
    e.printStackTrace();
    super.destroy();
    protected void doGet(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {
    String action = request.getParameter("action");
    if (action != null && !action.equals("")) {
    if (action.equals("search")) {
    response.setContentType("text/xml");
    Result[] result = null;
    try {
    result = dg.search(constructSearch(request));
    } catch (Exception e1) {
    log(e1.getMessage());
    e1.printStackTrace();
    if (result==null || result.length==0) {
    response.getWriter().print("0");
    return;
    StringBuffer sb = new StringBuffer("<results>");
    for (int i = 0; result != null && i < result.length; i++) {
    try {
    sb.append("<result"
    + " title='"
    + xp.evaluate("/metadata/idinfo//title", new InputSource(new StringReader(result[i]
    .getMetadata()))));
    sb.append("' northbc='"
    + xp.evaluate("//northbc", new InputSource(new StringReader(result.getMetadata())))
    + "' southbc='"
    + xp.evaluate("//southbc", new InputSource(new StringReader(result[i].getMetadata())))
    + "' eastbc='"
    + xp.evaluate("//eastbc", new InputSource(new StringReader(result[i].getMetadata())))
    + "' westbc='"
    + xp.evaluate("//westbc", new InputSource(new StringReader(result[i].getMetadata())))
    + "' docid='" + result[i].getDocumentId() + "' group='" + result[i].getGroup()
    + "' owner='" + result[i].getOwner() + "' position='" + result[i].getPosition()
    + "' modified='" + result[i].getModified() + "' created='" + result[i].getCreated()
    + "'>");
    NodeList nodes = (NodeList) xp.evaluate("//digform", new InputSource(new StringReader(result[i]
    .getMetadata())), XPathConstants.NODESET);
    for (int j = 0; j < nodes.getLength(); j++) {
    sb.append("<resource download='"
    + StringEscapeUtils.escapeXml(xp.evaluate("//networkr", new InputSource(
    new StringReader(XMLUtil.printDOMTree(nodes.item(j)))))));
    sb.append("' format='"
    + StringEscapeUtils.escapeXml(xp.evaluate("//formname", new InputSource(
    new StringReader(XMLUtil.printDOMTree(nodes.item(j)))))));
    sb.append("'></resource>");
    sb.append("</result>");
    } catch (XPathExpressionException e) {
    e.printStackTrace();
    log(e.getMessage());
    } catch (TransformerConfigurationException e) {
    e.printStackTrace();
    log(e.getMessage());
    } catch (TransformerFactoryConfigurationError e) {
    e.printStackTrace();
    log(e.getMessage());
    } catch (TransformerException e) {
    e.printStackTrace();
    log(e.getMessage());
    sb.append("</results>");
    response.getWriter().print(sb.toString());
    else if (action.equals("details")) {
    response.setContentType("text/html");
    String str = "";
    try {
    str = dg.getDocument(request.getParameter("docId"));
    response.getWriter().print(
    setTranslatePage(str, new java.net.URL(
    "http://localhost:8080/datastream/stylesheets/fgdc/fgdc_classic.xsl")));
    } catch (Exception e) {
    e.printStackTrace();
    log(e.getMessage());
    public void init() throws ServletException {
    super.init();
    dg = new DG();
    It seems to work fine for a while, but then I get errors like the following:
    PANIC: fatal region error detected; run recovery
    PANIC: fatal region error detected; run recovery
    PANIC: fatal region error detected; run recovery
    PANIC: fatal region error detected; run recovery
    PANIC: fatal region error detected; run recovery
    PANIC: fatal region error detected; run recovery
    PANIC: fatal region error detected; run recovery
    PANIC: fatal region error detected; run recovery
    PANIC: fatal region error detected; run recovery
    com.sleepycat.dbxml.XmlException: Error: DB_RUNRECOVERY: Fatal error, run database recovery, errcode = DATABASE_ERROR
    at com.sleepycat.dbxml.dbxml_javaJNI.XmlManager_prepare__SWIG_0(Native Method)
    at com.sleepycat.dbxml.XmlManager.prepare(XmlManager.java:586)
    at edu.washington.cev.datastream.api.DG.search(DG.java:935)
    at edu.washington.cev.datastream.servlets.DGServlet.doGet(DGServlet.java:83)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:689)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:802)
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:252)
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:173)
    at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:213)
    at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:178)
    at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:126)
    at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:105)
    at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:107)
    at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:148)
    at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:869)
    at org.apache.coyote.http11.Http11BaseProtocol$Http11ConnectionHandler.processConnection(Http11BaseProtocol.java:664)
    at org.apache.tomcat.util.net.PoolTcpEndpoint.processSocket(PoolTcpEndpoint.java:527)
    at org.apache.tomcat.util.net.LeaderFollowerWorkerThread.runIt(LeaderFollowerWorkerThread.java:80)
    at org.apache.tomcat.util.threads.ThreadPool$ControlRunnable.run(ThreadPool.java:684)
    at java.lang.Thread.run(Thread.java:619)
    I've set this up on a Window XP machine using tomcat 5.5 and java 5 as well as a Redhat Linux machine with tomcat 5.5 and java 5. I'm using the Web Service point for other servers to access the database. Everything starts up and runs for a little while, but I can't seem to pin down what causes the errors. I've run recovery multiple times as well as started new databases. Any help is appreciated.

    There's a bug in your use of DB XML somewhere. Are you committing or aborting every transaction that you start, and calling delete() explicitly on all the DB XML objects that you use?
    Those errors mean your database has become corrupted somehow.
    John

  • HT1338 Every time I try to use software update the window opens to scan then crashes with an error message.

    I am having problems with a BT Yahoo account where the home page opens but it will not let me open e-mail. When you click on mail it takes you to an upgrade page where there is a button for you to continue without upgrading. When you click on that it freezes. To compound this problem I cannot access the upgrade ststem on the Mac itself as it tells me there is an error. I am stuck on 10.3.9 as I purchased a 10.4 upgrade disk (official) ages ago but every time I ran it the computer crashed so I gave up on it. I still require classic on this machine on the odd occassion hence why I am stuck in the past. My iMac runs on 10.6.8 and the mail is accessable on that with no problem. HELP!!

    Start up from that Mac OS X 10.4 disc you have.  Insert disc in optical drive and start up with the C key held down.  On the first Installer screen, from the menu bar, under Utilities, select to run Disk Utility.
    In Disk Utility, select your startup volume (usually "Macintosh HD") in the sidebar and go to the First Aid tab.  Run Verify Disk.  If it reports a problem, that may be the reason for your long-term difficulties. You hard drive volume has data corruption. 
    You can try Repair Disk in Disk Utility.  However, it would be a very good idea to have a backup of the data on that disk, in case the attempt to repair makes the problem worse.

  • Every time I launch Mail.app my server gets STMP authentication error

    From my server STMP log file:
    2015-02-23 15:48:57 plain authenticator failed for 77-173-xxx-xxx.ip.telfort.nl (mbp.home) [77.173.xxx.xxx]: 535 Incorrect authentication data (set_id=username)
    For some reason Mail.app tries to connect to the STMP server but doesn't properly authenticate. It does seem to set the username but not a valid password so the log files on my SMTP server are filled with these errors. Even worse brute force detection automatically blocks the ip address in the firewall because of this after 10 attempts. It's not just me, many other customers that use a mac have the same problem (I notice this because they call me for not being able to connect because of the blacklisting by the brute force scanner)
    How can I fix this? Why does Mail.app try to connect without proper authentication?

    No. You said to Change the authentication setting for the account on the client to one that the server supports. But I already have that. Sending mail works just fine, but for some reason Mail.app still causes authentication errors on launch and periodically about every 10 minutes

  • IMac27 reboots every few days with message "Restarted after error"

    My iMac27 reboots every few days with message "Restarted after error". How do I find out what it is upset about so I can repair?

    Visit The XLab FAQs and read the FAQ on diagnosing kernel panics. Also, OS X- How to log a kernel panic and post a recent panic log (not a crash log.)

  • How can I localize the alert "error: PANIC: fatal region error detected..."

    My application may corrupt and the operations therefore may fail and post the alert "error: PANIC: fatal region error detected; run recovery ...", and this alert is directly printed in the main process's window.
    My question is how can I do to localize this alert in my thread which just deals with the Berkeley DB database?
    Thanks

    Hi,
    You can configure an error callback function. See the run-time error configuration section of the Reference Guide here:
    http://www.oracle.com/technology/documentation/berkeley-db/db/ref/debug/runtime.html
    It sounds like DB_ENV->set_errcall is what you want:
    http://www.oracle.com/technology/documentation/berkeley-db/db/api_c/env_set_errcall.html
    Regards,
    Alex Gorrod, Oracle

  • Problem sqlite+berkeley PANIC: fatal region error detected.

    Excuse for my English and if this wrong place to explain the problem
    I'm checking to replace Berkeley DB and SQLite for testing the stability against involuntary interruptions of program I have encountered the following error:
    Berkeley DB trust in knowing his rnedimiento and stability with Subversion, but I doubt the API bridge SQLITE
    I'm testing the Berkeley DB database using the API Berkeley DB SQLITE and I did a small test program:;
    /* Open database. */
    sqlite3 *db;
    sqlite3_open("data/basedatos.db", &db);
    sqlite3_exec(db,"CREATE TABLE [test] ([key] INTEGER, [dat] varchar(64), PRIMARY KEY ([key]))",NULL,0,NULL);
    err_code = SQLITE_BUSY;
    while (err_code != SQLITE_OK ) {
         sqlite3_exec( db, "delete from test", NULL, 0, NULL );
         err_code = sqlite3_errcode( db );
    sqlite3_exec( db, "BEGIN", NULL, 0, NULL );+
    for( int i=0; i<_numCartones; i++ ) {
         char buf[1024];
         sprintf_s( buf, sizeof(buf), "insert into test( key, dat) values ( %d, 'test%d' )", i, i );
         sqlite3_exec( db, buf, NULL, 0, NULL );
    sqlite3_exec( db, "COMMIT", NULL, 0, NULL );
    sqlite3_close(db);I launched the program and insert about 150000 records in 17 seconds. Perfect!
    I created a file basedatos.db and basedatos.db-journal subdirectory with files: log.0000000016, __db.001, __db.002, __db.003, __db.004, __db.005, __db.006 and __db.register.
    Open it and prove the usefulness dbsql
    c: dbsql basedatos.db
    select count(*) from test;
    150000          ← Ok.
    Without closing the program again dbsql run the test program and this will get stuck in the call:
    sqlite3_exec( db, "delete from test", NULL, 0, NULL );I close dbsql and automatically releases the "delete from" and the test program again inserted 150,000 records
    While this by inserting 150,000 records run it again
    c: dbsql basedatos.db
    select count(*) from test; [WAIT]
    and select count (*) remains locked until you finish the test program, normal thing locks.Once you finish the select TEST responds to 150,000
    150000          ← Ok.Without closing the program again dbsql run the test program and this will get stuck in the call:
    sqlite3_exec( db, "delete from test", NULL, 0, NULL );I close dbsql and automatically releases the "delete from" and the test program again inserted 150,000 records
    while inserting test rerun:
    c: dbsql basedatos.db
    select count(*) from test;
    Error: database disk image is malformed
    and in my test program : PANIC: fatal region error detected; run recovery.
    Reviewing the files are only: badatos.db, log.0000000031, log.0000000032, log.0000000033, log.0000000034, log.0000000035, log.0000000036, __db.register.
    and __db*.* files?

    Had accidentally opened the program dbsql.exe while doing speed tests data insertion.
    While in a shell to make a select count (*) and I realized that was blocked waiting for the COMMIT release, normal thing in a process BEGIN / COMMIT.
    In one test was corrupt database which reduced the test software and simplify the test to repeat the problem.
    Today I repeated the test and the situation has changed
    1) Run test (all OK, inserted in 18 seconds 150000 entries)
    2) DBSQL run and I make a select count (*) (All Ok)
    3) DBSQL unsealed test run and stay lock on DELETE FROM
    4) DELETE FROM I close DBSQL and not released as yesterday.Repeat several times and I have the same behavior
    Move in the test code from "delete from..." begin and commit
    sqlite3_exec( db, "BEGIN", NULL, 0, NULL );
    err_code = sqlite3_errcode( db );
    err_code = SQLITE_BUSY;
    while (err_code != SQLITE_OK ) {
    sqlite3_exec( db, "delete from test", NULL, 0, NULL );
    err_code = sqlite3_errcode( db );
    for( int i=0; i<_numCartones; i++ ) {Repeat tests
    1)Test run, everything ok in 25 seconds. While inserting test this, I run realizao dbsql and a select count (*) and remains lock until test ends. Everything ok, 150000 records
    2)Dbsql unsealed test run it again and stay lock on delete until you close the program dbsql.
    3)I close dbsql and releasing the lock of seconds to delete the test the error "PANIC ..." like yesterdayRepeat several times and the behavior is the same, except that no desparencen db files.
    If I can not run dbsql test run multiple times without problems.
    Could be the problem dbsql and simultaneous access to the database?
    I'm going to migrate an application in production since SQLITE to Berkeley DB for testing.
    I have confidence in the performance of Berkeley DB and I know the proper functioning it does with subversion, but the subversion server on a server is protected with uninterrupted power.
    If I avoid using dbsql while the test software that I have that theoretical security operation will be correct when using Berkeley DB SQLITE layer and especially with unexpected off the machine?
    Thanks again for your help

  • PANIC: fatal region error detected

    i encoutered this error for stress testing.
    in the project, we used the transaction and cursor. when the application is runing for a long time, i will receive the err about "PANIC: fatal region error detected". i change the max numbers of transaction, the same error also occurs. when this error occurs, the application can't create any transaction and open any cursor.
    somebody can solve this problem? any suggestion appreciated.
    thanks

    This error should only occur after some message is sent to the error stream (configured with DB_ENV->set_errfile). Can you please post that output?
    What operation causes the error (is it during open, or on some read/write)?
    Have you tried looking at the output from running "db_stat -e" to see whether some resource is being exhausted?
    Are multiple processes (including the Berkeley DB utilities) accessing the environment when the error occurs? Is it possible that any of those processes are using a different version of Berkeley DB than your application?
    Regards,
    Michael Cahill, Oracle Berkeley DB.

  • Mail fails with exception error since upgrade. Help?

    It was suggested I rebuild the mail data base in finder wasas able to locate library can not find " rebuild" Is there a way to re install mail 7?  The following is the error message I get.  Mail opens click on any email to open and.........
    Process:         Mail [1455]
    Path:            /Applications/Mail.app/Contents/MacOS/Mail
    Identifier:      com.apple.mail
    Version:         7.0 (1816)
    Build Info:      Mail-1816000000000000~1
    Code Type:       X86-64 (Native)
    Parent Process:  launchd [198]
    Responsible:     Mail [1455]
    User ID:         501
    Date/Time:       2013-10-26 17:52:34.124 -0500
    OS Version:      Mac OS X 10.9 (13A603)
    Report Version:  11
    Anonymous UUID:  59B66B71-28A5-65B3-FED9-1F7A1FEE20F5
    Sleep/Wake UUID: B7922FC9-8975-4932-A9E2-646FB9BBBCD0
    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: '*** -redComponent not valid for the NSColor NSDeviceCMYKColorSpace 0.683394 0 0.986248 0 1; need to first convert colorspace.'
    abort() called
    terminating with uncaught exception of type NSException
    Application Specific Backtrace 1:
    0   CoreFoundation                      0x00007fff88c6341c __exceptionPreprocess + 172
    1   libobjc.A.dylib                     0x00007fff87ebee75 objc_exception_throw + 43
    2   CoreFoundation                      0x00007fff88c632cc +[NSException raise:format:] + 204
    3   AppKit                              0x00007fff82e24360 -[NSColor redComponent] + 66
    4   Mail                                0x0000000107427423 Mail + 377891
    5   CoreFoundation                      0x00007fff88b97639 __53-[__NSArrayM enumerateObjectsWithOptions:usingBlock:]_block_invoke + 137
    6   CoreFoundation                      0x00007fff88b96ddf -[__NSArrayM enumerateObjectsWithOptions:usingBlock:] + 319
    7   Mail                                0x0000000107427336 Mail + 377654
    8   Mail                                0x000000010742710f Mail + 377103
    9   Mail                                0x0000000107426fdf Mail + 376799
    10  Foundation                          0x00007fff8bf28c18 NSKeyValueNotifyObserver + 387
    11  Foundation                          0x00007fff8bf49967 -[NSObject(NSKeyValueObserverRegistration) _addObserver:forProperty:options:context:] + 306
    12  Foundation                          0x00007fff8bf49697 -[NSObject(NSKeyValueObserverRegistration) addObserver:forKeyPath:options:context:] + 112
    13  Mail                                0x0000000107426d9d Mail + 376221
    14  Mail                                0x0000000107426cd5 Mail + 376021
    15  libdispatch.dylib                   0x00007fff825b22ad _dispatch_client_callout + 8
    16  libdispatch.dylib                   0x00007fff825b221c dispatch_once_f + 79
    17  Mail                                0x0000000107426c95 Mail + 375957
    18  Mail                                0x0000000107426bdb Mail + 375771
    19  AppKit                              0x00007fff82a282a4 -[NSClassSwapper initWithCoder:] + 528
    20  Foundation                          0x00007fff8bf36e22 _decodeObjectBinary + 2534
    21  Foundation                          0x00007fff8bf37f2f -[NSKeyedUnarchiver _decodeArrayOfObjectsForKey:] + 1774
    22  Foundation                          0x00007fff8bf3812b -[NSArray(NSArray) initWithCoder:] + 202
    23  Foundation                          0x00007fff8bf36e22 _decodeObjectBinary + 2534
    24  Foundation                          0x00007fff8bf362dd _decodeObject + 288
    25  AppKit                              0x00007fff82a265bc -[NSView initWithCoder:] + 1949
    26  AppKit                              0x00007fff82a6bc76 -[NSClipView initWithCoder:] + 51
    27  Foundation                          0x00007fff8bf36e22 _decodeObjectBinary + 2534
    28  Foundation                          0x00007fff8bf37f2f -[NSKeyedUnarchiver _decodeArrayOfObjectsForKey:] + 1774
    29  Foundation                          0x00007fff8bf3812b -[NSArray(NSArray) initWithCoder:] + 202
    30  Foundation                          0x00007fff8bf36e22 _decodeObjectBinary + 2534
    31  Foundation                          0x00007fff8bf362dd _decodeObject + 288
    32  AppKit                              0x00007fff82a265bc -[NSView initWithCoder:] + 1949
    33  AppKit                              0x00007fff82a6a69d -[NSScrollView initWithCoder:] + 284
    34  Foundation                          0x00007fff8bf36e22 _decodeObjectBinary + 2534
    35  Foundation                          0x00007fff8bf362dd _decodeObject + 288
    36  AppKit                              0x00007fff829ffcfd -[NSNibConnector initWithCoder:] + 106
    37  AppKit                              0x00007fff829ffb7e -[NSNibOutletConnector initWithCoder:] + 73
    38  Foundation                          0x00007fff8bf36e22 _decodeObjectBinary + 2534
    39  Foundation                          0x00007fff8bf37f2f -[NSKeyedUnarchiver _decodeArrayOfObjectsForKey:] + 1774
    40  Foundation                          0x00007fff8bf3812b -[NSArray(NSArray) initWithCoder:] + 202
    41  Foundation                          0x00007fff8bf36e22 _decodeObjectBinary + 2534
    42  Foundation                          0x00007fff8bf362dd _decodeObject + 288
    43  AppKit                              0x00007fff829fe7b2 -[NSIBObjectData initWithCoder:] + 205
    44  Foundation                          0x00007fff8bf36e22 _decodeObjectBinary + 2534
    45  Foundation                          0x00007fff8bf362dd _decodeObject + 288
    46  AppKit                              0x00007fff82aade50 -[NSNib _instantiateNibWithExternalNameTable:] + 508
    47  AppKit                              0x00007fff82bdd672 -[NSNib instantiateNibWithOwner:topLevelObjects:] + 215
    48  AppKit                              0x00007fff82bdd452 -[NSViewController loadView] + 180
    49  AppKit                              0x00007fff82b0b748 -[NSViewController view] + 41
    50  Mail                                0x000000010742564f Mail + 370255
    51  Mail                                0x0000000107425512 Mail + 369938
    52  Mail                                0x000000010742514e Mail + 368974
    53  Mail                                0x0000000107424e27 Mail + 368167
    54  Mail                                0x000000010742482d Mail + 366637
    55  AppKit                              0x00007fff82bcb26b -[NSView _updateSuggestedContentRect] + 774
    56  AppKit                              0x00007fff82bd9df1 -[NSView _updateSuggestedContentRectForVisibleRectChange] + 219
    57  AppKit                              0x00007fff82bd9c87 -[NSScrollView(NSRulerSupport) _handleBoundsChangeForSubview:] + 331
    58  AppKit                              0x00007fff82bd9af4 -[NSView _postBoundsChangeNotification] + 136
    59  AppKit                              0x00007fff82bd9938 -[NSView translateOriginToPoint:] + 294
    60  AppKit                              0x00007fff82a80c7f -[NSClipView _immediateScrollToPoint:] + 2659
    61  AppKit                              0x00007fff82a801da -[NSClipView scrollToPoint:] + 237
    62  AppKit                              0x00007fff82bd8d8e -[NSScrollView scrollClipView:toPoint:] + 203
    63  AppKit                              0x00007fff82a84e39 -[NSClipView _scrollTo:animateScroll:flashScrollerKnobs:] + 1688
    64  AppKit                              0x00007fff82a845bf -[NSClipView _reflectDocumentViewFrameChange] + 128
    65  AppKit                              0x00007fff82a48f3c -[NSView _postFrameChangeNotification] + 203
    66  AppKit                              0x00007fff82a52712 -[NSView setFrameSize:] + 1586
    67  Mail                                0x00000001073ebac4 Mail + 133828
    68  AppKit                              0x00007fff82a52099 -[NSView setFrame:] + 294
    69  Mail                                0x000000010741ec6a Mail + 343146
    70  Mail                                0x0000000107424007 Mail + 364551
    71  Mail                                0x0000000107423e36 Mail + 364086
    72  Mail                                0x0000000107422cfd Mail + 359677
    73  Mail                                0x00000001073eadb0 Mail + 130480
    74  Foundation                          0x00007fff8bf28c18 NSKeyValueNotifyObserver + 387
    75  Foundation                          0x00007fff8bf65e71 -[NSObject(NSKeyValueObservingPrivate) _notifyObserversForKeyPath:change:] + 1115
    76  AppKit                              0x00007fff82aa3c48 -[NSController _notifyObserversForKeyPath:change:] + 209
    77  AppKit                              0x00007fff82bd56a7 -[NSArrayController didChangeValuesForArrangedKeys:objectKeys:indexKeys:] + 53
    78  AppKit                              0x00007fff82aa3a88 -[NSArrayController setContent:] + 826
    79  Mail                                0x00000001073e89a3 Mail + 121251
    80  Foundation                          0x00007fff8bf666ce -[NSObject(NSKeyValueCoding) setValue:forKey:] + 389
    81  AppKit                              0x00007fff82aacf5d -[NSObjectParameterBinder _updateObject:observedController:observedKeyPath:context:] + 1298
    82  AppKit                              0x00007fff82aa3f68 -[NSObject(NSKeyValueBindingCreation) bind:toObject:withKeyPath:options:] + 652
    83  Mail                                0x000000010742040a Mail + 349194
    84  Mail                                0x00000001073ea81a Mail + 129050
    85  Mail                                0x0000000107416bbb Mail + 310203
    86  Mail                                0x00000001073eda74 Mail + 141940
    87  Mail                                0x00000001073f7309 Mail + 181001
    88  Mail                                0x0000000107416214 Mail + 307732
    89  Mail                                0x0000000107415eb1 Mail + 306865
    90  CoreFoundation                      0x00007fff88c31fcc __CFNOTIFICATIONCENTER_IS_CALLING_OUT_TO_AN_OBSERVER__ + 12
    91  CoreFoundation                      0x00007fff88b25c5d _CFXNotificationPost + 2893
    92  Foundation                          0x00007fff8bf224aa -[NSNotificationCenter postNotificationName:object:userInfo:] + 68
    93  AppKit                              0x00007fff82b5ae2f -[NSTableView _sendSelectionChangedNotificationForRows:columns:] + 177
    94  AppKit                              0x00007fff82a873c4 -[NSTableView _enableSelectionPostingAndPost] + 406
    95  AppKit                              0x00007fff82c3654c -[NSTableView mouseDown:] + 5588
    96  Mail                                0x0000000107443631 Mail + 493105
    97  AppKit                              0x00007fff82c1fd08 -[NSWindow sendEvent:] + 11296
    98  AppKit                              0x00007fff82bbe744 -[NSApplication sendEvent:] + 2021
    99  Mail                                0x000000010740d511 Mail + 271633
    100 AppKit                              0x00007fff82a0ea29 -[NSApplication run] + 646
    101 AppKit                              0x00007fff829f9803 NSApplicationMain + 940
    102 libdyld.dylib                       0x00007fff8a7b85fd start + 1
    Thread 0 Crashed:: Dispatch queue: com.apple.main-thread
    0   libsystem_kernel.dylib                  0x00007fff835eb866 __pthread_kill + 10
    1   libsystem_pthread.dylib                 0x00007fff8a44235c pthread_kill + 92
    2   libsystem_c.dylib                       0x00007fff8dd60bba abort + 125
    3   libc++abi.dylib                         0x00007fff8be18141 abort_message + 257
    4   libc++abi.dylib                         0x00007fff8be3dabc default_terminate_handler() + 264
    5   libobjc.A.dylib                         0x00007fff87ebf30d _objc_terminate() + 103
    6   libc++abi.dylib                         0x00007fff8be3b3e1 std::__terminate(void (*)()) + 8
    7   libc++abi.dylib                         0x00007fff8be3b456 std::terminate() + 54
    8   libobjc.A.dylib                         0x00007fff87ebf0b0 objc_terminate + 9
    9   libdispatch.dylib                       0x00007fff825b22c1 _dispatch_client_callout + 28
    10  libdispatch.dylib                       0x00007fff825b221c dispatch_once_f + 79
    11  com.apple.mail                          0x0000000107426c95 0x1073cb000 + 375957
    12  com.apple.mail                          0x0000000107426bdb 0x1073cb000 + 375771
    13  com.apple.AppKit                        0x00007fff82a282a4 -[NSClassSwapper initWithCoder:] + 528
    14  com.apple.Foundation                    0x00007fff8bf36e22 _decodeObjectBinary + 2534
    15  com.apple.Foundation                    0x00007fff8bf37f2f -[NSKeyedUnarchiver _decodeArrayOfObjectsForKey:] + 1774
    16  com.apple.Foundation                    0x00007fff8bf3812b -[NSArray(NSArray) initWithCoder:] + 202
    17  com.apple.Foundation                    0x00007fff8bf36e22 _decodeObjectBinary + 2534
    18  com.apple.Foundation                    0x00007fff8bf362dd _decodeObject + 288
    19  com.apple.AppKit                        0x00007fff82a265bc -[NSView initWithCoder:] + 1949
    20  com.apple.AppKit                        0x00007fff82a6bc76 -[NSClipView initWithCoder:] + 51
    21  com.apple.Foundation                    0x00007fff8bf36e22 _decodeObjectBinary + 2534
    22  com.apple.Foundation                    0x00007fff8bf37f2f -[NSKeyedUnarchiver _decodeArrayOfObjectsForKey:] + 1774
    23  com.apple.Foundation                    0x00007fff8bf3812b -[NSArray(NSArray) initWithCoder:] + 202
    24  com.apple.Foundation                    0x00007fff8bf36e22 _decodeObjectBinary + 2534
    25  com.apple.Foundation                    0x00007fff8bf362dd _decodeObject + 288
    26  com.apple.AppKit                        0x00007fff82a265bc -[NSView initWithCoder:] + 1949
    27  com.apple.AppKit                        0x00007fff82a6a69d -[NSScrollView initWithCoder:] + 284
    28  com.apple.Foundation                    0x00007fff8bf36e22 _decodeObjectBinary + 2534
    29  com.apple.Foundation                    0x00007fff8bf362dd _decodeObject + 288
    30  com.apple.AppKit                        0x00007fff829ffcfd -[NSNibConnector initWithCoder:] + 106
    31  com.apple.AppKit                        0x00007fff829ffb7e -[NSNibOutletConnector initWithCoder:] + 73
    32  com.apple.Foundation                    0x00007fff8bf36e22 _decodeObjectBinary + 2534
    33  com.apple.Foundation                    0x00007fff8bf37f2f -[NSKeyedUnarchiver _decodeArrayOfObjectsForKey:] + 1774
    34  com.apple.Foundation                    0x00007fff8bf3812b -[NSArray(NSArray) initWithCoder:] + 202
    35  com.apple.Foundation                    0x00007fff8bf36e22 _decodeObjectBinary + 2534
    36  com.apple.Foundation                    0x00007fff8bf362dd _decodeObject + 288
    37  com.apple.AppKit                        0x00007fff829fe7b2 -[NSIBObjectData initWithCoder:] + 205
    38  com.apple.Foundation                    0x00007fff8bf36e22 _decodeObjectBinary + 2534
    39  com.apple.Foundation                    0x00007fff8bf362dd _decodeObject + 288
    40  com.apple.AppKit                        0x00007fff82aade50 -[NSNib _instantiateNibWithExternalNameTable:] + 508
    41  com.apple.AppKit                        0x00007fff82bdd672 -[NSNib instantiateNibWithOwner:topLevelObjects:] + 215
    42  com.apple.AppKit                        0x00007fff82bdd452 -[NSViewController loadView] + 180
    43  com.apple.AppKit                        0x00007fff82b0b748 -[NSViewController view] + 41
    44  com.apple.mail                          0x000000010742564f 0x1073cb000 + 370255
    45  com.apple.mail                          0x0000000107425512 0x1073cb000 + 369938
    46  com.apple.mail                          0x000000010742514e 0x1073cb000 + 368974
    47  com.apple.mail                          0x0000000107424e27 0x1073cb000 + 368167
    48  com.apple.mail                          0x000000010742482d 0x1073cb000 + 366637
    49  com.apple.AppKit                        0x00007fff82bcb26b -[NSView _updateSuggestedContentRect] + 774
    50  com.apple.AppKit                        0x00007fff82bd9df1 -[NSView _updateSuggestedContentRectForVisibleRectChange] + 219
    51  com.apple.AppKit                        0x00007fff82bd9c87 -[NSScrollView(NSRulerSupport) _handleBoundsChangeForSubview:] + 331
    52  com.apple.AppKit                        0x00007fff82bd9af4 -[NSView _postBoundsChangeNotification] + 136
    53  com.apple.AppKit                        0x00007fff82bd9938 -[NSView translateOriginToPoint:] + 294
    54  com.apple.AppKit                        0x00007fff82a80c7f -[NSClipView _immediateScrollToPoint:] + 2659
    55  com.apple.AppKit                        0x00007fff82a801da -[NSClipView scrollToPoint:] + 237
    56  com.apple.AppKit                        0x00007fff82bd8d8e -[NSScrollView scrollClipView:toPoint:] + 203
    57  com.apple.AppKit                        0x00007fff82a84e39 -[NSClipView _scrollTo:animateScroll:flashScrollerKnobs:] + 1688
    58  com.apple.AppKit                        0x00007fff82a845bf -[NSClipView _reflectDocumentViewFrameChange] + 128
    59  com.apple.AppKit                        0x00007fff82a48f3c -[NSView _postFrameChangeNotification] + 203
    60  com.apple.AppKit                        0x00007fff82a52712 -[NSView setFrameSize:] + 1586
    61  com.apple.mail                          0x00000001073ebac4 0x1073cb000 + 133828
    62  com.apple.AppKit                        0x00007fff82a52099 -[NSView setFrame:] + 294
    63  com.apple.mail                          0x000000010741ec6a 0x1073cb000 + 343146
    64  com.apple.mail                          0x0000000107424007 0x1073cb000 + 364551
    65  com.apple.mail                          0x0000000107423e36 0x1073cb000 + 364086
    66  com.apple.mail                          0x0000000107422cfd 0x1073cb000 + 359677
    67  com.apple.mail                          0x00000001073eadb0 0x1073cb000 + 130480
    68  com.apple.Foundation                    0x00007fff8bf28c18 NSKeyValueNotifyObserver + 387
    69  com.apple.Foundation                    0x00007fff8bf65e71 -[NSObject(NSKeyValueObservingPrivate) _notifyObserversForKeyPath:change:] + 1115
    70  com.apple.AppKit                        0x00007fff82aa3c48 -[NSController _notifyObserversForKeyPath:change:] + 209
    71  com.apple.AppKit                        0x00007fff82bd56a7 -[NSArrayController didChangeValuesForArrangedKeys:objectKeys:indexKeys:] + 53
    72  com.apple.AppKit                        0x00007fff82aa3a88 -[NSArrayController setContent:] + 826
    73  com.apple.mail                          0x00000001073e89a3 0x1073cb000 + 121251
    74  com.apple.Foundation                    0x00007fff8bf666ce -[NSObject(NSKeyValueCoding) setValue:forKey:] + 389
    75  com.apple.AppKit                        0x00007fff82aacf5d -[NSObjectParameterBinder _updateObject:observedController:observedKeyPath:context:] + 1298
    76  com.apple.AppKit                        0x00007fff82aa3f68 -[NSObject(NSKeyValueBindingCreation) bind:toObject:withKeyPath:options:] + 652
    77  com.apple.mail                          0x000000010742040a 0x1073cb000 + 349194
    78  com.apple.mail                          0x00000001073ea81a 0x1073cb000 + 129050
    79  com.apple.mail                          0x0000000107416bbb 0x1073cb000 + 310203
    80  com.apple.mail                          0x00000001073eda74 0x1073cb000 + 141940
    81  com.apple.mail                          0x00000001073f7309 0x1073cb000 + 181001
    82  com.apple.mail                          0x0000000107416214 0x1073cb000 + 307732
    83  com.apple.mail                          0x0000000107415eb1 0x1073cb000 + 306865
    84  com.apple.CoreFoundation                0x00007fff88c31fcc __CFNOTIFICATIONCENTER_IS_CALLING_OUT_TO_AN_OBSERVER__ + 12
    85  com.apple.CoreFoundation                0x00007fff88b25c5d _CFXNotificationPost + 2893
    86  com.apple.Foundation                    0x00007fff8bf224aa -[NSNotificationCenter postNotificationName:object:userInfo:] + 68
    87  com.apple.AppKit                        0x00007fff82b5ae2f -[NSTableView _sendSelectionChangedNotificationForRows:columns:] + 177
    88  com.apple.AppKit                        0x00007fff82a873c4 -[NSTableView _enableSelectionPostingAndPost] + 406
    89  com.apple.AppKit                        0x00007fff82c3654c -[NSTableView mouseDown:] + 5588
    90  com.apple.mail                          0x0000000107443631 0x1073cb000 + 493105
    91  com.apple.AppKit                        0x00007fff82c1fd08 -[NSWindow sendEvent:] + 11296
    92  com.apple.AppKit                        0x00007fff82bbe744 -[NSApplication sendEvent:] + 2021
    93  com.apple.mail                          0x000000010740d511 0x1073cb000 + 271633
    94  com.apple.AppKit                        0x00007fff82a0ea29 -[NSApplication run] + 646
    95  com.apple.AppKit                        0x00007fff829f9803 NSApplicationMain + 940
    96  libdyld.dylib                           0x00007fff8a7b85fd start + 1
    Thread 1:: Dispatch queue: com.apple.libdispatch-manager
    0   libsystem_kernel.dylib                  0x00007fff835ec662 kevent64 + 10
    1   libdispatch.dylib                       0x00007fff825b443d _dispatch_mgr_invoke + 239
    2   libdispatch.dylib                       0x00007fff825b4152 _dispatch_mgr_thread + 52
    Thread 2:: CVDisplayLink
    0   libsystem_kernel.dylib                  0x00007fff835eb716 __psynch_cvwait + 10
    1   libsystem_pthread.dylib                 0x00007fff8a443c3b _pthread_cond_wait + 727
    2   com.apple.CoreVideo                     0x00007fff805eba38 CVDisplayLink::runIOThread() + 656
    3   com.apple.CoreVideo                     0x00007fff805eb78f startIOThread(void*) + 147
    4   libsystem_pthread.dylib                 0x00007fff8a441899 _pthread_body + 138
    5   libsystem_pthread.dylib                 0x00007fff8a44172a _pthread_start + 137
    6   libsystem_pthread.dylib                 0x00007fff8a445fc9 thread_start + 13
    Thread 3:
    0   libsystem_kernel.dylib                  0x00007fff835e7a1a mach_msg_trap + 10
    1   libsystem_kernel.dylib                  0x00007fff835e6d18 mach_msg + 64
    2   com.apple.CoreFoundation                0x00007fff88b86315 __CFRunLoopServiceMachPort + 181
    3   com.apple.CoreFoundation                0x00007fff88b85939 __CFRunLoopRun + 1161
    4   com.apple.CoreFoundation                0x00007fff88b85275 CFRunLoopRunSpecific + 309
    5   com.apple.AppKit                        0x00007fff82bbb1ce _NSEventThread + 144
    6   libsystem_pthread.dylib                 0x00007fff8a441899 _pthread_body + 138
    7   libsystem_pthread.dylib                 0x00007fff8a44172a _pthread_start + 137
    8   libsystem_pthread.dylib                 0x00007fff8a445fc9 thread_start + 13
    Thread 4:: com.apple.NSURLConnectionLoader
    0   libsystem_kernel.dylib                  0x00007fff835e7a1a mach_msg_trap + 10
    1   libsystem_kernel.dylib                  0x00007fff835e6d18 mach_msg + 64
    2   com.apple.CoreFoundation                0x00007fff88b86315 __CFRunLoopServiceMachPort + 181
    3   com.apple.CoreFoundation                0x00007fff88b85939 __CFRunLoopRun + 1161
    4   com.apple.CoreFoundation                0x00007fff88b85275 CFRunLoopRunSpecific + 309
    5   com.apple.Foundation                    0x00007fff8bf86907 +[NSURLConnection(Loader) _resourceLoadLoop:] + 348
    6   com.apple.Foundation                    0x00007fff8bf8670b __NSThread__main__ + 1318
    7   libsystem_pthread.dylib                 0x00007fff8a441899 _pthread_body + 138
    8   libsystem_pthread.dylib                 0x00007fff8a44172a _pthread_start + 137
    9   libsystem_pthread.dylib                 0x00007fff8a445fc9 thread_start + 13
    Thread 5:: com.apple.CFSocket.private
    0   libsystem_kernel.dylib                  0x00007fff835eb9aa __select + 10
    1   com.apple.CoreFoundation                0x00007fff88bd1d43 __CFSocketManager + 867
    2   libsystem_pthread.dylib                 0x00007fff8a441899 _pthread_body + 138
    3   libsystem_pthread.dylib                 0x00007fff8a44172a _pthread_start + 137
    4   libsystem_pthread.dylib                 0x00007fff8a445fc9 thread_start + 13
    Thread 6:
    0   libsystem_kernel.dylib                  0x00007fff835ebe6a __workq_kernreturn + 10
    1   libsystem_pthread.dylib                 0x00007fff8a442f08 _pthread_wqthread + 330
    2   libsystem_pthread.dylib                 0x00007fff8a445fb9 start_wqthread + 13
    Thread 7:
    0   libsystem_kernel.dylib                  0x00007fff835ebe6a __workq_kernreturn + 10
    1   libsystem_pthread.dylib                 0x00007fff8a442f08 _pthread_wqthread + 330
    2   libsystem_pthread.dylib                 0x00007fff8a445fb9 start_wqthread + 13
    Thread 8:
    0   libsystem_kernel.dylib                  0x00007fff835ebe6a __workq_kernreturn + 10
    1   libsystem_pthread.dylib                 0x00007fff8a442f08 _pthread_wqthread + 330
    2   libsystem_pthread.dylib                 0x00007fff8a445fb9 start_wqthread + 13
    Thread 9:
    0   libsystem_kernel.dylib                  0x00007fff835ebe6a __workq_kernreturn + 10
    1   libsystem_pthread.dylib                 0x00007fff8a442f08 _pthread_wqthread + 330
    2   libsystem_pthread.dylib                 0x00007fff8a445fb9 start_wqthread + 13
    Thread 10:
    0   libsystem_kernel.dylib                  0x00007fff835ebe6a __workq_kernreturn + 10
    1   libsystem_pthread.dylib                 0x00007fff8a442f08 _pthread_wqthread + 330
    2   libsystem_pthread.dylib                 0x00007fff8a445fb9 start_wqthread + 13
    Thread 0 crashed with X86 Thread State (64-bit):
      rax: 0x0000000000000000  rbx: 0x00007fff722e2310  rcx: 0x00007fff5882e848  rdx: 0x0000000000000000
      rdi: 0x0000000000000707  rsi: 0x0000000000000006  rbp: 0x00007fff5882e870  rsp: 0x00007fff5882e848
       r8: 0x00007fff8be3eab4   r9: 0x00007fff8dd88900  r10: 0x0000000008000000  r11: 0x0000000000000206
      r12: 0x00007fff5882e9d0  r13: 0x00000000000008f8  r14: 0x0000000000000006  r15: 0x00007fff5882e8b0
      rip: 0x00007fff835eb866  rfl: 0x0000000000000206  cr2: 0x00000001078ad000
    Logical CPU:     0
    Error Code:      0x02000148
    Trap Number:     133
    Binary Images:
           0x1073cb000 -        0x1076bafff  com.apple.mail (7.0 - 1816) <E8B5953C-FD5C-3D3B-B481-34F23E45730A> /Applications/Mail.app/Contents/MacOS/Mail
           0x109c8c000 -        0x109f07ff7  com.apple.RawCamera.bundle (4.09 - 711) <0040632D-09A9-32DE-98E8-BFA99F9F6526> /System/Library/CoreServices/RawCamera.bundle/Contents/MacOS/RawCamera
           0x10afdf000 -        0x10afe1fff  apop.so (170) <79E840B4-6D30-3CBB-99D3-345D6C77D5DF> /usr/lib/sasl2/apop.so
           0x10afe5000 -        0x10aff5fff  dhx.so (170) <A9EBA1D4-8ED8-37BB-BA1E-263091EAF96E> /usr/lib/sasl2/dhx.so
           0x10b001000 -        0x10b009fff  digestmd5WebDAV.so (170) <9DBE65CE-9B5C-37A3-8112-40F39BE3B5F8> /usr/lib/sasl2/digestmd5WebDAV.so
           0x10b00e000 -        0x10b010fff  libanonymous.2.so (170) <D1297C21-A57B-311E-9006-C3FB8689849A> /usr/lib/sasl2/libanonymous.2.so
           0x10b014000 -        0x10b016fff  libcrammd5.2.so (170) <940A42FC-C634-354E-AD74-691CD90A1427> /usr/lib/sasl2/libcrammd5.2.so
           0x10b01b000 -        0x10b023ff7  libdigestmd5.2.so (170) <122C0383-F9B2-34D1-89AF-D317BC4D5164> /usr/lib/sasl2/libdigestmd5.2.so
           0x10b028000 -        0x10b02cfff  libgssapiv2.2.so (170) <AA58D85E-916C-3B0B-959A-DCC58497D0F2> /usr/lib/sasl2/libgssapiv2.2.so
           0x10b031000 -        0x10b033fff  login.so (170) <7D801D4E-A1A4-32FC-BF2E-9F25DB902523> /usr/lib/sasl2/login.so
           0x10b037000 -        0x10b03cfff  libntlm.so (170) <18693B29-154F-339C-A329-4C42A43F6428> /usr/lib/sasl2/libntlm.so
           0x10b041000 -        0x10b048fff  libotp.2.so (170) <D1C70F92-1C75-340B-AD53-0C2CD79144FF> /usr/lib/sasl2/libotp.2.so
           0x10b051000 -        0x10b053fff  libplain.2.so (170) <E9C3B22A-5958-3869-B778-55948D1EC2B7> /usr/lib/sasl2/libplain.2.so
           0x10b057000 -        0x10b05bfff  libpps.so (170) <9BAB4F91-A2DF-3F11-A2E4-8E353562ECC8> /usr/lib/sasl2/libpps.so
           0x10b060000 -        0x10b063ff7  mschapv2.so (170) <7B006E8A-BEB7-3004-9C16-134D37C077A5> /usr/lib/sasl2/mschapv2.so
           0x10b068000 -        0x10b090ff6  com.apple.DirectoryService.PasswordServerFramework (10.9 - 36) <C36B818F-C1FE-3F3F-A01C-F4613F570D4D> /System/Library/PrivateFrameworks/PasswordServer.framework/Versions/A/PasswordS erver
           0x10b0a6000 -        0x10b0a8fff  pwauxprop.so (400) <924056F9-D203-3DAD-B78D-61439A2E6BE8> /usr/lib/sasl2/pwauxprop.so
           0x10b0cb000 -        0x10b0ccfe2 +cl_kernels (???) <B0BE7893-20D0-4268-A4C4-78989139F6A6> cl_kernels
           0x10b130000 -        0x10b132fff  shadow_auxprop.so (170) <2E0153C3-9D36-3496-8885-DE8B91838036> /usr/lib/sasl2/shadow_auxprop.so
           0x10b137000 -        0x10b139fff  smb_nt.so (170) <903A6BA5-5B1F-305A-98EA-27BE757A7CFF> /usr/lib/sasl2/smb_nt.so
           0x10b13e000 -        0x10b140fff  smb_ntlmv2.so (170) <15A0B3C1-DA72-3B4C-8234-EF24132FEB0B> /usr/lib/sasl2/smb_ntlmv2.so
           0x10b185000 -        0x10b18cff7  com.apple.SyncedDefaults (1.3 - 91.30) <FC5A4423-3D91-3A34-853A-C49971EEAE4E> /System/Library/PrivateFrameworks/SyncedDefaults.framework/SyncedDefaults
           0x10bb84000 -        0x10bb87fff  libspindump.dylib (161) <588EDDE0-B20A-3649-92B7-C2226EB237E8> /usr/lib/libspindump.dylib
           0x10c0e0000 -        0x10c0e1fff  com.apple.AddressBook.LocalSourceBundle (8.0 - 1365) <260EDDAA-A812-3097-BE14-A63EA4BEDD31> /System/Library/Address Book Plug-Ins/LocalSource.sourcebundle/Contents/MacOS/LocalSource
           0x10c0f3000 -        0x10c0f7ff7  com.apple.DirectoryServicesSource (8.0 - 1365) <2F2D5BAA-F006-3701-922C-37EF076DE3D1> /System/Library/Address Book Plug-Ins/DirectoryServices.sourcebundle/Contents/MacOS/DirectoryServices
           0x10c102000 -        0x10c14eff6  com.apple.AddressBook.CardDAVPlugin (10.9 - 424) <C5AC5902-39C2-3A08-9967-5EAA000228EE> /System/Library/Address Book Plug-Ins/CardDAVPlugin.sourcebundle/Contents/MacOS/CardDAVPlugin
           0x10d7b3000 -        0x10d7b4ff9 +cl_kernels (???) <F66F1DDB-CA43-4214-A62A-416C086697BE> cl_kernels
           0x10d809000 -        0x10d80affa +cl_kernels (???) <6346D059-4723-4A8B-83D6-9C967C2CBF53> cl_kernels
           0x10d811000 -        0x10d811ffd +cl_kernels (???) <D8564A79-9CB1-4F59-8120-D7653B092DC2> cl_kernels
           0x10d815000 -        0x10d815fff +cl_kernels (???) <E53A5DD1-6736-45A8-BB86-BBDBCAEEC8F7> cl_kernels
           0x10d82c000 -        0x10d912fef  unorm8_bgra.dylib (2.3.58) <9FF943D1-4EF7-36CA-852D-B61C2E554713> /System/Library/Frameworks/OpenCL.framework/Versions/A/Libraries/ImageFormats/u norm8_bgra.dylib
           0x10d954000 -        0x10da34ff7  unorm8_rgba.dylib (2.3.58) <DDD1AFEB-FD30-34D2-958A-823C3EFD649A> /System/Library/Frameworks/OpenCL.framework/Versions/A/Libraries/ImageFormats/u norm8_rgba.dylib
           0x10da8f000 -        0x10da8ffec +cl_kernels (???) <E47ACF02-36B3-4F8F-9434-11992BAD5762> cl_kernels
           0x10db74000 -        0x10db75fe4 +cl_kernels (???) <2D488A5A-075B-4EBB-B441-8907AF376BC1> cl_kernels
           0x10db87000 -        0x10db88fe6 +cl_kernels (???) <8EF0F380-CA04-4E68-97C1-71ABFC26D48B> cl_kernels
           0x10db92000 -        0x10db93fee +cl_kernels (???) <BDCB226E-48AB-4303-8516-3FA5AB9AB9F6> cl_kernels
           0x10db9c000 -        0x10db9cfe7 +cl_kernels (???) <ECA0A0DF-7FE3-4BF8-9696-740CDC180954> cl_kernels
           0x10dba0000 -        0x10dba0feb +cl_kernels (???) <B5D6AE2A-C8AA-4AB4-84D4-9CA916DEF29D> cl_kernels
           0x10dba7000 -        0x10dba7fe7 +cl_kernels (???) <6FE7706D-024B-44F5-A639-424FF020FBA6> cl_kernels
           0x10dbb1000 -        0x10dbb2fe3 +cl_kernels (???) <7D77ED98-5AC0-4145-BE2F-7557F33B0F9F> cl_kernels
           0x10dbc7000 -        0x10dbc7ff3 +cl_kernels (???) <9A0A2EB8-7F8F-4C42-ABAA-494AD961D61B> cl_kernels
           0x10dcd5000 -        0x10dcd6fe4 +cl_kernels (???) <14CFD285-5741-4EA5-BA1E-0D9DAFEB5B39> cl_kernels
           0x10f7dc000 -        0x10f7e0fff  com.apple.google.iaplugin (2.1 - 210) <43DBDADF-DE0F-3438-B67A-6C9F3AB3FD26> /System/Library/InternetAccounts/Google.iaplugin/Contents/MacOS/Google
           0x10fa23000 -        0x10fa42ff7  com.apple.icloud.iaplugin (426 - 455) <F0489D74-BA4D-3233-8DA0-10659660B46A> /System/Library/InternetAccounts/iCloud.iaplugin/Contents/MacOS/iCloud
           0x10fb90000 -        0x10fc14ff7  com.apple.AOSUI (1.2 - 270) <B33570A8-00E2-3A0C-9ABB-E71D3F62A4BA> /System/Library/PrivateFrameworks/AOSUI.framework/Versions/A/AOSUI
        0x123400000000 -     0x1234004b2ff7  com.apple.driver.AppleIntelHD4000GraphicsGLDriver (8.18.26 - 8.1.8) <2910538C-8E52-3499-A414-90C85A380246> /System/Library/Extensions/AppleIntelHD4000GraphicsGLDriver.bundle/Contents/Mac OS/AppleIntelHD4000GraphicsGLDriver
        0x7fff62394000 -     0x7fff623c7817  dyld (239.3) <D1DFCF3F-0B0C-332A-BCC0-87A851B570FF> /usr/lib/dyld
        0x7fff80464000 -     0x7fff8048dfff  GLRendererFloat (9.0.83) <1F1160A8-5047-3CEE-AC1E-D29520D0B367> /System/Library/Frameworks/OpenGL.framework/Versions/A/Resources/GLRendererFloa t.bundle/GLRendererFloat
        0x7fff8048e000 -     0x7fff805beff7  com.apple.desktopservices (1.8 - 1.8) <09DC9BB8-432F-3C7A-BB08-956A2DDFC2DE> /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/Desk topServicesPriv
        0x7fff805ea000 -     0x7fff8060fff7  com.apple.CoreVideo (1.8 - 117.2) <4674339E-26D0-35FA-9958-422832B39B12> /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
        0x7fff80610000 -     0x7fff80853fff  com.apple.AddressBook.framework (8.0 - 1365) <816242B1-D45E-3B5D-BC98-BB23458D5367> /System/Library/Frameworks/AddressBook.framework/Versions/A/AddressBook
        0x7fff80905000 -     0x7fff80906fff  com.apple.TrustEvaluationAgent (2.0 - 25) <334A82F4-4AE4-3719-A511-86D0B0723E2B> /System/Library/PrivateFrameworks/TrustEvaluationAgent.framework/Versions/A/Tru stEvaluationAgent
        0x7fff80907000 -     0x7fff80948fff  com.apple.PerformanceAnalysis (1.47 - 47) <784ED7B8-FAE4-36CE-8C76-B7D300316C9F> /System/Library/PrivateFrameworks/PerformanceAnalysis.framework/Versions/A/Perf ormanceAnalysis
        0x7fff80949000 -     0x7fff80960ffa  libAVFAudio.dylib (32.2) <52DA516B-DE79-322C-9E1B-2658019289D7> /System/Library/Frameworks/AVFoundation.framework/Versions/A/Resources/libAVFAu dio.dylib
        0x7fff80961000 -     0x7fff809cefff  com.apple.SearchKit (1.4.0 - 1.4.0) <B9B8D510-A27E-36B0-93E9-17146D9E9045> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchK it.framework/Versions/A/SearchKit
        0x7fff809cf000 -     0x7fff80db0ffe  libLAPACK.dylib (1094.5) <7E7A9B8D-1638-3914-BAE0-663B69865986> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libLAPACK.dylib
        0x7fff80db1000 -     0x7fff80db7fff  com.apple.AddressBook.ContactsFoundation (8.0 - 1365) <CFB1A744-8096-3FAB-B55E-2E6C410A0376> /System/Library/PrivateFrameworks/ContactsFoundation.framework/Versions/A/Conta ctsFoundation
        0x7fff80e8c000 -     0x7fff81019ff7  GLEngine (9.0.83) <26CCE609-D645-3945-A678-517ED5B65785> /System/Library/Frameworks/OpenGL.framework/Versions/A/Resources/GLEngine.bundl e/GLEngine
        0x7fff8101a000 -     0x7fff8113cff1  com.apple.avfoundation (2.0 - 651.12) <03E595B7-A559-3D4D-90E9-BCA603E3A39E> /System/Library/Frameworks/AVFoundation.framework/Versions/A/AVFoundation
        0x7fff8113f000 -     0x7fff811e8ff7  com.apple.MailCore (7.0 - 1816) <5E8A558E-B776-3582-AE62-FA80655751E7> /System/Library/PrivateFrameworks/MailCore.framework/Versions/A/MailCore
        0x7fff811e9000 -     0x7fff81202ff7  com.apple.Ubiquity (1.3 - 289) <C7F1B734-CE81-334D-BE41-8B20D95A1F9B> /System/Library/PrivateFrameworks/Ubiquity.framework/Versions/A/Ubiquity
        0x7fff81203000 -     0x7fff8120fff3  com.apple.AppleFSCompression (56 - 1.0) <5652B0D0-EB08-381F-B23A-6DCF96991FB5> /System/Library/PrivateFrameworks/AppleFSCompression.framework/Versions/A/Apple FSCompression
        0x7fff81210000 -     0x7fff81222ff7  com.apple.MultitouchSupport.framework (245.13 - 245.13) <D5E7416D-45AB-3690-86C6-CC4B5FCEA2D2> /System/Library/PrivateFrameworks/MultitouchSupport.framework/Versions/A/Multit ouchSupport
        0x7fff81223000 -     0x7fff81283fff  com.apple.ISSupport (1.9.9 - 57) <E1E343D7-222C-3458-9D1F-FC600B7F1C50> /System/Library/PrivateFrameworks/ISSupport.framework/Versions/A/ISSupport
        0x7fff81284000 -     0x7fff81294ffb  libsasl2.2.dylib (170) <C8E25710-68B6-368A-BF3E-48EC7273177B> /usr/lib/libsasl2.2.dylib
        0x7fff81295000 -     0x7fff812c4fd2  libsystem_m.dylib (3047.16) <B7F0E2E4-2777-33FC-A787-D6430B630D54> /usr/lib/system/libsystem_m.dylib
        0x7fff812c5000 -     0x7fff81313fff  libcorecrypto.dylib (161.1) <F3973C28-14B6-3006-BB2B-00DD7F09ABC7> /usr/lib/system/libcorecrypto.dylib
        0x7fff81314000 -     0x7fff8131cff3  libCGCMS.A.dylib (599.7) <92AA4E85-7633-36E2-BAD0-7B1A2E48E75C> /System/Library/Frameworks/CoreGraphics.framework/Versions/A/Resources/libCGCMS .A.dylib
        0x7fff81733000 -     0x7fff8177cfff  com.apple.CoreMedia (1.0 - 1273.29) <4ACD30BA-E9FE-3842-A8B7-E3BD63747867> /System/Library/Frameworks/CoreMedia.framework/Versions/A/CoreMedia
        0x7fff8177d000 -     0x7fff81938ff6  com.apple.GeoServices (1.0 - 702.14.9) <A3A4D6AC-72B2-39F3-AAE0-9AF3B88C5C8E> /System/Library/PrivateFrameworks/GeoServices.framework/Versions/A/GeoServices
        0x7fff81939000 -     0x7fff81990fff  com.apple.ViewBridge (1.0 - 46) <C49FDC96-7087-3B2F-AEC3-039F7B2CB50C> /System/Library/PrivateFrameworks/ViewBridge.framework/Versions/A/ViewBridge
        0x7fff81991000 -     0x7fff819b3fff  com.apple.speech.LatentSemanticMappingFramework (2.11.6 - 2.11.6) <C2687C2C-239A-3EB4-857C-BA107F34A5E8> /System/Library/Frameworks/LatentSemanticMapping.framework/Versions/A/LatentSem anticMapping
        0x7fff819b4000 -     0x7fff819e9ffc  com.apple.LDAPFramework (2.4.28 - 194.5) <7E31A674-C6AB-33BE-BD5E-F5E3C6E22894> /System/Library/Frameworks/LDAP.framework/Versions/A/LDAP
        0x7fff819ea000 -     0x7fff81a18ff7  com.apple.securityinterface (9.0 - 55047) <0346D8A9-2CAA-38F3-A741-5FBA5E9F1E7C> /System/Library/Frameworks/SecurityInterface.framework/Versions/A/SecurityInter face
        0x7fff81a19000 -     0x7fff81aa4fff  libCoreStorage.dylib (380) <AE14C2F3-0EF1-3DCD-BF2B-A24D97D3B372> /usr/lib/libCoreStorage.dylib
        0x7fff81aa5000 -     0x7fff81aa8fff  com.apple.help (1.3.3 - 46) <AE763646-D07A-3F9A-ACD4-F5CBD734EE36> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framewor k/Versions/A/Help
        0x7fff81aa9000 -     0x7fff81aaafff  com.apple.AddressBook.ContactsData (8.0 - 1365) <61090508-4CC3-3F57-9B0C-D8527947D35D> /System/Library/PrivateFrameworks/ContactsData.framework/Versions/A/ContactsDat a
        0x7fff81aab000 -     0x7fff81dc5ff7  com.apple.MediaToolbox (1.0 - 1273.29) <6260E68B-7E50-3D49-8C0A-7145614C13D8> /System/Library/Frameworks/MediaToolbox.framework/Versions/A/MediaToolbox
        0x7fff81dc6000 -     0x7fff81dc6fff  com.apple.Carbon (154 - 157) <45A9A40A-78FF-3EA0-8FAB-A4F81052FA55> /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
        0x7fff81dc7000 -     0x7fff81dd5fff  com.apple.opengl (9.0.83 - 9.0.83) <AF467644-7B1D-327A-AC47-CECFCAF61990> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
        0x7fff81dd6000 -     0x7fff81dd6fff  com.apple.Accelerate (1.9 - Accelerate 1.9) <509BB27A-AE62-366D-86D8-0B06D217CF56> /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
        0x7fff81dd7000 -     0x7fff81ec5fff  libJP2.dylib (1038) <6C8179F5-8063-3ED6-A7C2-D5603DECDF28> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJP2.dylib
        0x7fff81ec6000 -     0x7fff81ef0ff7  libpcap.A.dylib (42) <91D3FF51-D6FE-3C05-98C9-1182E0EC3D58> /usr/lib/libpcap.A.dylib
        0x7fff81f04000 -     0x7fff81f07fff  com.apple.TCC (1.0 - 1) <32A075D9-47FD-3E71-95BC-BFB0D583F41C> /System/Library/PrivateFrameworks/TCC.framework/Versions/A/TCC
        0x7fff81f08000 -     0x7fff81f09ff7  libDiagnosticMessagesClient.dylib (100) <4CDB0F7B-C0AF-3424-BC39-495696F0DB1E> /usr/lib/libDiagnosticMessagesClient.dylib
        0x7fff81f0a000 -     0x7fff81f19ff8  com.apple.LangAnalysis (1.7.0 - 1.7.0) <8FE131B6-1180-3892-98F5-C9C9B79072D4> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LangAnalysis.framework/Versions/A/LangAnalysis
        0x7fff81f2a000 -     0x7fff82090fff  libGLProgrammability.dylib (9.0.83) <9C97E814-F674-30F8-8C2D-C45FC1E7D934> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLProgramma bility.dylib
        0x7fff82091000 -     0x7fff820f4ff7  com.apple.SystemConfiguration (1.13 - 1.13) <F05F4149-981B-380B-8F50-51CE804BBB89> /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfi guration
        0x7fff820f5000 -     0x7fff820f5ff7  com.apple.frameworks.SleepServices (1.1 - 1.1) <4D9C44FF-5403-3372-A90E-CBF2A34D7CE7> /System/Library/PrivateFrameworks/SleepServices.framework/Versions/A/SleepServi ces
        0x7fff820f6000 -     0x7fff82103ff7  libxar.1.dylib (202) <5572AA71-E98D-3FE1-9402-BB4A84E0E71E> /usr/lib/libxar.1.dylib
        0x7fff82104000 -     0x7fff82115ff7  com.apple.idsfoundation (10.0 - 1000) <0BC25100-092B-3C5A-8245-F7C963380785> /System/Library/PrivateFrameworks/IDSFoundation.framework/Versions/A/IDSFoundat ion
        0x7fff82181000 -     0x7fff821b5ffb  com.apple.datadetectors (5.0 - 246.0) <26962AB2-75C3-3D45-A9BF-6D75CC263DEF> /System/Library/PrivateFrameworks/DataDetectors.framework/Versions/A/DataDetect ors
        0x7fff821b6000 -     0x7fff821f6ff7  com.apple.CalDAV (7.0 - 155.1) <6912C282-D362-3473-90E3-655A36C0CC21> /System/Library/PrivateFrameworks/CalDAV.framework/Versions/A/CalDAV
        0x7fff821f7000 -     0x7fff8220bfff  com.apple.aps.framework (4.0 - 4.0) <F529A05B-FB03-397E-B06A-3A60B808FA11> /System/Library/PrivateFrameworks/ApplePushService.framework/Versions/A/ApplePu shService
        0x7fff8220c000 -     0x7fff8229bff7  com.apple.Metadata (10.7.0 - 800.12) <04486C95-3E49-36C4-89B6-925E925BB417> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadat a.framework/Versions/A/Metadata
        0x7fff8229c000 -     0x7fff82354ff7  com.apple.DiscRecording (8.0 - 8000.4.6) <CDAAAD04-A1D0-3C67-ABCC-EFC9E8D44E7E> /System/Library/Frameworks/DiscRecording.framework/Versions/A/DiscRecording
        0x7fff82355000 -     0x7fff82356ff7  libsystem_blocks.dylib (63) <FB856CD1-2AEA-3907-8E9B-1E54B6827F82> /usr/lib/system/libsystem_blocks.dylib
        0x7fff82357000 -     0x7fff82362ff7  com.apple.NetAuth (5.0 - 5.0) <C811E662-9EC3-3B74-808A-A75D624F326B> /System/Library/PrivateFrameworks/NetAuth.framework/Versions/A/NetAuth
        0x7fff82394000 -     0x7fff823e5ff3  com.apple.audio.CoreAudio (4.2.0 - 4.2.0) <BF4C2FE3-8BC8-30D1-8347-2A7221268794> /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
        0x7fff823e6000 -     0x7fff8240effb  libxslt.1.dylib (13) <C9794936-633C-3F0C-9E71-30190B9B41C1> /usr/lib/libxslt.1.dylib
        0x7fff8240f000 -     0x7fff824eefff  libcrypto.0.9.8.dylib (50) <B95B9DBA-39D3-3EEF-AF43-44608B28894E> /usr/lib/libcrypto.0.9.8.dylib
        0x7fff824ef000 -     0x7fff824f1fff  libRadiance.dylib (1038) <55F99274-5074-3C73-BAC5-AF234E71CF38> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libRadiance.d ylib
        0x7fff824f2000 -     0x7fff824f8ff7  com.apple.XPCService (2.0 - 1) <2CE632D7-FE57-36CF-91D4-C57D0F2E0BFE> /System/Library/PrivateFrameworks/XPCService.framework/Versions/A/XPCService
        0x7fff82511000 -     0x7fff8259dff7  com.apple.ink.framework (10.9 - 207) <8A50B893-AD03-3826-8555-A54FEAF08F47> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework /Versions/A/Ink
        0x7fff8259e000 -     0x7fff825b0fff  com.apple.ImageCapture (9.0 - 9.0) <BE0B65DA-3031-359B-8BBA-B9803D4ADBF4> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture. framework/Versions/A/ImageCapture
        0x7fff825b1000 -     0x7fff825cbfff  libdispatch.dylib (339.1.9) <46878A5B-4248-3057-962C-6D4A235EEF31> /usr/lib/system/libdispatch.dylib
        0x7fff825cc000 -     0x7fff826d1fff  com.apple.ImageIO.framework (3.3.0 - 1038) <2C058216-C6D8-3380-A7EA-92A3F04520C1> /System/Library/Frameworks/ImageIO.framework/Versions/A/ImageIO
        0x7fff826d2000 -     0x7fff8271aff7  com.apple.ExchangeWebServices (4.0 - 193) <867EDAF0-5863-397E-BA75-855878D68949> /System/Library/PrivateFrameworks/ExchangeWebServices.framework/Versions/A/Exch angeWebServices
        0x7fff8271b000 -     0x7fff8272eff7  com.apple.AppContainer (3.0 - 1) <A90C058D-46E8-3BAB-AF17-AF9C7C273069> /System/Library/PrivateFrameworks/AppContainer.framework/Versions/A/AppContaine r
        0x7fff8272f000 -     0x7fff8273afff  libGL.dylib (9.0.83) <984A960A-C159-3AE5-8B40-E2B451F6C712> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
        0x7fff8273b000 -     0x7fff8273fff7  libcache.dylib (62) <BDC1E65B-72A1-3DA3-A57C-B23159CAAD0B> /usr/lib/system/libcache.dylib
        0x7fff82740000 -     0x7fff82758ff7  com.apple.openscripting (1.4 - 157) <B3B037D7-1019-31E6-9D17-08E699AF3701> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting .framework/Versions/A/OpenScripting
        0x7fff82759000 -     0x7fff8275eff7  com.apple.MediaAccessibility (1.0 - 43) <D309D83D-5FAE-37A4-85ED-FFBDA8B66B82> /System/Library/Frameworks/MediaAccessibility.framework/Versions/A/MediaAccessi bility
        0x7fff827f6000 -     0x7fff82803ff4  com.apple.Librarian (1.2 - 1) <F1A2744D-8536-32C7-8218-9972C6300DAE> /System/Library/PrivateFrameworks/Librarian.framework/Versions/A/Librarian
        0x7fff82804000 -     0x7fff8280bff3  libcopyfile.dylib (103) <5A881779-D0D6-3029-B371-E3021C2DDA5E> /usr/lib/system/libcopyfile.dylib
        0x7fff8280c000 -     0x7fff82815ff3  libsystem_notify.dylib (121) <52571EC3-6894-37E4-946E-064B021ED44E> /usr/lib/system/libsystem_notify.dylib
        0x7fff82816000 -     0x7fff82867fff  com.apple.QuickLookFramework (5.0 - 622.3) <AB6CCD09-ECDF-3F01-9C42-34B37DDCF12D> /System/Library/Frameworks/QuickLook.framework/Versions/A/QuickLook
        0x7fff82868000 -     0x7fff8294cfff  com.apple.coreui (2.1 - 231) <432DB40C-6B7E-39C8-9FB5-B95917930056> /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
        0x7fff829e0000 -     0x7fff829f6fff  com.apple.CoreMediaAuthoring (2.2 - 947) <B01FBACC-DDD5-30A8-BCCF-57CE24ABA329> /System/Library/PrivateFrameworks/CoreMediaAuthoring.framework/Versions/A/CoreM ediaAuthoring
        0x7fff829f7000 -     0x7fff8356bff7  com.apple.AppKit (6.9 - 1265) <0E9FC8BF-DA3C-34C5-91CC-12BC922B5F01> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
        0x7fff8356c000 -     0x7fff835bfff7  com.apple.ical.EventKit (2.0 - 152) <34FD327F-0E27-3B0F-B801-0C8FF2B4814A> /System/Library/Frameworks/EventKit.framework/Versions/A/EventKit
        0x7fff835c0000 -     0x7fff835d2ff7  com.apple.addressbook.ContactsAutocomplete (8.0 - 1365) <9EF30F4C-2C3F-321C-8C32-1445395FD9C7> /System/Library/PrivateFrameworks/ContactsAutocomplete.framework/Versions/A/Con tactsAutocomplete
        0x7fff835d3000 -     0x7fff835d5ffb  libutil.dylib (34) <DAC4A6CF-A1BB-3874-9569-A919316D30E8> /usr/lib/libutil.dylib
        0x7fff835d6000 -     0x7fff835f2ff7  libsystem_kernel.dylib (2422.1.72) <D14913DB-47F1-3591-8DAF-D4B4EF5F8818> /usr/lib/system/libsystem_kernel.dylib
        0x7fff83af4000 -     0x7fff83cacff3  libicucore.A.dylib (511.25) <3ED7B656-416E-3071-AEC8-E85C90232F78> /usr/lib/libicucore.A.dylib
        0x7fff83cad000 -     0x7fff83edcff7  com.apple.CalendarPersistence (7.0 - 130) <8B3FAA74-A95C-3319-BD3C-970051BEB5DC> /System/Library/PrivateFrameworks/CalendarPersistence.framework/Versions/A/Cale ndarPersistence
        0x7fff83edd000 -     0x7fff83ee6ff7  libcldcpuengine.dylib (2.3.58) <A2E1ED7B-FC7E-31F6-830A-FF917689766B> /System/Library/Frameworks/OpenCL.framework/Versions/A/Libraries/libcldcpuengin e.dylib
        0x7fff83f84000 -     0x7fff83f9fff7  libCRFSuite.dylib (34) <FFAE75FA-C54E-398B-AA97-18164CD9789D> /usr/lib/libCRFSuite.dylib
        0x7fff83fa0000 -     0x7fff83fa3fff  com.apple.AppleSystemInfo (3.0 - 3.0) <4D032152-AA40-350E-BB96-44BC55C5C69C> /System/Library/PrivateFrameworks/AppleSystemInfo.framework/Versions/A/AppleSys temInfo
        0x7fff84075000 -     0x7fff8407fff7  com.apple.corerecents (1.0 - 1) <6C3ACB55-6FA5-3266-80D3-592B7258F5E7> /System/Library/PrivateFrameworks/CoreRecents.framework/Versions/A/CoreRecents
        0x7fff84309000 -     0x7fff84309fff  com.apple.AOSMigrate (1.0 - 1) <ABA8F3F2-BC96-3F89-AAF4-1AA459A0BCBD> /System/Library/PrivateFrameworks/AOSMigrate.framework/Versions/A/AOSMigrate
        0x7fff8430a000 -     0x7fff843a7fff  com.apple.imcore (10.0 - 1000) <027E09B4-B4B6-3710-8806-B4CE41DF3242> /System/Library/PrivateFrameworks/IMCore.framework/Versions/A/IMCore
        0x7fff8467c000 -     0x7fff8467cffd  libOpenScriptingUtil.dylib (157) <19F0E769-0989-3062-9AFB-8976E90E9759> /usr/lib/libOpenScriptingUtil.dylib
        0x7fff8467d000 -     0x7fff84698ff7  libPng.dylib (1038) <EF781AF8-C2E6-3179-B8A1-A584783070F1> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libPng.dylib
        0x7fff84699000 -     0x7fff8475bff1  com.apple.CoreText (352.0 - 367.15) <E5C70FC8-C861-39B8-A491-595E5B55CFC8> /System/Library/Frameworks/CoreText.framework/Versions/A/CoreText
        0x7fff8475c000 -     0x7fff8475fffa  libCGXType.A.dylib (599.7) <2FC9C2BC-B5C5-3C27-93F9-51C6C4512E9D> /System/Library/Frameworks/CoreGraphics.framework/Versions/A/Resources/libCGXTy pe.A.dylib
        0x7fff8476d000 -     0x7fff84a41fc7  com.apple.vImage (7.0 - 7.0) <D241DBFA-AC49-31E2-893D-EAAC31890C90> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.fr amework/Versions/A/vImage
        0x7fff84a42000 -     0x7fff84a89fff  libFontRegistry.dylib (127) <A77A0480-AA5D-3CC8-8B68-69985CD546DC> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontRegistry.dylib
        0x7fff84a8a000 -     0x7fff84a8afff  com.apple.ApplicationServices (48 - 48) <3E3F01A8-314D-378F-835E-9CC4F8820031> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services
        0x7fff84a8b000 -     0x7fff84a96ff7  com.apple.DirectoryService.Framework (10.9 - 173.1.1) <F8566D1F-450F-3571-911F-75C68E45919F> /System/Library/Frameworks/DirectoryService.framework/Versions/A/DirectoryServi ce
        0x7fff84a97000 -     0x7fff84a9cfff  libmacho.dylib (845) <1D2910DF-C036-3A82-A3FD-44FF73B5FF9B> /usr/lib/system/libmacho.dylib
        0x7fff84a9d000 -     0x7fff84ac1fff  com.apple.quartzfilters (1.8.0 - 1.7.0) <39C08086-9866-372F-9420-81F5689149DF> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzFilters .framework/Versions/A/QuartzFilters
        0x7fff84ac2000 -     0x7fff84acbfff  com.apple.CommonAuth (4.0 - 2.0) <1D263127-5F27-3128-996D-7397660D0C6E> /System/Library/PrivateFrameworks/CommonAuth.framework/Versions/A/CommonAuth
        0x7fff84acf000 -     0x7fff84b1bffe  com.apple.CoreMediaIO (401.0 - 4544) <44EBC0FE-DAD5-3711-96CB-05250F350A16> /System/Library/Frameworks/CoreMediaIO.framework/Versions/A/CoreMediaIO
        0x7fff84b1c000 -     0x7fff84b40fff  libxpc.dylib (300.1.17) <4554927A-9467-365C-91F1-5A116989DD7F> /usr/lib/system/libxpc.dylib
        0x7fff84b41000 -     0x7fff84b80fff  libGLU.dylib (9.0.83) <8B457205-513B-3477-AE9C-3AD979D5FE11> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
        0x7fff84b90000 -     0x7fff84bbcfff  com.apple.CoreServicesInternal (184.8 - 184.8) <707E05AE-DDA8-36FD-B0FF-7F15A061B46A> /System/Library/PrivateFrameworks/CoreServicesInternal.framework/Versions/A/Cor eServicesInternal
        0x7fff84bbd000 -     0x7fff84e67ffd  com.apple.HIToolbox (2.1 - 695) <C4DE35FF-D0AC-35C3-A7E6-F54CD153825C> /System/Library/Frameworks/Carbon.framework/Versions/

    That font which I believe is a 3rd party Adobe font has been replace with just Helvetica Neue in the system. Try the following:
    1 - delete the iWeb preference file, com.apple.iWeb.plist, that resides in your User/Library/Preferences folder.
    2 - go to your User/Library/Caches/com.apple.iWeb folder and delete the contents.
    3 - reboot.
    4 - launch iWeb and see if the warning returns or not.
    OT

  • After upgrading to Mountain Lion, Interface builder starts up with an error every boot.

    I've got a late 2008 Macbook Unibody 13", and a few months back I upgraded from Snow Leopard to Mountain Lion.  Ever since the upgrade, at every boot up Interface Builder starts up with an error.  I've just ignored it mostly, but now I'm getting annoyed with it.  How can I find the programs that start up every boot to research this, or stop it from loading Interface Builder every time?

    You have to delete it using the minus sign at the bottom. The check/un-check is for hiding items.

  • Error enabling "Mail, Contacts, Calendars, and Tasks with Outlook" in iCloud 3.0  Control Panel

    Unable to enable option “Mail, Contacts, Calendars, and Tasks with Outlook” under iCloud 3.0  Control Panel.
    Get following error when clicking checkbox to enable it under iCloud 3.0 Control Panel.
    "Setup can't continue because Outlook isn't configured to have a default profile. Check your Outlook settings and try again."
    Have tried the following:
    Uninstalled / reinstalled iCloud 3.0 control panel
    Removed all mail accounts from Outlook 2013 except MS account
    Confirmed Outlook was chosen for  “Always uses this profile” under Control Panel – Mail (MicroSoft Outlook 2013) – show profiles
    Still get the same error when trying to enable the option under iCloud 3.0 Control Panel
    PC is running Windows 8.1 (64 bit)
    Outlook 2013 was just installed on the PC as part of new Office 2013 installation

    Two more things:
    First, sorry for the bad spelling, grammar, and all of that. English isn't my first language and I'm so frustrated at this point I'm not paying any attention to it. Sorry!
    Second, after trying to repair again the icloud 3.0 through the Control Panel of Windows, guess what? It made Offce to crash again! Now I will have to install it again.
    =(

  • TS3899 Having trouble accessing my email account thru the mail app, after entering the account information in the settings page, hotmail returns with the error message " The user name or password for Hotmail is incorrect

    Having trouble accessing my email account thru the mail app, after entering the account information in the settings page, hotmail returns with the error message " The user name or password for Hotmail is incorrect". Help

    Hotmail is having problems:
    http://bostinno.streetwise.co/2013/08/15/hotmail-outage-hotmail-is-down-for-user s-still-photos/
    http://www.engadget.com/2013/08/14/outlook-outage/
    http://www.infoworld.com/d/applications/microsofts-skydrive-outlookcom-are-down- some-users-224940
    http://mashable.com/2013/08/14/outlook-down/
    http://techcrunch.com/2013/08/14/microsoft-acknowledges-outlook-com-messenger-sk ydrive-outages/

Maybe you are looking for

  • Active Directory Connector 9.1.1.7 for OIM 11.1.1.5.0

    Hi everyone, Do you know where I can download Active Directory Connector 9.1.1.7 on oracle website ? Cause everytime I do a search the only link I have is for downloading the most recent version (11.1.1.5.0). Thanks a lot ! Thibault

  • Best way to work with AVI

    Hi there, I am expecting a bunch of Super 8 mm transfert that will be in the AVI format. What is the best way to import the AVI files into FCP in order to get the best quality and edit them ? Thanks in advance Ivan

  • How many different way can we call a BPEL process

    Hi Guys, How many ways can we call a BPEL process I know 3 ways 1 ) Thru PLSQL 2) using Java API 3) From another BPEL Process. are there any other ways .... if so what are they ..... . Thanks Tom...

  • How do I get my iphone to turn back on...can't get a response

    My iphone recently shut off.  I can't get it to charge or come back on. What do I do

  • Page Attribute HTML Header on Page 0

    Why is there no HTML Header section on Page 0? Seems that this would be an ideal place to define my page stlye to apply to all pages. I'm trying to increase the font-size to 14 for all my pages. Instead of doing it on each page, I thought it would mo