Need Safari Mail Help

More help needed.
I always keep my address book up to date and have to change an email address or two. HOWEVER, when I go to compose/send an email and I type in the person's name as the email recipient and Safari Mail gives me the choice of the old email address (which is now useless and annoying) and the new email address which is needed. How do I get rid of the old email address from popping up as a choice?
I have gone into Safari Mail Preferences-Composing and unchecked "Automatically Complete Address" then logged off as user. I have even "restart" Leopard. I then go and "recheck" "Automatically Complete Address" and still get the old email addresses as options EVEN THOUGH I have removed these email addresses from my address book. How must I correct this?
Thanks.

Mail for OS X Leopard
http://discussions.apple.com/forum.jspa?forumID=1223
http://www.apple.com/support/leopard/mail/
Have you looked for a cache file?
Leopard has a real mess of spagetti string of aliases, links, and to me a real mess in
~/Library/Application Support/SyncServices
all related to push technology and synchronizing with phones and cloud services.

Similar Messages

  • Safari, Mail, Help crashes since 10.4.11

    Hello!
    Since i update to 10.4.11 some applications crashes when i try to start them with the "unexpected quit" message (Safari, Mail, Help-Viewer, Software-Update)
    I did not use any hacks, i also look in the libery but there is no PicLens and no other Plug-In.
    When i try to load the 10.4.10 Combo Updater the system crash again with the "unexpected quit" message.
    I use the Disk-Utility to repair the hard disk but it doesn´t help.
    I have no other Idea! Can you help me please?
    Basti

    Bastian,
    After your backup I would recommend that you download and attempt to reapply the Mac OS X 10.4.11 Combo Update (PPC).
    Very often a Combo Update will be successful when an incremental Software Update has not been successful.
    ;~)

  • Safari Mail Help

    More help needed.
    I always keep my address book up to date and have to change an email address or two. HOWEVER, when I go to compose/send an email and I type in the person's name as the email recipient and Safari Mail gives me the choice of the old email address (which is now useless and annoying) and the new email address which is needed. How do I get rid of the old email address from popping up as a choice?
    I have gone into Safari Mail Preferences-Composing and unchecked "Automatically Complete Address" then logged off as user. I have even "restart" Leopard. I then go and "recheck" "Automatically Complete Address" and still get the old email addresses as options EVEN THOUGH I have removed these email addresses from my address book. How must I correct this?
    Thanks

    Hi Lexonex,
    I guess you're referring to the Mail application and not Safari (Safari is the web browser with a compass for it's icon in the Dock, Mail has a stamp icon).
    If you do mean the Mail applications, go to Window menu (at the top of the screen) and select Previous Recipients. In there you will probably find the old addresses. Delete those and hopefully things will work as you expect them to.

  • I need Safari JavaScript help here

    Hi,
    Firefox supports a method on the window object called find(str) which will find text on your page and highlight it. Internet Explorer has something similar with the TextRange object. I can't find an equivalent call / method for Safari... is there one available? It's basically similar to what you can do with 'Find' from the browser menu, but you can do it via JavaScript.
    Thanks!
    -B

    Ok, I resolved that last issue, how ever, I've hit a new one.
    I've begun to build the actual MTPfs for FUSE, and I've managed to get it down to a minimal of errors:
    bash-3.2# make
    gcc -DPACKAGE_NAME=\"MTPfs\" -DPACKAGE_TARNAME=\"mtpfs\" -DPACKAGE_VERSION=\"0.6\" -DPACKAGE_STRING=\"MTPfs\ 0.6\" -DPACKAGE_BUGREPORT=\"Chris\ Debenham\ \<[email protected]\>\" -DPACKAGE=\"mtpfs\" -DVERSION=\"0.6\" -DDEBUG=0 -I. -DFUSEUSEVERSION=26 -framework IOKit -D_FreeBSD_=10 -DFILE_OFFSETBITS=64 -I/sw/include -I/sw/include/glib-2.0 -I/sw/lib/glib-2.0/include -I/sw/include/fuse -g -O2 -MT mtpfs-mtpfs.o -MD -MP -MF .deps/mtpfs-mtpfs.Tpo -c -o mtpfs-mtpfs.o `test -f 'mtpfs.c' || echo './'`mtpfs.c
    mtpfs.c:984: error: ‘mtpfs_statfs’ undeclared here (not in a function)
    mtpfs.c:985: warning: initialization from incompatible pointer type
    mtpfs.c:994:46: error: macro "fuse_main" requires 4 arguments, but only 3 given
    mtpfs.c: In function ‘main’:
    mtpfs.c:994: error: ‘fuse_main’ undeclared (first use in this function)
    mtpfs.c:994: error: (Each undeclared identifier is reported only once
    mtpfs.c:994: error: for each function it appears in.)
    make: * [mtpfs-mtpfs.o] Error 1
    any ideas?

  • Need Java Mail help

    good evening everybody
    iam new to JavaMail
    i used an example from oracle site that uses JavaMail to send an email, the applications tells me that the email has been sent successfully, but sadly i did't find any new emails in the email inbox i sent to......... i don't know the reasone...........
    the second thing is . is it important to write the password of the email i want to send from ????
    the last thing, what is the mail server i have to put when i use hotmail for example ........
    thanks
    and here is the code
    package myClasses;
    import javax.mail.*;          //JavaMail packages
    import javax.mail.internet.*; //JavaMail Internet packages
    import java.util.*;           //Java Util packages
    public class SendMailBean {
      public String send(String p_from, String p_to, String p_cc, String p_bcc,String p_subject, String p_message, String p_smtpServer) {
        String l_result = "<BR><BR><BR><BR><BR><BR><BR>";
        // Name of the Host machine where the SMTP server is running
        String l_host = p_smtpServer;
        // Gets the System properties
        Properties l_props = System.getProperties();
        // Puts the SMTP server name to properties object
        l_props.put("mail.smtp.host", l_host);
        // Get the default Session using Properties Object
        Session l_session = Session.getDefaultInstance(l_props, null);
        l_session.setDebug(true); // Enable the debug mode
        try {
          MimeMessage l_msg = new MimeMessage(l_session); // Create a New message
          l_msg.setFrom(new InternetAddress(p_from)); // Set the From address
          // Setting the "To recipients" addresses
          l_msg.setRecipients(Message.RecipientType.TO,InternetAddress.parse(p_to, false));
          // Setting the "Cc recipients" addresses
          l_msg.setRecipients(Message.RecipientType.CC,InternetAddress.parse(p_cc, false));
          // Setting the "BCc recipients" addresses
          l_msg.setRecipients(Message.RecipientType.BCC,InternetAddress.parse(p_bcc, false));
          l_msg.setSubject(p_subject); // Sets the Subject
          // Create and fill the first message part
          MimeBodyPart l_mbp = new MimeBodyPart();
          l_mbp.setText(p_message);
          // Create the Multipart and its parts to it
          Multipart l_mp = new MimeMultipart();
          l_mp.addBodyPart(l_mbp);
          // Add the Multipart to the message
          l_msg.setContent(l_mp);
          // Set the Date: header
          l_msg.setSentDate(new Date());
          // Send the message
          Transport.send(l_msg);
          // If here, then message is successfully sent.
          // Display Success message
          l_result = l_result + "<FONT SIZE=4 COLOR=\"blue\"><B>Success!</B>"+
                     "<FONT SIZE=4 COLOR=\"black\"> "+
                     "<HR><FONT color=green><B>Mail was successfully sent to </B></FONT>: "+p_to+"<BR>";
          //if CCed then, add html for displaying info
          if (!p_cc.equals(""))
            l_result = l_result +"<FONT color=green><B>CCed To </B></FONT>: "+p_cc+"<BR>";
          //if BCCed then, add html for displaying info
          if (!p_bcc.equals(""))
            l_result = l_result +"<FONT color=green><B>BCCed To </B></FONT>: "+p_bcc ;
          l_result = l_result+"<BR><HR>";
        } catch (MessagingException mex) { // Trap the MessagingException Error
            // If here, then error in sending Mail. Display Error message.
            l_result = l_result + "<FONT SIZE=4 COLOR=\"blue\"> <B>Error : </B><BR><HR> "+
                       "<FONT SIZE=3 COLOR=\"black\">"+mex.toString()+"<BR><HR>";
        } catch (Exception e) {
            // If here, then error in sending Mail. Display Error message.
            l_result = l_result + "<FONT SIZE=4 COLOR=\"blue\"> <B>Error : </B><BR><HR> "+
                       "<FONT SIZE=3 COLOR=\"black\">"+e.toString()+"<BR><HR>";
            e.printStackTrace();
        }//end catch block
        finally {
          return l_result;
      } // end of method send
    } //end of bean

    good evening everybody
    iam new to JavaMailDon't forget to read the JavaMail FAQ!
    i used an example from oracle site that uses JavaMail
    to send an email, the applications tells me that the
    email has been sent successfully, but sadly i did't
    find any new emails in the email inbox i sent
    to......... i don't know the reasone...........Turn on session debugging and examine the protocol
    trace. It might provide some clues. If it still seems like
    the server is accepting the message without complaint,
    the problem is in your mail server, or perhaps in any filters
    you have on your incoming mail. Check the mail server
    log file for clues.
    the second thing is . is it important to write the
    password of the email i want to send from ????Maybe. It depends on whether your mail server requires
    authentication or not.
    the last thing, what is the mail server i have to put
    when i use hotmail for example ........I don't know, check the hotmail web site for information
    about how to configure your mail client. Last time I looked,
    hotmail didn't even support such usage.

  • I've can't open any applications on my Mac ! I tried to delete some files from safari (history) and then none of the apps including iphoto, safari, mail, facetime. I don't know how to fix it, help ? any idea ?

    I've can't open any applications on my Mac ! I tried to delete some files from safari (history) and then none of the apps including iphoto, safari, mail, facetime. I don't know how to fix it, help ? any idea ?

    Please read this whole message before doing anything.
    This procedure is a diagnostic test. It’s unlikely to solve your problem. Don’t be disappointed when you find that nothing has changed after you complete it.
    The purpose of the test is to determine whether the problem is caused by third-party software that loads automatically at startup or login, or by a peripheral device. 
    Disconnect all wired peripherals except those needed for the test, and remove all aftermarket expansion cards. Boot in safe mode and log in to the account with the problem. Note: If FileVault is enabled, or if a firmware password is set, or if the boot volume is a software RAID, you can’t do this. Ask for further instructions.
    Safe mode is much slower to boot and run than normal, and some things won’t work at all, including sound output andWi-Fi on certain iMacs. The next normal boot may also be somewhat slow.
    The login screen appears even if you usually log in automatically. You must know your login password in order to log in. If you’ve forgotten the password, you will need to reset it before you begin. Test while in safe mode. Same problem? After testing, reboot as usual (i.e., not in safe mode) and verify that you still have the problem. Post the results of the test.

  • I have  a iphn 3gs running on ios 6.1.3  i buy it frm my frnd ..........n it has one prblm that safari mail n maps does't wrk it crashes all time when i try to run these ......plzzz help me what shoud i do ......i have tried reset many times bt it does't

    i have  a iphn 3gs running on ios 6.1.3  i buy it frm my frnd ..........n it has one prblm that safari mail n maps does't wrk it crashes all time when i try to run these ......plzzz help me what shoud i do ......i have tried reset many times bt it does't

    use a computer and restore the phone http://support.apple.com/kb/ht1414

  • In the new mail app for OSX v10.7 Lion it seems I can only setup my gmail account as an "imap", when I need to set it up as "pop"... PLZ HELP I NEED MY MAIL TO WORK!!!

    In the new mail app for OSX v10.7 Lion it seems I can only setup my gmail account as an "imap", when I need to set it up as "pop"... PLZ HELP I NEED MY MAIL TO WORK!!!

    Go to System prefs
    Select Mail Contacts and Calendars
    Then select Other
    Then select "Add a Mail Account and click create
    Then go to google for the settings you need:
    First here for the settings online at gmail http://tinyurl.com/du3fu
    Then here for the setting in mail http://tinyurl.com/38fevm8
    These are instructions for Mail 4.0 but all of the necessary settings should be listed.

  • Safari / Mail: No longer able to send webpages via Mail? HELP

    How can I restore my Safari / Mail settings to allow Safari to recognize Mail so I can resume sending webpages via Mail? It was working OK, then stopped giving me this message: <Safari couldn’t create an email message to send the link because it couldn’t locate an email application.You can use the Mail application included with Mac OS X to send email. To do so, you might need to install Mail using the Mac OS X installation CDs.> Did the installation of Firefox take over or change my settings?

    Go to Mail > Preferences > General and make sure Default Email Reader is set correctly.

  • OS X Updates Avail Banner - How to stop, I don't want to install Mavericks.  Did Apple Sys Pref Notifications: None for iTunes, Safari, Mail but still popping up.  Thanks for any help.

    IMac Desktop computer >OS X Updates Avail Banner - How to stop?  I don't want to install Mavericks.  Did Apple>Sys Pref>Notifications: None for iTunes, Safari, Mail but Banner still popping up.  Thanks for any help.

    I have tried unchecking the "Automatically check for updates" in the Software Update control panel. Of course, then you have to remember to check manually periodically for security updates etc. So far, the annoying banners seem to have stopped, but maybe just because I have not waited long enough for them to come back.

  • I need advise and help with this problem . First , I have been with Mac for many years ( 14 to be exact ) I do have some knowledge and understanding of Apple product . At the present time I'm having lots of problems with the router so I was looking in to

    I need advise and help with this problem .
    First , I have been with Mac for many years ( 14 to be exact ) I do have some knowledge and understanding of Apple product .
    At the present time I'm having lots of problems with the router so I was looking in to some info , and come across one web site regarding : port forwarding , IP addresses .
    In my frustration , amongst lots of open web pages tutorials and other useless information , I come across innocent looking link and software to installed called Genieo , which suppose to help with any router .
    Software ask for permission to install , and about 30 % in , my instinct was telling me , there is something not right . I stop installation . Delete everything , look for any
    trace in Spotlight , Library . Nothing could be find .
    Now , every time I open Safari , Firefox or Chrome , it will open in my home page , but when I start looking for something in steed of Google page , there is
    ''search.genieo.com'' page acting like a Google . I try again to get raid of this but I can not find solution .
    With more research , again using genieo.com search eng. there is lots of articles and warnings . From that I learn do not use uninstall software , because doing this will install more things where it come from.
    I do have AppleCare support but its to late to phone them , so maybe there some people with knowledge , how to get this of my computer
    Any help is welcome , English is my learned language , you may notice this , so I'm not that quick with the respond

    Genieo definitely doesn't help with your router. It's just adware, and has no benefit to you at all. They scammed you so that they could display their ads on your computer.
    To remove it, see:
    http://www.thesafemac.com/arg-genieo/
    Do not use the Genieo uninstaller!

  • Safari, Mail, iTunes and Skype won't open

    Hi there Apple-Support-Team,
    a few days ago I did an update of Safari, suggested automatically by Apple, but wasn't sure if the update was successfull (I had to leave the house).
    Now all applications with internet connection (Safari, Mail, iTunes, Skype) won't open anymore. Not from the dock or the application folder. I checked my internet connection which seems to be working.
    I've seen quite some reports in this forum but I am not sure if I'm having the same trouble as the other users. I get no error reports or anything else, the apps just don't open.
    Mac OS X version 10.4.11
    Safari 3.0.4
    Many thanks
    Mexximexx

    Welcome to the forums!
    Did you restart your Mac after the install?
    If your Safari keeps crashing, or if you are updating Safari (or just have) and it is misbehaving:
    N.B. Never delete Safari, never run it under Rosetta, don't use proxy settings, and don't change the application's name or move it from the top level of the Applications Folder to a sub-folder.
    (If you prefer to download updates via Software Update in the Apple menu (which would ensure that the correct version for your Mac was being downloaded), it is not recommended to allow SU to install major (or even minor) updates automatically. Set Software Update to just download the updater without immediately installing it. There is always the possibility that the combined download and install (which can be a lengthy process) might be interrupted by a power outage or your cat walking across the keyboard, and an interrupted install will almost certainly cause havoc. Once it is downloaded, you can install at a time that suits you. You should make a backup copy of the updater on a CD in case you ever need a reinstall. Alternatively you can download Safari directly:
    Safari 4.1.1 for Tiger can be downloaded here:
    http://support.apple.com/kb/DL1069
    Safari 5.0.1 for Leopard (and Snow Leopard) can be downloaded from here:
    http://support.apple.com/kb/DL1070
    Make sure you download the correct version for your system.
    Also, observe the recommended procedure for installing software: repair permissions and close all applications, install, then repair permissions again.)
    Input Managers and other plug-ins from third parties can do as much harm as good. They use a security loophole to reach right into your applications' code and change that code as the application starts up. If Safari is crashing, the very first thing to do is clear out your InputManagers folders (both in your own Library and in the top-level Library), log out and log back in, and try again.
    So, disable all third party add-ons before updating Safari, as they may not have been updated yet for the new version. Add them back one by one. If something goes awry, remove it again and check on the software manufacturer's website for news of an update to match your version of Safari. Remember: Tiger up to 10.4.10 used Safari 2.0.4 or, if you downloaded it, Safari 3.0.3 beta. Safari 10.4.11 used Safari 3.0.4 which was not a beta and which was updated to v.3.1.2, and now Tiger uses Safari 4.1.1 and Leopard uses Safari 5.0.1, as does Snow Leopard albeit a different version. If these latest versions of Safari are not the fastest browser you have ever used, then something is wrong!
    (Trying to revert to a previous version of Safari can have repercussions, as previous versions of Safari used a completely different webkit on which other applications like iChat, Mail, Dashboard Widgets etc also rely, but if you really want to do this post back for instructions on the safe way to do so.)
    Most errors reported here after an update are due to an unrepaired or undetected inherent fault in the system, and/or a third party ad-on. Add-ons that have been frequently mentioned here, among others, for causing such problems are Piclens, Saft, AcidSearch and Pithhelmet, and the dreaded CT Toolbar. If you have them, trash them and go the developer's sites to see if new versions are available for the latest version of Safari on your current operating system.
    You must also ensure that you have downloaded and installed all the correct version for your Mac of Security Updates. These require a restart and a permission repair.
    To reiterate, Input Managers reach right into an application and alter its code. This puts the behavior of the affected application outside the control and responsibility of its developers: a recipe for problems. That's not to say that issues absolutely will ensue as a result of Input Managers, but you, as a user, must decide. If the functionality of a specific Input Manager or set thereof is really important to you, you may well choose to assume the associated risk.
    Again, the advice is to remove all Input Managers from the following directories:
    • Hard Disk/Library/InputManagers
    • Home/Library/InputManagers
    especially prior to system updates and updates to Safari (they can always be added back one-by-one later).
    Lastly, the Safari updates require a restart of your Mac, and sometimes even a double restart is required.

  • Safari, Mail, Dashboard quit unexpectedly

    Everytime I try to open Safari, Mail or my Dashboard I get the message "The application (Mail or Safari or Dashboard) quit unexpectedly. I've tried dragging the Library/Preference folder to the desktop and it doesn't work, I've tried dragging different .plist and it still doesn't work. I can't download Firefox or anything else because if Safari doesn't open I can't navigate! I want to reset Safari but it doesn't give me enought time to do it. To finish off I live in South America so I don't have an apple store in my country...I am writing all of this from another computer, its been a week that my MAC has become useless for me, I am frustrated, can someone help me out PLEASE?

    The only way I could do it was burning it in a CD. I've tried what you have told me, it doesn't work, here is the crash reports for my Safari and Mail
    Date/Time: 2008-08-29 19:18:20.018 -0500
    OS Version: 10.4.11 (Build 8S2167)
    Report Version: 4
    Command: Safari
    Path: /Applications/Safari.app/Contents/MacOS/Safari
    Parent: WindowServer [63]
    Version: 3.1.1 (4525.18)
    Build Version: 1
    Project Name: WebBrowser
    Source Version: 45251800
    PID: 251
    Thread: 17
    Exception: EXCBADACCESS (0x0001)
    Codes: KERNINVALIDADDRESS (0x0001) at 0x772e7777
    Thread 0 Crashed:
    0 com.apple.CoreFoundation 0x90866d6e CFStringGetPascalString + 28
    1 com.apple.LangAnalysis 0x91849759 TAccessMethodRegistrar::RegisterAccessMethod(__CFBundle*) + 531
    2 com.apple.LangAnalysis 0x91848d94 INIT_DictionaryManager + 346
    3 com.apple.LangAnalysis 0x91848c13 AssureDictionaryMgrInitialized + 185
    4 com.apple.LangAnalysis 0x91848b4a DCMCreateDictionaryIterator + 15
    5 com.apple.Kotoeri 0x1ea9f84b KotoeriComponentDispatch + 260203
    6 com.apple.Kotoeri 0x1eaa1855 KotoeriComponentDispatch + 268405
    7 com.apple.Kotoeri 0x1ea890b2 KotoeriComponentDispatch + 168146
    8 com.apple.Kotoeri 0x1ea899a4 KotoeriComponentDispatch + 170436
    9 com.apple.Kotoeri 0x1ea66dfe KotoeriComponentDispatch + 28190
    10 ...ple.CoreServices.CarbonCore 0x90cd0a4f CallComponentFunctionCommon + 513
    11 com.apple.Kotoeri 0x1ea64874 KotoeriComponentDispatch + 18580
    12 com.apple.Kotoeri 0x1ea60295 KotoeriComponentDispatch + 693
    13 ...ple.CoreServices.CarbonCore 0x90cd0734 CallComponentDispatch + 34
    14 com.apple.HIToolbox 0x9308948b SetTextServiceProperty + 52
    15 ...romedia.Flash Player.plugin 0x178a8772 Flash_EnforceLocalSecurity + 37194
    16 ...romedia.Flash Player.plugin 0x17859f81 0x174f7000 + 3551105
    17 <<00000000>> 0x1e1be772 0 + 505145202
    18 ...romedia.Flash Player.plugin 0x17a4e8cd memcopy_mmx + 1296645
    19 ...romedia.Flash Player.plugin 0x179c9f64 memcopy_mmx + 753564
    20 ...romedia.Flash Player.plugin 0x177e84b9 0x174f7000 + 3085497
    21 ...romedia.Flash Player.plugin 0x177ea31a 0x174f7000 + 3093274
    22 ...romedia.Flash Player.plugin 0x177ea3e8 0x174f7000 + 3093480
    23 ...romedia.Flash Player.plugin 0x177edefd 0x174f7000 + 3108605
    24 ...romedia.Flash Player.plugin 0x1773109e 0x174f7000 + 2334878
    25 ...romedia.Flash Player.plugin 0x17734f85 0x174f7000 + 2350981
    26 ...romedia.Flash Player.plugin 0x1773558c 0x174f7000 + 2352524
    27 ...romedia.Flash Player.plugin 0x1784f2c5 0x174f7000 + 3506885
    28 <<00000000>> 0x1e1bcbf2 0 + 505138162
    29 ...romedia.Flash Player.plugin 0x17a4e8cd memcopy_mmx + 1296645
    30 <<00000000>> 0x27974371 0 + 664224625
    31 ...romedia.Flash Player.plugin 0x17a4e8cd memcopy_mmx + 1296645
    32 <<00000000>> 0x27974175 0 + 664224117
    33 ...romedia.Flash Player.plugin 0x17a4e8cd memcopy_mmx + 1296645
    34 <<00000000>> 0x279739d3 0 + 664222163
    35 ...romedia.Flash Player.plugin 0x17a4e8cd memcopy_mmx + 1296645
    36 ...romedia.Flash Player.plugin 0x179c9f64 memcopy_mmx + 753564
    37 ...romedia.Flash Player.plugin 0x177e84b9 0x174f7000 + 3085497
    38 ...romedia.Flash Player.plugin 0x177ea1cc 0x174f7000 + 3092940
    39 ...romedia.Flash Player.plugin 0x177ea3e8 0x174f7000 + 3093480
    40 ...romedia.Flash Player.plugin 0x177ee27d 0x174f7000 + 3109501
    41 ...romedia.Flash Player.plugin 0x177053db 0x174f7000 + 2155483
    42 ...romedia.Flash Player.plugin 0x17742d5c 0x174f7000 + 2407772
    43 ...romedia.Flash Player.plugin 0x178b3b74 Flash_EnforceLocalSecurity + 83276
    44 ...romedia.Flash Player.plugin 0x1789f78a Flash_EnforceLocalSecurity + 354
    45 com.apple.WebKit 0x94d68700 -[WebBaseNetscapePluginView sendEvent:] + 332
    46 com.apple.WebKit 0x94d72cd7 -[WebBaseNetscapePluginView mouseUp:] + 77
    47 com.apple.WebCore 0x9511d613 WebCore::EventHandler::eventLoopHandleMouseUp(WebCore::MouseEventWithHitTestRes ults const&) + 199
    48 com.apple.WebCore 0x9511d526 WebCore::EventHandler::handleMouseUp(WebCore::MouseEventWithHitTestResults const&) + 26
    49 com.apple.WebCore 0x9511d015 WebCore::EventHandler::handleMouseReleaseEvent(WebCore::MouseEventWithHitTestRe sults const&) + 45
    50 com.apple.WebCore 0x9511c51f WebCore::EventHandler::handleMouseReleaseEvent(WebCore::PlatformMouseEvent const&) + 783
    51 com.apple.WebCore 0x9511c131 WebCore::EventHandler::mouseUp(NSEvent*) + 323
    52 com.apple.WebKit 0x94d714c9 -[WebHTMLView mouseUp:] + 219
    53 com.apple.AppKit 0x9334a00b -[NSWindow sendEvent:] + 5403
    54 com.apple.Safari 0x00028128 0x1000 + 160040
    55 com.apple.AppKit 0x9333bf28 -[NSApplication sendEvent:] + 5023
    56 com.apple.Safari 0x00027c45 0x1000 + 158789
    57 com.apple.AppKit 0x93266a87 -[NSApplication run] + 547
    58 com.apple.AppKit 0x9325a9c0 NSApplicationMain + 573
    59 com.apple.Safari 0x000a960e 0x1000 + 689678
    60 com.apple.Safari 0x000a9535 0x1000 + 689461
    Thread 1:
    0 libSystem.B.dylib 0x900248c7 semaphorewait_signaltrap + 7
    1 com.apple.WebCore 0x94fb9adc WebCore::ThreadCondition::wait(WebCore::Mutex&) + 24
    2 com.apple.WebCore 0x94fb4a79 WebCore::IconDatabase::syncThreadMainLoop() + 243
    3 com.apple.WebCore 0x94f6f2fa WebCore::IconDatabase::iconDatabaseSyncThread() + 180
    4 libSystem.B.dylib 0x90024227 pthreadbody + 84
    Thread 2:
    0 libSystem.B.dylib 0x90009cd7 machmsgtrap + 7
    1 com.apple.CoreFoundation 0x9082d21b CFRunLoopRunSpecific + 2014
    2 com.apple.CoreFoundation 0x9082ca36 CFRunLoopRunInMode + 61
    3 com.apple.Foundation 0x92851c76 +[NSURLCache _diskCacheSyncLoop:] + 206
    4 com.apple.Foundation 0x927f539c forkThreadForFunction + 123
    5 libSystem.B.dylib 0x90024227 pthreadbody + 84
    Thread 3:
    0 libSystem.B.dylib 0x90009cd7 machmsgtrap + 7
    1 com.apple.CoreFoundation 0x9082d21b CFRunLoopRunSpecific + 2014
    2 com.apple.CoreFoundation 0x9082ca36 CFRunLoopRunInMode + 61
    3 com.apple.Foundation 0x9282aa40 +[NSURLConnection(NSURLConnectionInternal) _resourceLoadLoop:] + 259
    4 com.apple.Foundation 0x927f539c forkThreadForFunction + 123
    5 libSystem.B.dylib 0x90024227 pthreadbody + 84
    Thread 4:
    0 libSystem.B.dylib 0x9001a1cc select + 12
    1 libSystem.B.dylib 0x90024227 pthreadbody + 84
    Thread 5:
    0 libSystem.B.dylib 0x900248c7 semaphorewait_signaltrap + 7
    1 com.apple.Foundation 0x9284b2fc -[NSConditionLock lockWhenCondition:] + 39
    2 com.apple.Syndication 0x99b21966 -[AsyncDB _run:] + 181
    3 com.apple.Foundation 0x927f539c forkThreadForFunction + 123
    4 libSystem.B.dylib 0x90024227 pthreadbody + 84
    Thread 6:
    0 libSystem.B.dylib 0x900248c7 semaphorewait_signaltrap + 7
    1 com.apple.Foundation 0x9284b2fc -[NSConditionLock lockWhenCondition:] + 39
    2 com.apple.AppKit 0x93343e50 -[NSUIHeartBeat _heartBeatThread:] + 377
    3 com.apple.Foundation 0x927f539c forkThreadForFunction + 123
    4 libSystem.B.dylib 0x90024227 pthreadbody + 84
    Thread 7:
    0 libSystem.B.dylib 0x90009cd7 machmsgtrap + 7
    1 com.apple.CoreFoundation 0x9082d21b CFRunLoopRunSpecific + 2014
    2 com.apple.CoreFoundation 0x9083e0f8 CFRunLoopRun + 60
    3 com.apple.QuickTime 0x94316c51 QTSNetworkThread_RunThread + 131
    4 libSystem.B.dylib 0x90024227 pthreadbody + 84
    Thread 8:
    0 libSystem.B.dylib 0x90009cd7 machmsgtrap + 7
    1 com.apple.CoreFoundation 0x9082d21b CFRunLoopRunSpecific + 2014
    2 com.apple.CoreFoundation 0x9082ca36 CFRunLoopRunInMode + 61
    3 com.apple.audio.CoreAudio 0x91469356 HALRunLoop::OwnThread(void*) + 158
    4 com.apple.audio.CoreAudio 0x91469171 CAPThread::Entry(CAPThread*) + 93
    5 libSystem.B.dylib 0x90024227 pthreadbody + 84
    Thread 9:
    0 libSystem.B.dylib 0x900248c7 semaphorewait_signaltrap + 7
    1 com.apple.ColorSync 0x915a86db pthreadSemaphoreWait(t_pthreadSemaphore*) + 35
    2 com.apple.ColorSync 0x915c2dec CMMConvTask(void*) + 60
    3 libSystem.B.dylib 0x90024227 pthreadbody + 84
    Thread 10:
    0 libSystem.B.dylib 0x90009cd7 machmsgtrap + 7
    1 ...romedia.Flash Player.plugin 0x179bf341 memcopy_mmx + 709497
    2 libSystem.B.dylib 0x90024227 pthreadbody + 84
    Thread 11:
    0 libSystem.B.dylib 0x900248c7 semaphorewait_signaltrap + 7
    1 ...romedia.Flash Player.plugin 0x17886572 0x174f7000 + 3732850
    2 ...romedia.Flash Player.plugin 0x178bde68 Flash_EnforceLocalSecurity + 124992
    3 ...romedia.Flash Player.plugin 0x1788681c 0x174f7000 + 3733532
    4 libSystem.B.dylib 0x90024227 pthreadbody + 84
    Thread 12:
    0 libSystem.B.dylib 0x900248c7 semaphorewait_signaltrap + 7
    1 ...romedia.Flash Player.plugin 0x17886572 0x174f7000 + 3732850
    2 ...romedia.Flash Player.plugin 0x178bde68 Flash_EnforceLocalSecurity + 124992
    3 ...romedia.Flash Player.plugin 0x1788681c 0x174f7000 + 3733532
    4 libSystem.B.dylib 0x90024227 pthreadbody + 84
    Thread 13:
    0 libSystem.B.dylib 0x90026d5c kevent + 12
    1 ...ple.CoreServices.CarbonCore 0x90cb8c68 PrivateMPEntryPoint + 51
    2 libSystem.B.dylib 0x90024227 pthreadbody + 84
    Thread 14:
    0 libSystem.B.dylib 0x900248c7 semaphorewait_signaltrap + 7
    1 ...ple.CoreServices.CarbonCore 0x90cb8e0d MPWaitOnQueue + 198
    2 com.apple.DesktopServices 0x9271b943 TNodeSyncTask::SyncTaskProc(void*) + 143
    3 ...ple.CoreServices.CarbonCore 0x90cb8c68 PrivateMPEntryPoint + 51
    4 libSystem.B.dylib 0x90024227 pthreadbody + 84
    Thread 15:
    0 libSystem.B.dylib 0x90047dd7 semaphoretimedwait_signaltrap + 7
    1 ...ple.CoreServices.CarbonCore 0x90ce1da5 TSWaitOnSemaphoreCommon + 163
    2 ...ple.CoreServices.CarbonCore 0x90ce8d8d TimerThread + 87
    3 libSystem.B.dylib 0x90024227 pthreadbody + 84
    Thread 16:
    0 libSystem.B.dylib 0x90009cd7 machmsgtrap + 7
    1 com.apple.CoreFoundation 0x9082d21b CFRunLoopRunSpecific + 2014
    2 com.apple.CoreFoundation 0x9082ca36 CFRunLoopRunInMode + 61
    3 com.apple.CoreFoundation 0x90874856 CFMessagePortSendRequest + 949
    4 com.apple.LangAnalysis 0x918568fe SendMessage + 419
    5 com.apple.LangAnalysis 0x918530e6 LAOpenContext + 350
    6 com.apple.Kotoeri 0x1ea6480a KotoeriComponentDispatch + 18474
    7 libSystem.B.dylib 0x90024227 pthreadbody + 84
    Thread 17 Crashed:
    0 com.apple.CoreFoundation 0x90866d6e CFStringGetPascalString + 28
    1 com.apple.LangAnalysis 0x91849759 TAccessMethodRegistrar::RegisterAccessMethod(__CFBundle*) + 531
    2 com.apple.LangAnalysis 0x91848d94 INIT_DictionaryManager + 346
    3 com.apple.LangAnalysis 0x91848c13 AssureDictionaryMgrInitialized + 185
    4 com.apple.LangAnalysis 0x9184cea3 DCMRegisterDictionaryFile + 25
    5 com.apple.Kotoeri 0x1ea66628 KotoeriComponentDispatch + 26184
    6 com.apple.Kotoeri 0x1ea664d2 KotoeriComponentDispatch + 25842
    7 libSystem.B.dylib 0x90024227 pthreadbody + 84
    Thread 17 crashed with X86 Thread State (32-bit):
    eax: 0x772e7777 ebx: 0x90866d60 ecx: 0x00403f20 edx: 0x00000040
    edi: 0x772e7777 esi: 0x1cff4fb0 ebp: 0xbfffcf58 esp: 0xbfffcef0
    ss: 0x0000001f efl: 0x00010202 eip: 0x90866d6e cs: 0x00000017
    ds: 0x0000001f es: 0x0000001f fs: 0x00000000 gs: 0x00000037
    Binary Images Description:
    0x1000 - 0x120fff com.apple.Safari 3.1.1 (4525.18) /Applications/Safari.app/Contents/MacOS/Safari
    0x15c48000 - 0x15c61fff com.apple.AppleIntermediateCodec 1.1 (141) /Library/QuickTime/AppleIntermediateCodec.component/Contents/MacOS/AppleInterme diateCodec
    0x15c99000 - 0x15cb2fff com.apple.applepixletvideo 1.2.9 (1.2d9) /System/Library/QuickTime/ApplePixletVideo.component/Contents/MacOS/ApplePixlet Video
    0x1614c000 - 0x16188fff com.apple.QuickTimeFireWireDV.component 7.4.5 (67) /System/Library/QuickTime/QuickTimeFireWireDV.component/Contents/MacOS/QuickTim eFireWireDV
    0x1619c000 - 0x1619cfff com.apple.SpotLightCM 1.0 (121.36) /System/Library/Contextual Menu Items/SpotlightCM.plugin/Contents/MacOS/SpotlightCM
    0x1726c000 - 0x1726efff com.apple.AutomatorCMM 1.0.1 (88.2) /System/Library/Contextual Menu Items/AutomatorCMM.plugin/Contents/MacOS/AutomatorCMM
    0x17272000 - 0x17276fff com.apple.FolderActionsMenu 1.3.1 /System/Library/Contextual Menu Items/FolderActionsMenu.plugin/Contents/MacOS/FolderActionsMenu
    0x174f7000 - 0x17af4fff com.macromedia.Flash Player.plugin 9.0.115 (1.0.4f60) /Library/Internet Plug-Ins/Flash Player.plugin/Contents/MacOS/Flash Player
    0x18c5c000 - 0x18c5efff com.intego.VirusBarrierCM ??? (10.4.3) /Library/Contextual Menu Items/VirusBarrierCM.plugin/Contents/MacOS/VirusBarrierCM
    0x18f54000 - 0x18ff3fff com.apple.QuickTimeImporters.component 7.4.5 (67) /System/Library/QuickTime/QuickTimeImporters.component/Contents/MacOS/QuickTime Importers
    0x1a05d000 - 0x1a06bfff com.apple.quicktime.webplugin 7.4.5 (67) /Library/Internet Plug-Ins/QuickTime Plugin.webplugin/Contents/MacOS/QuickTime Plugin
    0x1b2d3000 - 0x1b2effff GLDriver /System/Library/Frameworks/OpenGL.framework/Versions/A/Resources/GLDriver.bundl e/GLDriver
    0x1b554000 - 0x1b794fff net.telestream.wmv.import 2.2.0.49 /Library/QuickTime/Flip4Mac WMV Import.component/Contents/MacOS/Flip4Mac WMV Import
    0x1b7cc000 - 0x1b98efff net.telestream.wmv.advanced 2.2.0.49 /Library/QuickTime/Flip4Mac WMV Advanced.component/Contents/MacOS/Flip4Mac WMV Advanced
    0x1b9d2000 - 0x1b9f6fff GLRendererFloat /System/Library/Frameworks/OpenGL.framework/Versions/A/Resources/GLRendererFloa t.bundle/GLRendererFloat
    0x1c1a4000 - 0x1c2fdfff GLEngine /System/Library/Frameworks/OpenGL.framework/Resources/GLEngine.bundle/GLEngine
    0x1c329000 - 0x1c517fff com.apple.ATIRadeonX1000GLDriver 1.4.56 (4.5.6) /System/Library/Extensions/ATIRadeonX1000GLDriver.bundle/Contents/MacOS/ATIRade onX1000GLDriver
    0x1c880000 - 0x1c882fff com.apple.PDFImporter 1.6 (???) /System/Library/Components/PDFImporter.component/Contents/MacOS/PDFImporter
    0x1c9f4000 - 0x1c9f9fff com.apple.audio.AppleHDAHALPlugIn 1.3.7 (1.3.7a23) /System/Library/Extensions/AppleHDA.kext/Contents/PlugIns/AppleHDAHALPlugIn.bun dle/Contents/MacOS/AppleHDAHALPlugIn
    0x1ea5f000 - 0x1eab3fff com.apple.Kotoeri 4.0.4 /System/Library/Components/Kotoeri.component/Contents/MacOS/Kotoeri
    0x70000000 - 0x700fafff com.apple.audio.units.Components 1.4.7 /System/Library/Components/CoreAudio.component/Contents/MacOS/CoreAudio
    0x8e0ae000 - 0x8e0ecfff com.apple.CoreMediaIOServicesPrivate 8.0 /System/Library/PrivateFrameworks/CoreMediaIOServicesPrivate.framework/Versions /A/CoreMediaIOServicesPrivate
    0x8e803000 - 0x8e960fff com.apple.QuickTimeStreaming.component 7.4.5 (67) /System/Library/QuickTime/QuickTimeStreaming.component/Contents/MacOS/QuickTime Streaming
    0x8e9bc000 - 0x8e9e6fff com.apple.CoreMediaPrivate 8.0 /System/Library/PrivateFrameworks/CoreMediaPrivate.framework/Versions/A/CoreMed iaPrivate
    0x8e9f7000 - 0x8e9fbfff com.apple.CoreMediaAuthoringPrivate 1.3 /System/Library/PrivateFrameworks/CoreMediaAuthoringPrivate.framework/Versions/ A/CoreMediaAuthoringPrivate
    0x8ea03000 - 0x8eaccfff com.apple.QuickTimeMPEG4.component 7.4.5 (67) /System/Library/QuickTime/QuickTimeMPEG4.component/Contents/MacOS/QuickTimeMPEG 4
    0x8ee01000 - 0x8eed8fff com.apple.QuickTimeH264.component 7.4.5 (67) /System/Library/QuickTime/QuickTimeH264.component/Contents/MacOS/QuickTimeH264
    0x8fe00000 - 0x8fe4afff dyld 46.16 /usr/lib/dyld
    0x90000000 - 0x90171fff libSystem.B.dylib /usr/lib/libSystem.B.dylib
    0x901c1000 - 0x901c3fff libmathCommon.A.dylib /usr/lib/system/libmathCommon.A.dylib
    0x901c5000 - 0x90202fff com.apple.CoreText 1.1.3 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreText.framework/Versions/A/CoreText
    0x90229000 - 0x902fffff ATS /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/ATS
    0x9031f000 - 0x90774fff com.apple.CoreGraphics 1.258.77 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/CoreGraphics
    0x9080b000 - 0x908d3fff com.apple.CoreFoundation 6.4.10 (368.33) /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
    0x90911000 - 0x90911fff com.apple.CoreServices 10.4 (???) /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
    0x90913000 - 0x90a07fff libicucore.A.dylib /usr/lib/libicucore.A.dylib
    0x90a57000 - 0x90ad6fff libobjc.A.dylib /usr/lib/libobjc.A.dylib
    0x90aff000 - 0x90b63fff libstdc++.6.dylib /usr/lib/libstdc++.6.dylib
    0x90bd2000 - 0x90bd9fff libgcc_s.1.dylib /usr/lib/libgcc_s.1.dylib
    0x90bde000 - 0x90c51fff com.apple.framework.IOKit 1.4.8 (???) /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
    0x90c66000 - 0x90c78fff libauto.dylib /usr/lib/libauto.dylib
    0x90c7e000 - 0x90f24fff com.apple.CoreServices.CarbonCore 682.28 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore
    0x90f67000 - 0x90fcffff com.apple.CoreServices.OSServices 4.1 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServi ces.framework/Versions/A/OSServices
    0x91008000 - 0x91047fff com.apple.CFNetwork 129.22 (129.23) /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CFNetwo rk.framework/Versions/A/CFNetwork
    0x9105a000 - 0x9106afff com.apple.WebServices 1.1.3 (1.1.0) /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/WebServ icesCore.framework/Versions/A/WebServicesCore
    0x91075000 - 0x910f4fff com.apple.SearchKit 1.0.7 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchK it.framework/Versions/A/SearchKit
    0x9112e000 - 0x9114cfff com.apple.Metadata 10.4.4 (121.36) /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadat a.framework/Versions/A/Metadata
    0x91158000 - 0x91166fff libz.1.dylib /usr/lib/libz.1.dylib
    0x91169000 - 0x91308fff com.apple.security 4.5.2 (29774) /System/Library/Frameworks/Security.framework/Versions/A/Security
    0x91406000 - 0x9140efff com.apple.DiskArbitration 2.1.2 /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
    0x91415000 - 0x9141cfff libbsm.dylib /usr/lib/libbsm.dylib
    0x91420000 - 0x91446fff com.apple.SystemConfiguration 1.8.6 /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfi guration
    0x91458000 - 0x914cefff com.apple.audio.CoreAudio 3.0.5 /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
    0x9151f000 - 0x9151ffff com.apple.ApplicationServices 10.4 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services
    0x91521000 - 0x9154cfff com.apple.AE 314 (313) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ AE.framework/Versions/A/AE
    0x9155f000 - 0x91633fff com.apple.ColorSync 4.4.10 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ColorSync.framework/Versions/A/ColorSync
    0x9166e000 - 0x916e1fff com.apple.print.framework.PrintCore 4.6 (177.13) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ PrintCore.framework/Versions/A/PrintCore
    0x9170f000 - 0x917b8fff com.apple.QD 3.10.25 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ QD.framework/Versions/A/QD
    0x917de000 - 0x91829fff com.apple.HIServices 1.5.2 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ HIServices.framework/Versions/A/HIServices
    0x91848000 - 0x9185efff com.apple.LangAnalysis 1.6.3 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LangAnalysis.framework/Versions/A/LangAnalysis
    0x9186a000 - 0x91884fff com.apple.FindByContent 1.5 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ FindByContent.framework/Versions/A/FindByContent
    0x9188e000 - 0x918cbfff com.apple.LaunchServices 182 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LaunchServices.framework/Versions/A/LaunchServices
    0x918df000 - 0x918ebfff com.apple.speech.synthesis.framework 3.5 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ SpeechSynthesis.framework/Versions/A/SpeechSynthesis
    0x918f2000 - 0x91932fff com.apple.ImageIO.framework 1.5.6 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/ImageIO
    0x91945000 - 0x919f7fff libcrypto.0.9.7.dylib /usr/lib/libcrypto.0.9.7.dylib
    0x91a3d000 - 0x91a53fff libcups.2.dylib /usr/lib/libcups.2.dylib
    0x91a58000 - 0x91a76fff libJPEG.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libJPEG.dylib
    0x91a7b000 - 0x91adafff libJP2.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libJP2.dylib
    0x91aec000 - 0x91af0fff libGIF.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libGIF.dylib
    0x91af2000 - 0x91b7afff libRaw.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libRaw.dylib
    0x91b7e000 - 0x91bbbfff libTIFF.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libTIFF.dylib
    0x91bc1000 - 0x91bdbfff libPng.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libPng.dylib
    0x91be0000 - 0x91be2fff libRadiance.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libRadiance.dylib
    0x91be4000 - 0x91cc2fff libxml2.2.dylib /usr/lib/libxml2.2.dylib
    0x91cdf000 - 0x91cdffff com.apple.Accelerate 1.3.1 (Accelerate 1.3.1) /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
    0x91ce1000 - 0x91d6ffff com.apple.vImage 2.5 /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.fr amework/Versions/A/vImage
    0x91d76000 - 0x91d76fff com.apple.Accelerate.vecLib 3.3.1 (vecLib 3.3.1) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/vecLib
    0x91d78000 - 0x91dd1fff libvMisc.dylib /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvMisc.dylib
    0x91dda000 - 0x91dfefff libvDSP.dylib /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvDSP.dylib
    0x91e06000 - 0x9220ffff libBLAS.dylib /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libBLAS.dylib
    0x92249000 - 0x925fdfff libLAPACK.dylib /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libLAPACK.dylib
    0x9262a000 - 0x92717fff libiconv.2.dylib /usr/lib/libiconv.2.dylib
    0x92719000 - 0x92797fff com.apple.DesktopServices 1.3.7 /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/Desk topServicesPriv
    0x927d8000 - 0x92a08fff com.apple.Foundation 6.4.10 (567.37) /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
    0x92b22000 - 0x92b39fff libGL.dylib /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
    0x92b44000 - 0x92b9cfff libGLU.dylib /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
    0x92bb0000 - 0x92bb0fff com.apple.Carbon 10.4 (???) /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
    0x92bb2000 - 0x92bc2fff com.apple.ImageCapture 3.0.4 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture. framework/Versions/A/ImageCapture
    0x92bd1000 - 0x92bd9fff com.apple.speech.recognition.framework 3.6 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecogni tion.framework/Versions/A/SpeechRecognition
    0x92bdf000 - 0x92be4fff com.apple.securityhi 2.0.1 (24742) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.fr amework/Versions/A/SecurityHI
    0x92bea000 - 0x92c7bfff com.apple.ink.framework 101.2.1 (71) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework /Versions/A/Ink
    0x92c8f000 - 0x92c92fff com.apple.help 1.0.3 (32.1) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framewor k/Versions/A/Help
    0x92c95000 - 0x92cb3fff com.apple.openscripting 1.2.5 (???) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting .framework/Versions/A/OpenScripting
    0x92cc5000 - 0x92ccbfff com.apple.print.framework.Print 5.2 (192.4) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framewo rk/Versions/A/Print
    0x92cd1000 - 0x92d34fff com.apple.htmlrendering 66.1 (1.1.3) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HTMLRendering .framework/Versions/A/HTMLRendering
    0x92d58000 - 0x92d99fff com.apple.NavigationServices 3.4.4 (3.4.3) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/NavigationSer vices.framework/Versions/A/NavigationServices
    0x92dc0000 - 0x92dcdfff com.apple.audio.SoundManager 3.9.1 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CarbonSound.f ramework/Versions/A/CarbonSound
    0x92dd4000 - 0x92dd9fff com.apple.CommonPanels 1.2.3 (73) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels. framework/Versions/A/CommonPanels
    0x92dde000 - 0x930d3fff com.apple.HIToolbox 1.4.10 (???) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox
    0x931d9000 - 0x931e4fff com.apple.opengl 1.4.16 /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
    0x931e9000 - 0x93204fff com.apple.DirectoryService.Framework 3.3 /System/Library/Frameworks/DirectoryService.framework/Versions/A/DirectoryServi ce
    0x93254000 - 0x93254fff com.apple.Cocoa 6.4 (???) /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
    0x93256000 - 0x9390cfff com.apple.AppKit 6.4.10 (824.45) /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
    0x93c8d000 - 0x93d08fff com.apple.CoreData 91 (92.1) /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
    0x93d41000 - 0x93dfafff com.apple.audio.toolbox.AudioToolbox 1.4.7 /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
    0x93e3d000 - 0x93e3dfff com.apple.audio.units.AudioUnit 1.4.2 /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
    0x93e3f000 - 0x94000fff com.apple.QuartzCore 1.4.12 /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
    0x94046000 - 0x94087fff libsqlite3.0.dylib /usr/lib/libsqlite3.0.dylib
    0x9408f000 - 0x940c9fff libGLImage.dylib /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dyl ib
    0x940ce000 - 0x940e4fff com.apple.CoreVideo 1.4.2 /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
    0x9417d000 - 0x941bbfff com.apple.vmutils 4.0.2 (93.1) /System/Library/PrivateFrameworks/vmutils.framework/Versions/A/vmutils
    0x941ff000 - 0x94210fff com.apple.securityfoundation 2.2.1 (28150) /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoun dation
    0x9421e000 - 0x9425cfff com.apple.securityinterface 2.2.1 (27695) /System/Library/Frameworks/SecurityInterface.framework/Versions/A/SecurityInter face
    0x94278000 - 0x94287fff libCGATS.A.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCGATS.A.dylib
    0x9428e000 - 0x94299fff libCSync.A.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCSync.A.dylib
    0x942e5000 - 0x942fffff libRIP.A.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libRIP.A.dylib
    0x94305000 - 0x9461cfff com.apple.QuickTime 7.4.5 (67) /System/Library/Frameworks/QuickTime.framework/Versions/A/QuickTime
    0x947a0000 - 0x948e6fff com.apple.AddressBook.framework 4.0.6 (490) /System/Library/Frameworks/AddressBook.framework/Versions/A/AddressBook
    0x94972000 - 0x94981fff com.apple.DSObjCWrappers.Framework 1.1 /System/Library/PrivateFrameworks/DSObjCWrappers.framework/Versions/A/DSObjCWra ppers
    0x94988000 - 0x949b1fff com.apple.LDAPFramework 1.4.2 (69.1.1) /System/Library/Frameworks/LDAP.framework/Versions/A/LDAP
    0x949b7000 - 0x949c6fff libsasl2.2.dylib /usr/lib/libsasl2.2.dylib
    0x949ca000 - 0x949effff libssl.0.9.7.dylib /usr/lib/libssl.0.9.7.dylib
    0x949fb000 - 0x94a18fff libresolv.9.dylib /usr/lib/libresolv.9.dylib
    0x94d4d000 - 0x94dfffff com.apple.WebKit 4525.18 /System/Library/Frameworks/WebKit.framework/Versions/A/WebKit
    0x94e6a000 - 0x94f31fff com.apple.JavaScriptCore 4525.17 /System/Library/Frameworks/JavaScriptCore.framework/Versions/A/JavaScriptCore
    0x94f6d000 - 0x9555ffff com.apple.WebCore 4525.18.1 /System/Library/Frameworks/WebKit.framework/Versions/A/Frameworks/WebCore.frame work/Versions/A/WebCore
    0x95f9f000 - 0x95fb5fff libJapaneseConverter.dylib /System/Library/CoreServices/Encodings/libJapaneseConverter.dylib
    0x95fb7000 - 0x95fd8fff libKoreanConverter.dylib /System/Library/CoreServices/Encodings/libKoreanConverter.dylib
    0x95fe5000 - 0x95ff3fff libSimplifiedChineseConverter.dylib /System/Library/CoreServices/Encodings/libSimplifiedChineseConverter.dylib
    0x95ffb000 - 0x9600dfff libTraditionalChineseConverter.dylib /System/Library/CoreServices/Encodings/libTraditionalChineseConverter.dylib
    0x969b4000 - 0x969b4fff com.apple.vecLib 3.3.1 (vecLib 3.3.1) /System/Library/Frameworks/vecLib.framework/Versions/A/vecLib
    0x96f2a000 - 0x97001fff libGLProgrammability.dylib /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLProgramma bility.dylib
    0x9701c000 - 0x9701dfff libGLSystem.dylib /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLSystem.dy lib
    0x9701f000 - 0x97024fff com.apple.agl 2.5.9 (AGL-2.5.9) /System/Library/Frameworks/AGL.framework/Versions/A/AGL
    0x973ab000 - 0x973bffff com.apple.audio.CoreAudioKit 1.0.1 /System/Library/Frameworks/CoreAudioKit.framework/Versions/A/CoreAudioKit
    0x97865000 - 0x97870fff com.apple.CommonCandidateWindow 1.0.1 /System/Library/PrivateFrameworks/CommonCandidateWindow.framework/Versions/A/Co mmonCandidateWindow
    0x98328000 - 0x992b9fff com.apple.QuickTimeComponents.component 7.4.5 (67) /System/Library/QuickTime/QuickTimeComponents.component/Contents/MacOS/QuickTim eComponents
    0x9987c000 - 0x998acfff com.apple.QuickTime Plugin.plugin 7.4.5 (67) /Library/Internet Plug-Ins/QuickTime Plugin.plugin/Contents/MacOS/QuickTime Plugin
    0x99b1f000 - 0x99b56fff com.apple.Syndication 1.0.7 (55) /System/Library/PrivateFrameworks/Syndication.framework/Versions/A/Syndication
    0x99b72000 - 0x99b84fff com.apple.SyndicationUI 1.0.7 (55) /System/Library/PrivateFrameworks/SyndicationUI.framework/Versions/A/Syndicatio nUI
    0x9ff38000 - 0x9ffbffff com.apple.QTKit 7.4.5 (67) /System/Library/Frameworks/QTKit.framework/Versions/A/QTKit
    Date/Time: 2008-05-11 20:21:08.386 -0500
    OS Version: 10.4.11 (Build 8S2167)
    Report Version: 4
    Command: Mail
    Path: /Applications/Mail.app/Contents/MacOS/Mail
    Parent: WindowServer [1404]
    Version: 2.1.3 (753.1)
    Build Version: 2
    Project Name: MailViewer
    Source Version: 7530100
    PID: 1579
    Thread: 0
    Exception: EXCBADACCESS (0x0001)
    Codes: KERNPROTECTIONFAILURE (0x0002) at 0x00000000
    Thread 0 Crashed:
    0 libobjc.A.dylib 0x90a59387 objc_msgSend + 23
    1 com.apple.AppKit 0x932ec031 -[NSView _drawRect:clip:] + 3228
    2 com.apple.AppKit 0x932eb08b -[NSView _recursiveDisplayAllDirtyWithLockFocus:visRect:] + 614
    3 com.apple.AppKit 0x932ea0f3 -[NSView _recursiveDisplayRectIfNeededIgnoringOpacity:isVisibleRect:rectIsVisibleRectFor View:topView:] + 217
    4 com.apple.AppKit 0x932eacc1 -[NSView _recursiveDisplayRectIfNeededIgnoringOpacity:isVisibleRect:rectIsVisibleRectFor View:topView:] + 3239
    5 com.apple.AppKit 0x932eacc1 -[NSView _recursiveDisplayRectIfNeededIgnoringOpacity:isVisibleRect:rectIsVisibleRectFor View:topView:] + 3239
    6 com.apple.AppKit 0x932eacc1 -[NSView _recursiveDisplayRectIfNeededIgnoringOpacity:isVisibleRect:rectIsVisibleRectFor View:topView:] + 3239
    7 com.apple.AppKit 0x932e97f8 -[NSThemeFrame _recursiveDisplayRectIfNeededIgnoringOpacity:isVisibleRect:rectIsVisibleRectFor View:topView:] + 290
    8 com.apple.AppKit 0x932e8fe2 -[NSView _displayRectIgnoringOpacity:isVisibleRect:rectIsVisibleRectForView:] + 523
    9 com.apple.AppKit 0x932e890e -[NSView displayIfNeeded] + 439
    10 com.apple.AppKit 0x932e86b2 -[NSWindow displayIfNeeded] + 168
    11 com.apple.AppKit 0x93338934 _handleWindowNeedsDisplay + 206
    12 com.apple.CoreFoundation 0x9082dcd6 __CFRunLoopDoObservers + 342
    13 com.apple.CoreFoundation 0x9082cd78 CFRunLoopRunSpecific + 827
    14 com.apple.CoreFoundation 0x9082ca36 CFRunLoopRunInMode + 61
    15 com.apple.HIToolbox 0x92de7878 RunCurrentEventLoopInMode + 285
    16 com.apple.HIToolbox 0x92de6f82 ReceiveNextEventCommon + 385
    17 com.apple.HIToolbox 0x92de6dd9 BlockUntilNextEventMatchingListInMode + 81
    18 com.apple.AppKit 0x9326d0e5 _DPSNextEvent + 572
    19 com.apple.AppKit 0x9326ccd7 -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 137
    20 com.apple.AppKit 0x93266a64 -[NSApplication run] + 512
    21 com.apple.AppKit 0x9325a9c0 NSApplicationMain + 573
    22 com.apple.mail 0x00094d22 0x1000 + 605474
    23 com.apple.mail 0x00094c49 0x1000 + 605257
    Thread 1:
    0 libSystem.B.dylib 0x90047dd7 semaphoretimedwait_signaltrap + 7
    1 com.apple.Foundation 0x92893d18 FCONDITION_WAITTIMEOUT + 128
    2 com.apple.Foundation 0x92893c62 -[NSConditionLock lockWhenCondition:beforeDate:] + 101
    3 com.apple.MessageFramework 0x99656821 -[InvocationQueue _drainQueue] + 210
    4 com.apple.Foundation 0x927f539c forkThreadForFunction + 123
    5 libSystem.B.dylib 0x90024227 pthreadbody + 84
    Thread 2:
    0 libSystem.B.dylib 0x90047dd7 semaphoretimedwait_signaltrap + 7
    1 com.apple.Foundation 0x92893d18 FCONDITION_WAITTIMEOUT + 128
    2 com.apple.Foundation 0x92893c62 -[NSConditionLock lockWhenCondition:beforeDate:] + 101
    3 com.apple.MessageFramework 0x99656821 -[InvocationQueue _drainQueue] + 210
    4 com.apple.Foundation 0x927f539c forkThreadForFunction + 123
    5 libSystem.B.dylib 0x90024227 pthreadbody + 84
    Thread 3:
    0 libSystem.B.dylib 0x90009cd7 machmsgtrap + 7
    1 com.apple.CoreFoundation 0x9082d21b CFRunLoopRunSpecific + 2014
    2 com.apple.CoreFoundation 0x9082ca36 CFRunLoopRunInMode + 61
    3 com.apple.Foundation 0x9282ad6a -[NSRunLoop runMode:beforeDate:] + 182
    4 com.apple.Foundation 0x9282ac66 -[NSRunLoop run] + 75
    5 com.apple.MessageFramework 0x9965b5af +[_NSSocket _runIOThread] + 97
    6 com.apple.Foundation 0x927f539c forkThreadForFunction + 123
    7 libSystem.B.dylib 0x90024227 pthreadbody + 84
    Thread 4:
    0 libSystem.B.dylib 0x90009cd7 machmsgtrap + 7
    1 com.apple.CoreFoundation 0x9082d21b CFRunLoopRunSpecific + 2014
    2 com.apple.CoreFoundation 0x9082ca36 CFRunLoopRunInMode + 61
    3 com.apple.Foundation 0x92851c76 +[NSURLCache _diskCacheSyncLoop:] + 206
    4 com.apple.Foundation 0x927f539c forkThreadForFunction + 123
    5 libSystem.B.dylib 0x90024227 pthreadbody + 84
    Thread 5:
    0 libSystem.B.dylib 0x9001a1cc select + 12
    1 libSystem.B.dylib 0x90024227 pthreadbody + 84
    Thread 6:
    0 libSystem.B.dylib 0x90047dd7 semaphoretimedwait_signaltrap + 7
    1 com.apple.Foundation 0x92893d18 FCONDITION_WAITTIMEOUT + 128
    2 com.apple.Foundation 0x92893c62 -[NSConditionLock lockWhenCondition:beforeDate:] + 101
    3 com.apple.ISSupport 0x98089c6c +[ISS_AYOperation _lockWaitingForOperation] + 138
    4 com.apple.ISSupport 0x9808a22c +[ISS_AYOperation _workerThread] + 190
    5 com.apple.Foundation 0x927f539c forkThreadForFunction + 123
    6 libSystem.B.dylib 0x90024227 pthreadbody + 84
    Thread 7:
    0 libSystem.B.dylib 0x90009cd7 machmsgtrap + 7
    1 com.apple.CoreFoundation 0x9082d21b CFRunLoopRunSpecific + 2014
    2 com.apple.CoreFoundation 0x9082ca36 CFRunLoopRunInMode + 61
    3 com.apple.MessageFramework 0x9965d4ff _handleRequestWithTimeout + 3189
    4 com.apple.MessageFramework 0x9966031e -[_NSSocket readBytes:length:] + 145
    5 com.apple.MessageFramework 0x9965ff23 _readBytesFromSocket + 69
    6 com.apple.MessageFramework 0x9965fda7 _fillBuffer + 469
    7 com.apple.MessageFramework 0x9965faf3 -[Connection readLineIntoData:] + 51
    8 com.apple.MessageFramework 0x996bff9c -[SMTPConnection(PrivateCommands) _readResponseRange:isContinuation:] + 115
    9 com.apple.MessageFramework 0x996bfdd6 -[SMTPConnection(PrivateCommands) _getReply] + 55
    10 com.apple.MessageFramework 0x996bf499 -[SMTPConnection(PrivateCommands) _connectUsingAccount:] + 295
    11 com.apple.MessageFramework 0x996bf016 -[SMTPConnection connectUsingAccount:] + 42
    12 com.apple.MessageFramework 0x996bed4f -[Account _connectAndAuthenticate:] + 160
    13 com.apple.MessageFramework 0x996be90c -[SMTPAccount authenticatedConnection] + 276
    14 com.apple.MessageFramework 0x996bd500 -[SMTPDelivery deliverMessageData:toRecipients:] + 404
    15 com.apple.MessageFramework 0x996bbc6c -[MailDelivery deliverSynchronously] + 578
    16 com.apple.mail 0x00079bf9 0x1000 + 494585
    17 com.apple.mail 0x00078fc4 0x1000 + 491460
    18 libobjc.A.dylib 0x90a5cc56 objc_msgSendv + 54
    19 com.apple.Foundation 0x927fc422 -[NSInvocation invoke] + 932
    20 com.apple.MessageFramework 0x9964c910 -[MonitoredInvocation invoke] + 128
    21 com.apple.MessageFramework 0x99656954 -[InvocationQueue _drainQueue] + 517
    22 com.apple.Foundation 0x927f539c forkThreadForFunction + 123
    23 libSystem.B.dylib 0x90024227 pthreadbody + 84
    Thread 8:
    0 libSystem.B.dylib 0x90047dd7 semaphoretimedwait_signaltrap + 7
    1 ...apple.AddressBook.framework 0x947ebafa -[ABRemoteImageLoader workLoop] + 158
    2 com.apple.Foundation 0x927f539c forkThreadForFunction + 123
    3 libSystem.B.dylib 0x90024227 pthreadbody + 84
    Thread 9:
    0 libSystem.B.dylib 0x90009cd7 machmsgtrap + 7
    1 com.apple.CoreFoundation 0x9082d21b CFRunLoopRunSpecific + 2014
    2 com.apple.CoreFoundation 0x9082ca36 CFRunLoopRunInMode + 61
    3 com.apple.Foundation 0x9282aa40 +[NSURLConnection(NSURLConnectionInternal) _resourceLoadLoop:] + 259
    4 com.apple.Foundation 0x927f539c forkThreadForFunction + 123
    5 libSystem.B.dylib 0x90024227 pthreadbody + 84
    Thread 0 crashed with X86 Thread State (32-bit):
    eax: 0x00000000 ebx: 0x933056c5 ecx: 0x90ab51a4 edx: 0x90ab51a4
    edi: 0x00000008 esi: 0x004a65f0 ebp: 0xbfffe1d8 esp: 0xbfffe074
    ss: 0x0000001f efl: 0x00010202 eip: 0x90a59387 cs: 0x00000017
    ds: 0x0000001f es: 0x0000001f fs: 0x00000000 gs: 0x00000037
    Binary Images Description:
    0x1000 - 0x1b2fff com.apple.mail 2.1.3 (753.1) /Applications/Mail.app/Contents/MacOS/Mail
    0x8fe00000 - 0x8fe4afff dyld 46.16 /usr/lib/dyld
    0x90000000 - 0x90171fff libSystem.B.dylib /usr/lib/libSystem.B.dylib
    0x901c1000 - 0x901c3fff libmathCommon.A.dylib /usr/lib/system/libmathCommon.A.dylib
    0x901c5000 - 0x90202fff com.apple.CoreText 1.1.3 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreText.framework/Versions/A/CoreText
    0x90229000 - 0x902fffff ATS /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/ATS
    0x9031f000 - 0x90774fff com.apple.CoreGraphics 1.258.77 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/CoreGraphics
    0x9080b000 - 0x908d3fff com.apple.CoreFoundation 6.4.10 (368.33) /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
    0x90911000 - 0x90911fff com.apple.CoreServices 10.4 (???) /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
    0x90913000 - 0x90a07fff libicucore.A.dylib /usr/lib/libicucore.A.dylib
    0x90a57000 - 0x90ad6fff libobjc.A.dylib /usr/lib/libobjc.A.dylib
    0x90aff000 - 0x90b63fff libstdc++.6.dylib /usr/lib/libstdc++.6.dylib
    0x90bd2000 - 0x90bd9fff libgcc_s.1.dylib /usr/lib/libgcc_s.1.dylib
    0x90bde000 - 0x90c51fff com.apple.framework.IOKit 1.4.8 (???) /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
    0x90c66000 - 0x90c78fff libauto.dylib /usr/lib/libauto.dylib
    0x90c7e000 - 0x90f24fff com.apple.CoreServices.CarbonCore 682.28 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore
    0x90f67000 - 0x90fcffff com.apple.CoreServices.OSServices 4.1 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServi ces.framework/Versions/A/OSServices
    0x91008000 - 0x91047fff com.apple.CFNetwork 129.22 (129.23) /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CFNetwo rk.framework/Versions/A/CFNetwork
    0x9105a000 - 0x9106afff com.apple.WebServices 1.1.3 (1.1.0) /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/WebServ icesCore.framework/Versions/A/WebServicesCore
    0x91075000 - 0x910f4fff com.apple.SearchKit 1.0.7 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchK it.framework/Versions/A/SearchKit
    0x9112e000 - 0x9114cfff com.apple.Metadata 10.4.4 (121.36) /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadat a.framework/Versions/A/Metadata
    0x91158000 - 0x91166fff libz.1.dylib /usr/lib/libz.1.dylib
    0x91169000 - 0x91308fff com.apple.security 4.5.2 (29774) /System/Library/Frameworks/Security.framework/Versions/A/Security
    0x91406000 - 0x9140efff com.apple.DiskArbitration 2.1.2 /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
    0x91415000 - 0x9141cfff libbsm.dylib /usr/lib/libbsm.dylib
    0x91420000 - 0x91446fff com.apple.SystemConfiguration 1.8.6 /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfi guration
    0x91458000 - 0x914cefff com.apple.audio.CoreAudio 3.0.5 /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
    0x9151f000 - 0x9151ffff com.apple.ApplicationServices 10.4 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services
    0x91521000 - 0x9154cfff com.apple.AE 314 (313) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ AE.framework/Versions/A/AE
    0x9155f000 - 0x91633fff com.apple.ColorSync 4.4.10 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ColorSync.framework/Versions/A/ColorSync
    0x9166e000 - 0x916e1fff com.apple.print.framework.PrintCore 4.6 (177.13) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ PrintCore.framework/Versions/A/PrintCore
    0x9170f000 - 0x917b8fff com.apple.QD 3.10.25 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ QD.framework/Versions/A/QD
    0x917de000 - 0x91829fff com.apple.HIServices 1.5.2 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ HIServices.framework/Versions/A/HIServices
    0x91848000 - 0x9185efff com.apple.LangAnalysis 1.6.3 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LangAnalysis.framework/Versions/A/LangAnalysis
    0x9186a000 - 0x91884fff com.apple.FindByContent 1.5 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ FindByContent.framework/Versions/A/FindByContent
    0x9188e000 - 0x918cbfff com.apple.LaunchServices 182 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LaunchServices.framework/Versions/A/LaunchServices
    0x918df000 - 0x918ebfff com.apple.speech.synthesis.framework 3.5 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ SpeechSynthesis.framework/Versions/A/SpeechSynthesis
    0x918f2000 - 0x91932fff com.apple.ImageIO.framework 1.5.6 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/ImageIO
    0x91945000 - 0x919f7fff libcrypto.0.9.7.dylib /usr/lib/libcrypto.0.9.7.dylib
    0x91a3d000 - 0x91a53fff libcups.2.dylib /usr/lib/libcups.2.dylib
    0x91a58000 - 0x91a76fff libJPEG.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libJPEG.dylib
    0x91a7b000 - 0x91adafff libJP2.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libJP2.dylib
    0x91aec000 - 0x91af0fff libGIF.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libGIF.dylib
    0x91af2000 - 0x91b7afff libRaw.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libRaw.dylib
    0x91b7e000 - 0x91bbbfff libTIFF.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libTIFF.dylib
    0x91bc1000 - 0x91bdbfff libPng.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libPng.dylib
    0x91be0000 - 0x91be2fff libRadiance.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libRadiance.dylib
    0x91be4000 - 0x91cc2fff libxml2.2.dylib /usr/lib/libxml2.2.dylib
    0x91cdf000 - 0x91cdffff com.apple.Accelerate 1.3.1 (Accelerate 1.3.1) /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
    0x91ce1000 - 0x91d6ffff com.apple.vImage 2.5 /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.fr amework/Versions/A/vImage
    0x91d76000 - 0x91d76fff com.apple.Accelerate.vecLib 3.3.1 (vecLib 3.3.1) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/vecLib
    0x91d78000 - 0x91dd1fff libvMisc.dylib /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvMisc.dylib
    0x91dda000 - 0x91dfefff libvDSP.dylib /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvDSP.dylib
    0x91e06000 - 0x9220ffff libBLAS.dylib /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libBLAS.dylib
    0x92249000 - 0x925fdfff libLAPACK.dylib /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libLAPACK.dylib
    0x9262a000 - 0x92717fff libiconv.2.dylib /usr/lib/libiconv.2.dylib
    0x92719000 - 0x92797fff com.apple.DesktopServices 1.3.7 /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/Desk topServicesPriv
    0x927d8000 - 0x92a08fff com.apple.Foundation 6.4.10 (567.37) /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
    0x92b22000 - 0x92b39fff libGL.dylib /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
    0x92b44000 - 0x92b9cfff libGLU.dylib /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
    0x92bb0000 - 0x92bb0fff com.apple.Carbon 10.4 (???) /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
    0x92bb2000 - 0x92bc2fff com.apple.ImageCapture 3.0.4 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture. framework/Versions/A/ImageCapture
    0x92bd1000 - 0x92bd9fff com.apple.speech.recognition.framework 3.6 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecogni tion.framework/Versions/A/SpeechRecognition
    0x92bdf000 - 0x92be4fff com.apple.securityhi 2.0.1 (24742) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.fr amework/Versions/A/SecurityHI
    0x92bea000 - 0x92c7bfff com.apple.ink.framework 101.2.1 (71) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework /Versions/A/Ink
    0x92c8f000 - 0x92c92fff com.apple.help 1.0.3 (32.1) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framewor k/Versions/A/Help
    0x92c95000 - 0x92cb3fff com.apple.openscripting 1.2.5 (???) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting .framework/Versions/A/OpenScripting
    0x92cc5000 - 0x92ccbfff com.apple.print.framework.Print 5.2 (192.4) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framewo rk/Versions/A/Print
    0x92cd1000 - 0x92d34fff com.apple.htmlrendering 66.1 (1.1.3) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HTMLRendering .framework/Versions/A/HTMLRendering
    0x92d58000 - 0x92d99fff com.apple.NavigationServices 3.4.4 (3.4.3) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/NavigationSer vices.framework/Versions/A/NavigationServices
    0x92dc0000 - 0x92dcdfff com.apple.audio.SoundManager 3.9.1 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CarbonSound.f ramework/Versions/A/CarbonSound
    0x92dd4000 - 0x92dd9fff com.apple.CommonPanels 1.2.3 (73) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels. framework/Versions/A/CommonPanels
    0x92dde000 - 0x930d3fff com.apple.HIToolbox 1.4.10 (???) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox
    0x931d9000 - 0x931e4fff com.apple.opengl 1.4.16 /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
    0x931e9000 - 0x93204fff com.apple.DirectoryService.Framework 3.3 /System/Library/Frameworks/DirectoryService.framework/Versions/A/DirectoryServi ce
    0x93254000 - 0x93254fff com.apple.Cocoa 6.4 (???) /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
    0x93256000 - 0x9390cfff com.apple.AppKit 6.4.10 (824.45) /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
    0x93c8d000 - 0x93d08fff com.apple.CoreData 91 (92.1) /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
    0x93d41000 - 0x93dfafff com.apple.audio.toolbox.AudioToolbox 1.4.7 /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
    0x93e3d000 - 0x93e3dfff com.apple.audio.units.AudioUnit 1.4.2 /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
    0x93e3f000 - 0x94000fff com.apple.QuartzCore 1.4.12 /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
    0x94046000 - 0x94087fff libsqlite3.0.dylib /usr/lib/libsqlite3.0.dylib
    0x9408f000 - 0x940c9fff libGLImage.dylib /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dyl ib
    0x940ce000 - 0x940e4fff com.apple.CoreVideo 1.4.2 /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
    0x9412b000 - 0x94173fff com.apple.bom 8.5 (86.3) /System/Library/PrivateFrameworks/Bom.framework/Versions/A/Bom
    0x941ff000 - 0x94210fff com.apple.securityfoundation 2.2.1 (28150) /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoun dation
    0x9421e000 - 0x9425cfff com.apple.securityinterface 2.2.1 (27695) /System/Library/Frameworks/SecurityInterface.framework/Versions/A/SecurityInter face
    0x94278000 - 0x94287fff libCGATS.A.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCGATS.A.dylib
    0x9428e000 - 0x94299fff libCSync.A.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCSync.A.dylib
    0x942e5000 - 0x942fffff libRIP.A.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libRIP.A.dylib
    0x947a0000 - 0x948e6fff com.apple.AddressBook.framework 4.0.6 (490) /System/Library/Frameworks/AddressBook.framework/Versions/A/AddressBook
    0x94972000 - 0x94981fff com.apple.DSObjCWrappers.Framework 1.1 /System/Library/PrivateFrameworks/DSObjCWrappers.framework/Versions/A/DSObjCWra ppers
    0x94988000 - 0x949b1fff com.apple.LDAPFramework 1.4.2 (69.1.1) /System/Library/Frameworks/LDAP.framework/Versions/A/LDAP
    0x949b7000 - 0x949c6fff libsasl2.2.dylib /usr/lib/libsasl2.2.dylib
    0x949ca000 - 0x949effff libssl.0.9.7.dylib /usr/lib/libssl.0.9.7.dylib
    0x949fb000 - 0x94a18fff libresolv.9.dylib /usr/lib/libresolv.9.dylib
    0x94d4d000 - 0x94dfffff com.apple.WebKit 4525.18 /System/Library/Frameworks/WebKit.framework/Versions/A/WebKit
    0x94e6a000 - 0x94f31fff com.apple.JavaScriptCore 4525.17 /System/Library/Frameworks/JavaScriptCore.framework/Versions/A/JavaScriptCore
    0x94f6d000 - 0x9555ffff com.apple.WebCore 4525.18.1 /System/Library/Frameworks/WebKit.framework/Versions/A/Frameworks/WebCore.frame work/Versions/A/WebCore
    0x95860000 - 0x958e8fff com.apple.syncservices 2.5 (194) /System/Library/Frameworks/SyncServices.framework/Versions/A/SyncServices
    0x95a4c000 - 0x95a84fff com.apple.PDFKit 1.0.4 /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/PDFKit.framew ork/Versions/A/PDFKit
    0x969b4000 - 0x969b4fff com.apple.vecLib 3.3.1 (vecLib 3.3.1) /System/Library/Frameworks/vecLib.framework/Versions/A/vecLib
    0x96e97000 - 0x96eb9fff com.apple.speech.LatentSemanticMappingFramework 2.5 /System/Library/PrivateFrameworks/LatentSemanticMapping.framework/Versions/A/La tentSemanticMapping
    0x97851000 - 0x9785efff com.apple.DMNotification 1.0.4 (37) /System/Library/PrivateFrameworks/DMNotification.framework/Versions/A/DMNotific ation
    0x979f0000 - 0x97ac7fff com.apple.QuartzComposer 1.2.6 (32.25) /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzCompose r.framework/Versions/A/QuartzComposer
    0x97b50000 - 0x97b50fff com.apple.quartzframework 1.0 /System/Library/Frameworks/Quartz.framework/Versions/A/Quartz
    0x97cb9000 - 0x97cd3fff com.apple.slideshow 1.0.4 (1.0) /System/Library/PrivateFrameworks/Slideshow.framework/Versions/A/Slideshow
    0x98052000 - 0x98096fff com.apple.ISSupport 1.1.2 (16) /System/Library/PrivateFrameworks/ISSupport.framework/Versions/A/ISSupport
    0x980bb000 - 0x980e4fff com.apple.DotMacSyncManager 1.0.5 (157) /System/Library/PrivateFrameworks/DotMacSyncManager.framework/Versions/A/DotMac SyncManager
    0x981f2000 - 0x98237fff com.apple.PAPICommon 2.5 (131) /System/Library/PrivateFrameworks/DotMacLegacy.framework/Versions/A/DotMacLegac y
    0x99625000 - 0x99630fff com.apple.IMFramework 3.1.4 (429) /System/Library/Frameworks/InstantMessage.framework/Versions/A/InstantMessage
    0x9963a000 - 0x997a6fff com.apple.MessageFramework 2.1.2 (753) /System/Library/Frameworks/Message.framework/Versions/B/Message
    Thanks Mulder!

  • Safari, Mail, Update all quit unexpectedly

    This is my first Mac; I bought it in November and I upgraded to Leopard right away. However, I'm having so much trouble that I have had to install Tiger on a separate partition and dual-boot. The problem is that I can no longer launch several applications in Leopard.
    The applications worst affected are Safari, Mail, Xcode and Software Update.
    Whenever I click to launch one of these applications I get a dialog with 'The application quit unexpectedly' in bold. I can either Ignore, Report or Relaunch. It happens on multiple user accounts and it happens every time.
    Because I see it suggested so often, I immediately tried a repair disk permissions, but that didn't help. Then I rebooted with the Tiger CD loaded and holding down D, to run diagnostics, but everything passed.
    The problem surfaced for the first time (according to the console) in the last few days of December. I wonder if one of the 30 day trial applications that I have installed is blocking something from working - particularly with regard to Quick Look (or whatever it is called). I have had demos of iWork 08, Scrivener, Aperture, TextMate installed. They all expired normally (I've just spent a ton of cash on an iMac - I can't afford software as well!).
    Any one else getting this on Leopard? Anybody have any ideas that I can try? I'm really keen to get Leopard working because I want the iPhone/iPod Touch dev kit when it is hopefully released in a week or two's time. Do you think I should just wait for 10.5.2 and see if that helps?
    I'll post the full error details in a reply to this message.
    Any help greatly appreciated!
    P.S. The upside of installing Tiger is that the wireless network always works!
    P.P.S. Firefox and Thunderbird both work!
    Message was edited by: adrian.oconnor - added PPS

    Here's the problem report with stack trace/loaded libs etc:
    Process: Safari [422]
    Path: /Applications/Safari.app/Contents/MacOS/Safari
    Identifier: com.apple.Safari
    Version: 3.0.4 (5523.10.6)
    Build Info: WebBrowser-55231006~1
    Code Type: X86 (Native)
    Parent Process: launchd [136]
    Date/Time: 2008-01-12 11:30:11.038 +0000
    OS Version: Mac OS X 10.5.1 (9B18)
    Report Version: 6
    Exception Type: EXCBADACCESS (SIGSEGV)
    Exception Codes: KERNPROTECTIONFAILURE at 0x00000000bfffc4f4
    Crashed Thread: 0
    Thread 0 Crashed:
    Thread 1:
    0 libsqlite3.0.dylib 0x921bff56 sqlite3resultvalue + 40758
    1 libsqlite3.0.dylib 0x921c0366 sqlite3resultvalue + 41798
    2 libsqlite3.0.dylib 0x921c1f56 sqlite3resultvalue + 48950
    3 libsqlite3.0.dylib 0x92216833 sqlite3gettable + 28307
    4 libsqlite3.0.dylib 0x9221beb2 sqlite3gettable + 50450
    5 libsqlite3.0.dylib 0x9221c56d sqlite3_step + 29
    6 com.apple.WebCore 0x940e7c30 WebCore::IconDatabase::checkIntegrity() + 160
    7 com.apple.WebCore 0x93ed7def WebCore::IconDatabase::performOpenInitialization() + 303
    8 com.apple.WebCore 0x93ed565b WebCore::IconDatabase::iconDatabaseSyncThread() + 235
    9 libSystem.B.dylib 0x95f69075 pthreadstart + 321
    10 libSystem.B.dylib 0x95f68f32 thread_start + 34
    Thread 0 crashed with X86 Thread State (32-bit):
    eax: 0x0000250b ebx: 0x92346934 ecx: 0xbfffc545 edx: 0x0000250b
    edi: 0xbfffc548 esi: 0xbfffc54c ebp: 0x00000000 esp: 0xbfffc038
    ss: 0x0000001f efl: 0x00010286 eip: 0xbfffc4f4 cs: 0x00000017
    ds: 0x0000001f es: 0x0000001f fs: 0x00000000 gs: 0x00000037
    cr2: 0xbfffc4f4
    Binary Images:
    0x1000 - 0x12efef com.apple.Safari 3.0.4 (5523.10.6) <53d219fd878088543fd2e1af460bed18> /Applications/Safari.app/Contents/MacOS/Safari
    0x176000 - 0x184ff8 SyndicationUI ??? (???) <8adc35e1eb5001dead3c18ee25f2e8db> /System/Library/PrivateFrameworks/SyndicationUI.framework/Versions/A/Syndicatio nUI
    0x300000 - 0x3e6ff7 com.apple.RawCamera.bundle 2.0 (2.0) /System/Library/CoreServices/RawCamera.bundle/Contents/MacOS/RawCamera
    0x8fe00000 - 0x8fe2d883 dyld 95.3 (???) <81592e798780564b5d46b988f7ee1a6a> /usr/lib/dyld
    0x90003000 - 0x90019fe7 com.apple.CoreVideo 1.5.0 (1.5.0) <c7569b68e54114da815e9c55299fe3a4> /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
    0x90020000 - 0x9019efff com.apple.AddressBook.framework 4.1 (687) <3f005092d08e963eabe8f7f66c09cc1e> /System/Library/Frameworks/AddressBook.framework/Versions/A/AddressBook
    0x9019f000 - 0x9021eff5 com.apple.SearchKit 1.2.0 (1.2.0) <277b460da86bc222785159fe77e2e2ed> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchK it.framework/Versions/A/SearchKit
    0x9021f000 - 0x90279ff7 com.apple.CoreText 2.0.0 (???) <7fa39cd5bc847615ec02e7c7a37c0508> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreText.framework/Versions/A/CoreText
    0x9027a000 - 0x903b2ff7 libicucore.A.dylib ??? (???) <afcea652ff2ec36885b2c81c57d06d4c> /usr/lib/libicucore.A.dylib
    0x903b3000 - 0x903baffe libbsm.dylib ??? (???) <d25c63378a5029648ffd4b4669be31bf> /usr/lib/libbsm.dylib
    0x903e2000 - 0x90475fff com.apple.ink.framework 101.3 (86) <bf3fa8927b4b8baae92381a976fd2079> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework /Versions/A/Ink
    0x90476000 - 0x9074ffe7 com.apple.CoreServices.CarbonCore 783 (783) <8370e664eeb25edc98d5c1f5405b06ae> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore
    0x90750000 - 0x90795fef com.apple.Metadata 10.5.0 (398) <4fd74fba0062c2e08ec4b1c10b40ff63> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadat a.framework/Versions/A/Metadata
    0x90796000 - 0x90b54fea libLAPACK.dylib ??? (???) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libLAPACK.dylib
    0x90b55000 - 0x90b8bfef libtidy.A.dylib ??? (???) <e4d3e7399fb83d7f145f9b4ec8196242> /usr/lib/libtidy.A.dylib
    0x90b8c000 - 0x90c42fe3 com.apple.CoreServices.OSServices 210.2 (210.2) <4ed69f07fc0f211ab32d1ee96e281fc2> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServi ces.framework/Versions/A/OSServices
    0x90c43000 - 0x90ca0ffb libstdc++.6.dylib ??? (???) <04b812dcec670daa8b7d2852ab14be60> /usr/lib/libstdc++.6.dylib
    0x90ca1000 - 0x90ca3ff5 libRadiance.dylib ??? (???) <20eadb285da83df96c795c2c5fa20590> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libRadiance.dylib
    0x90ca4000 - 0x910b4fef libBLAS.dylib ??? (???) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libBLAS.dylib
    0x910b5000 - 0x910bafff com.apple.CommonPanels 1.2.4 (85) <ea0665f57cd267609466ed8b2b20e893> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels. framework/Versions/A/CommonPanels
    0x912b0000 - 0x912b0ffb com.apple.installserver.framework 1.0 (8) /System/Library/PrivateFrameworks/InstallServer.framework/Versions/A/InstallSer ver
    0x91556000 - 0x91565fff libsasl2.2.dylib ??? (???) <b9e1ca0b6612e280b6cbea6df0eec5f6> /usr/lib/libsasl2.2.dylib
    0x91578000 - 0x9157ffe9 libgcc_s.1.dylib ??? (???) <f53c808e87d1184c0f9df63aef53ce0b> /usr/lib/libgcc_s.1.dylib
    0x91660000 - 0x9166bff9 com.apple.helpdata 1.0 (14) /System/Library/PrivateFrameworks/HelpData.framework/Versions/A/HelpData
    0x9166c000 - 0x916e6ff8 com.apple.print.framework.PrintCore 5.5 (245) <9441d178f4b430cf92b67bf346646693> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ PrintCore.framework/Versions/A/PrintCore
    0x916e7000 - 0x91771fff com.apple.framework.IOKit 1.5.1 (???) <5176a7383151a19c962334009fef2c6d> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
    0x91772000 - 0x91775fff com.apple.help 1.1 (36) <b507b08e484cb89033e9cf23062d77de> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framewor k/Versions/A/Help
    0x917a6000 - 0x917aafff libGIF.dylib ??? (???) <d4234e6f5e5f530bdafb969157f1f17b> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libGIF.dylib
    0x917ab000 - 0x917c9ff3 com.apple.DirectoryService.Framework 3.5 (3.5) <899d8c9ee31b004a6ff73dab88982b1a> /System/Library/Frameworks/DirectoryService.framework/Versions/A/DirectoryServi ce
    0x917ca000 - 0x917caff8 com.apple.ApplicationServices 34 (34) <8f910fa65f01d401ad8d04cc933cf887> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services
    0x917e3000 - 0x917fbfff com.apple.openscripting 1.2.6 (???) <b8e553df643f2aec68fa968b3b459b2b> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting .framework/Versions/A/OpenScripting
    0x9190b000 - 0x91970ffb com.apple.ISSupport 1.6 (34) /System/Library/PrivateFrameworks/ISSupport.framework/Versions/A/ISSupport
    0x91971000 - 0x91995fff libxslt.1.dylib ??? (???) <4933ddc7f6618743197aadc85b33b5ab> /usr/lib/libxslt.1.dylib
    0x91996000 - 0x91a22ff7 com.apple.LaunchServices 286 (286) <72b15e7a01e42d510f0339e90113d5d6> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchS ervices.framework/Versions/A/LaunchServices
    0x91a23000 - 0x91a60ff7 libGLImage.dylib ??? (???) <202d73e6a4688fc06ff11b71910c2ce7> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dyl ib
    0x91a61000 - 0x91a6fffd libz.1.dylib ??? (???) <5ddd8539ae2ebfd8e7cc1c57525385c7> /usr/lib/libz.1.dylib
    0x91a70000 - 0x91a71ffc libffi.dylib ??? (???) <a3b573eb950ca583290f7b2b4c486d09> /usr/lib/libffi.dylib
    0x91a72000 - 0x91a81ffe com.apple.DSObjCWrappers.Framework 1.2 (1.2) <f5b58d1d3a855a63d493ccbec417a1e9> /System/Library/PrivateFrameworks/DSObjCWrappers.framework/Versions/A/DSObjCWra ppers
    0x91b77000 - 0x91b7eff7 libCGATS.A.dylib ??? (???) <9b29a5500efe01cc3adea67bbc42568e> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCGATS.A.dylib
    0x91b7f000 - 0x91b9effa libJPEG.dylib ??? (???) <0cfb80109d624beb9ceb3c43b6c5ec10> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libJPEG.dylib
    0x91b9f000 - 0x91b9ffff com.apple.Carbon 136 (136) <98a5e3bc0c4fa44bbb09713bb88707fe> /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
    0x91ba0000 - 0x91bb0ffc com.apple.LangAnalysis 1.6.4 (1.6.4) <cbeb17ab39f28351fe2ab5b82bf465bc> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LangAnalysis.framework/Versions/A/LangAnalysis
    0x91bd2000 - 0x91c79fff com.apple.QD 3.11.50 (???) <e2f71720ae1dad06a8883ac80775b21a> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ QD.framework/Versions/A/QD
    0x91cc7000 - 0x91ceefff libcups.2.dylib ??? (???) <5521498e8902ddd0b15cfaa7db384e29> /usr/lib/libcups.2.dylib
    0x91cfe000 - 0x91d2bfeb libvDSP.dylib ??? (???) <a26683d121ee0f96df9a9d0bfca36049> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvDSP.dylib
    0x91d2c000 - 0x91e0bfff libobjc.A.dylib ??? (???) <5eda47fec2d0e7853b3506aa1fd2dafa> /usr/lib/libobjc.A.dylib
    0x91e0c000 - 0x91e0cff8 com.apple.Cocoa 6.5 (???) <e064f94d969ce25cb7de3cfb980c3249> /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
    0x91e0d000 - 0x91e0efef libmathCommon.A.dylib ??? (???) /usr/lib/system/libmathCommon.A.dylib
    0x91e0f000 - 0x91f54ff7 com.apple.ImageIO.framework 2.0.0 (2.0.0) <154d4d8cda2bd99518cbabc9f2d69833> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/ImageIO
    0x91f55000 - 0x92020fff com.apple.ColorSync 4.5.0 (4.5.0) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ColorSync.framework/Versions/A/ColorSync
    0x92021000 - 0x9205affe com.apple.securityfoundation 3.0 (32768) <1e9885d63ced51f81bc1f39af624637d> /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoun dation
    0x9205b000 - 0x9213fffb com.apple.CoreData 100 (185) <a4e63784275e25e62f57e75e0af0b94d> /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
    0x92140000 - 0x9214cff5 libGL.dylib ??? (???) /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
    0x9214d000 - 0x9217cfe3 com.apple.AE 402 (402) <994ba8e884aefe7bf1fc5987df099e7b> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.fram ework/Versions/A/AE
    0x9217d000 - 0x9219bfff libresolv.9.dylib ??? (???) <54e6a08c2f108bdf5916fb483d51961b> /usr/lib/libresolv.9.dylib
    0x9219c000 - 0x92223ff7 libsqlite3.0.dylib ??? (???) <273efcb717e89c21207c851d7d33fda4> /usr/lib/libsqlite3.0.dylib
    0x92224000 - 0x92266fef com.apple.NavigationServices 3.5.1 (161) <cc6bd78eabf1e2e7166914e9f12f5850> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/NavigationSer vices.framework/Versions/A/NavigationServices
    0x92267000 - 0x92277fff com.apple.speech.synthesis.framework 3.6.59 (3.6.59) <4ffef145fad3d4d787e0c33eab26b336> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ SpeechSynthesis.framework/Versions/A/SpeechSynthesis
    0x9233e000 - 0x923e7fff com.apple.JavaScriptCore 5523.10.3 (5523.10.3) <9e6719a7a0740f5c224099a7b853e45b> /System/Library/Frameworks/JavaScriptCore.framework/Versions/A/JavaScriptCore
    0x932e0000 - 0x93390fff edu.mit.Kerberos 6.0.11 (6.0.11) <33c25789baedcd70a7e24881775dd9ad> /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
    0x93397000 - 0x93610fe7 com.apple.Foundation 6.5.1 (677.1) <85ac18c7cd454378db6122bea0c00965> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
    0x93611000 - 0x936c3ffb libcrypto.0.9.7.dylib ??? (???) <330b0e48e67faffc8c22dfc069ca7a47> /usr/lib/libcrypto.0.9.7.dylib
    0x936c4000 - 0x937f6fe7 com.apple.CoreFoundation 6.5 (476) <8bfebc0dbad6fc33bea0fa00a1b9ec37> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
    0x937f7000 - 0x937f9fff com.apple.CrashReporterSupport 10.5.0 (156) <3088b785b10d03504ed02f3fee5d3aab> /System/Library/PrivateFrameworks/CrashReporterSupport.framework/Versions/A/Cra shReporterSupport
    0x937fa000 - 0x93cc6ffe libGLProgrammability.dylib ??? (???) <e8bc0af671427cf2b6279a035805a086> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLProgramma bility.dylib
    0x93cc7000 - 0x93da8ff7 libxml2.2.dylib ??? (???) <450ec38b57fb46013847cce851001a2f> /usr/lib/libxml2.2.dylib
    0x93e35000 - 0x93e3afff com.apple.backup.framework 1.0 (1.0) /System/Library/PrivateFrameworks/Backup.framework/Versions/A/Backup
    0x93e3b000 - 0x93e48fe7 com.apple.opengl 1.5.5 (1.5.5) <aa08b52d2a84b44dc6ee5d544a53fe8a> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
    0x93e97000 - 0x93ed1ff7 com.apple.coreui 0.1 (60) /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
    0x93ed2000 - 0x943e8fff com.apple.WebCore 5523.10.6 (5523.10.6) <9e1a5e022ebf8134c175de5f91c63bee> /System/Library/Frameworks/WebKit.framework/Versions/A/Frameworks/WebCore.frame work/Versions/A/WebCore
    0x943e9000 - 0x943e9ffd com.apple.Accelerate 1.4 (Accelerate 1.4) /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
    0x94521000 - 0x94535ff3 com.apple.ImageCapture 4.0 (5.0.0) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture. framework/Versions/A/ImageCapture
    0x94536000 - 0x94bcdfef com.apple.CoreGraphics 1.351.0 (???) <7a6f399039eed6dbe845c169f7d21a70> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/CoreGraphics
    0x94bce000 - 0x94bf2feb libssl.0.9.7.dylib ??? (???) <acee7fc534674498dcac211318aa23e8> /usr/lib/libssl.0.9.7.dylib
    0x94bf3000 - 0x94c32fef libTIFF.dylib ??? (???) <6d0f80e9d4d81f3f64c876aca005bd53> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libTIFF.dylib
    0x94c33000 - 0x94c39fff com.apple.print.framework.Print 218 (220) <c35172175abbe554ddadd9b6401351fa> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framewo rk/Versions/A/Print
    0x94c3a000 - 0x94c3affc com.apple.audio.units.AudioUnit 1.5 (1.5) /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
    0x94c3b000 - 0x94ceafff com.apple.DesktopServices 1.4.3 (1.4.3) <66d5ed56111c43d234e235d365d02469> /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/Desk topServicesPriv
    0x94ceb000 - 0x94ff1fff com.apple.HIToolbox 1.5.0 (???) <1b872a7151ee3f80c9c736a3e46d00d9> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox
    0x94ff2000 - 0x94ff4fff com.apple.securityhi 3.0 (30817) <2b2854123fed609d1820d2779e2e0963> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.fr amework/Versions/A/SecurityHI
    0x94ff5000 - 0x94ffffeb com.apple.audio.SoundManager 3.9.2 (3.9.2) <0f2ba6e891d3761212cf5a5e6134d683> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CarbonSound.f ramework/Versions/A/CarbonSound
    0x95000000 - 0x951c9fef com.apple.security 5.0.1 (32736) <8c9eda0fcc1d8a571543025ac900715f> /System/Library/Frameworks/Security.framework/Versions/A/Security
    0x9521b000 - 0x95236ffb libPng.dylib ??? (???) <b6abcac36ec7654ff3e1cfa786b0117b> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libPng.dylib
    0x95237000 - 0x95a31fef com.apple.AppKit 6.5 (949) <f8d0f6d0bb5ac092f48f42ca684bdb54> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
    0x95a32000 - 0x95a32ffd com.apple.Accelerate.vecLib 3.4 (vecLib 3.4) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/vecLib
    0x95a33000 - 0x95a33ffa com.apple.CoreServices 32 (32) <2fcc8f3bd5bbfc000b476cad8e6a3dd2> /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
    0x95a34000 - 0x95a8dfff libGLU.dylib ??? (???) /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
    0x95a8e000 - 0x95adeff7 com.apple.HIServices 1.6.0 (???) <d74aa73e4cfd30a08fb169198a8d2539> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ HIServices.framework/Versions/A/HIServices
    0x95ae0000 - 0x95b0afef libauto.dylib ??? (???) <d468bc4a8a69343f1748c293db1b57fb> /usr/lib/libauto.dylib
    0x95b0b000 - 0x95b9dff3 com.apple.ApplicationServices.ATS 3.0 (???) <fb5f572243dbc370a0ea5efc8e81ae11> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/ATS
    0x95b9e000 - 0x95b9effd com.apple.vecLib 3.4 (vecLib 3.4) /System/Library/Frameworks/vecLib.framework/Versions/A/vecLib
    0x95b9f000 - 0x95ba8fff com.apple.speech.recognition.framework 3.7.24 (3.7.24) <d3180f9edbd9a5e6f283d6156aa3c602> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecogni tion.framework/Versions/A/SpeechRecognition
    0x95ba9000 - 0x95c25feb com.apple.audio.CoreAudio 3.1.0 (3.1) <70bb7c657061631491029a61babe0b26> /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
    0x95f38000 - 0x96092fe3 libSystem.B.dylib ??? (???) <8ecc83dc0399be3946f7a46e88cf4bbb> /usr/lib/libSystem.B.dylib
    0x960b7000 - 0x960e9fff com.apple.LDAPFramework 1.4.3 (106) <3a5c9df6032143cd6bc2658a9d328d8e> /System/Library/Frameworks/LDAP.framework/Versions/A/LDAP
    0x960ea000 - 0x9615efef libvMisc.dylib ??? (???) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvMisc.dylib
    0x9615f000 - 0x961a0fe7 libRIP.A.dylib ??? (???) <bdc6d70bf4ed3dace321b4ff76a353b3> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libRIP.A.dylib
    0x961a1000 - 0x961fdff7 com.apple.htmlrendering 68 (1.1.3) <fe87a9dede38db00e6c8949942c6bd4f> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HTMLRendering .framework/Versions/A/HTMLRendering
    0x961fe000 - 0x96248fe1 com.apple.securityinterface 3.0 (32532) <f521dae416ce7a3bdd594b0d4e2fb517> /System/Library/Frameworks/SecurityInterface.framework/Versions/A/SecurityInter face
    0x96249000 - 0x96310ff2 com.apple.vImage 3.0 (3.0) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.fr amework/Versions/A/vImage
    0x96311000 - 0x96388fe3 com.apple.CFNetwork 220 (221) <972a41911805859205b057a6f5b91e8d> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CFNetwo rk.framework/Versions/A/CFNetwork
    0x963c7000 - 0x96482fe3 com.apple.WebKit 5523.10.6 (5523.10.6) <2741777559b3948d520a4d126330dbce> /System/Library/Frameworks/WebKit.framework/Versions/A/WebKit
    0x964c5000 - 0x964cdfff com.apple.DiskArbitration 2.2 (2.2) <1551b2af557fdf6f368f93e093933852> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
    0x964ce000 - 0x965f2fe3 com.apple.audio.toolbox.AudioToolbox 1.5 (1.5) /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
    0x965f3000 - 0x96609fff com.apple.DictionaryServices 1.0.0 (1.0.0) <ad0aa0252e3323d182e17f50defe56fc> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Diction aryServices.framework/Versions/A/DictionaryServices
    0x9660a000 - 0x96615fe7 libCSync.A.dylib ??? (???) <df82fc093e498a9eb5490761cb292218> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCSync.A.dylib
    0x96616000 - 0x9664cfff com.apple.SystemConfiguration 1.9.0 (1.9.0) <7919d9588c3b0d556646e555b7193f1f> /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfi guration
    0x96682000 - 0x96783fff com.apple.PubSub 1.0.1 (59) /System/Library/Frameworks/PubSub.framework/Versions/A/PubSub
    0x967f3000 - 0x9681bff7 com.apple.shortcut 1 (1.0) <057783867138902b52bc0941fedb74d1> /System/Library/PrivateFrameworks/Shortcut.framework/Versions/A/Shortcut
    0x9681c000 - 0x96bb2ff7 com.apple.QuartzCore 1.5.1 (1.5.1) <deb61cbeb3f734a1b2f4669f6268b9de> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
    0xfffe8000 - 0xfffebfff libobjc.A.dylib ??? (???) /usr/lib/libobjc.A.dylib
    0xffff0000 - 0xffff1780 libSystem.B.dylib ??? (???) /usr/lib/libSystem.B.dylib

  • Keep being asked for password: Mail Help unhelpful

    Last week I had to trash my keychains/passwords on the recommendation of Skype help. It solved my immediate problem but now I get asked for a password every time I launch Mail.
    I've tried Mail help and got the following advice:
    "To change the keychain lock settings:
    Open Keychain Access, located in Applications/Utilities (or click the link provided on this page).
    Select your login keychain, choose Edit > "Change Settings for Keychain 'login'."
    To reduce the number of requests for your keychain password, deselect the option for the number of minutes of inactivity before the keychain is locked, or increase the number of minutes. You can also deselect "Lock when sleeping" option."
    Trouble is, I see nothing that resembles a "login keychain".
    Is the above the advice I need. If yes, what/where is my login keychain; if no, what now?

    Thanks for the feedback. This means the login keychain itself was "there", just inaccessible for some reason. The actual keychains are stored in one of the following locations, depending on their applicability:
    /System/Library/Keychains/
    /Library/Keychains/
    ~/Library/Keychains/
    login, in particular, being different for each user, is stored in ~/Library/Keychains/.
    On my system, the System keychain is stored in /Library/Keychains/. Do you see a System keychain in more than one of the aforementioned locations? Maybe that's the reason you see more than one instance of it in Keychain Access.
    I'm wondering now if the problem was just that there was something wrong with the ~/Library/Preferences/com.apple.keychainaccess.plist preferences file. Guess we'll never know what happened here.
    Note: For those not familiarized with the ~/ notation, it refers to the user's home folder. You can easily locate any of the folders referred to in this post by copying the file path here, doing Go > Go to Folder in the Finder, and pasting the file path there.

Maybe you are looking for