Mail loses thread when receiving replies with foreign language

Hi,
I have OSX set to english, but I receive a lot of mails in another language, meaning the replies often come in SV: , RES:, WG:, ANT: instead of RE:. When they come in anything other than RE: they don't get threaded.. what to do? Maybe edit the header? How?
Thanks a lot to those that would know how to do this!

Hello Melody,
If you are using FDM v11.1.1.3.00 the file-encoding is defaulted to Unicode. It might be helpful to contact support.
It could be your DB isn't setup to handle unicode characters (in this event the information would be stored in the SQL*Loader or MSSQL Logs). It could also be the file you are trying to import actually isn't "unicode" but more of a local ANSI/ASCII format.
Most 'European' characters were supported in that release; and I know several clients that use it as expected.
Thank you,

Similar Messages

  • Why did i lose apps when i synced with a new computer

    why did i lose apps when i synced with a new computer

    Because ipod touch will sycn with one computer at a time.  Syncing to another wil erase the current content.
    You should copy everything from your old computer to your new one.
    You can redownload apps:
    Downloading past purchases from the App Store, iBookstore, and iTunes Store

  • How to use "do shell script" when Terminal replies with a prompt?

    Hey all,
    I'm wondering how to properly use "do shell script" when Terminal replies with a question? In this example, I'm building a small tool in AppleScript that will auto-update the Android SDK via command line prompts. The problem is when I tell it to update all ("update sdk --no-ui"), I need to accept licence agreements before it continues, and the amount of licence agreements brought up is different every time.
    So, basically, I'm wondering how to handle a case where "do shell script" encounters a case where Terminal would normally need a user's response to?
    Thanks,
    Behn

    If it is variable number of prompts that is a problem.  Look around hd and figure out how many prompts there will be. Ask around android forum for a bash solution. There are some test case apps that will let you put conditionals on output from running programs.
    # traditional way.  Pipe output to command.
    do script "echo 'ok' | update sdk --no-u"
    Here is the preferred way of getting administrator privileges.
    It is easier to diagnose problems with debug information. I suggest adding log statements to your script to see what is going on.  Here is an example.
        Author: rccharles
        For testing, run in the Script Editor.
          1) Click on the Event Log tab to see the output from the log statement
          2) Click on Run
        For running shell commands see:
        http://developer.apple.com/mac/library/technotes/tn2002/tn2065.html
    on run
        -- Write a message into the event log.
        log "  --- Starting on " & ((current date) as string) & " --- "
        --  debug lines
        set unixDesktopPath to POSIX path of "/System/Library/User Template/"
        log "unixDesktopPath = " & unixDesktopPath
        set quotedUnixDesktopPath to quoted form of unixDesktopPath
        log "quoted form is " & quotedUnixDesktopPath
        try
            set fromUnix to do shell script "sudo ls -l  " & quotedUnixDesktopPath with administrator privileges
            display dialog "ls -l of " & quotedUnixDesktopPath & return & fromUnix
        on error errMsg
            log "ls -l error..." & errMsg
        end try
    end run

  • Reading a text file with foreign language characters

    I'm trying to convert foreign language characters to English looking characters.  I have code that works, but only if I hard code the string with foreign language characters and pass it to the function. I cannot figure out how to get my program to read
    in the foreign characters from my file, they come in as garbage. 
    Since the function works when I pass a hard coded string to it, I'm pretty sure the problem is the way I have the Streamreader set up, it's just not reading the characters correctly...
    Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
    Dim FileRdr As StreamReader = New StreamReader "m:\test\charReplace.txt", System.Text.Encoding.UTF7)
    Dim ReplaceWrtr As StreamWriter ReplaceWrtr = System.IO.File.CreateText("M:\test\CharReplaceOut.txt")
    Do While FileRdr.Peek() >= 0
    Dim currentRec As String = FileRdr.ReadLine
    removeAccent(currentRec)
    ReplaceWrtr.WriteLine(currentRec)
    Loop
    ReplaceWrtr.Close()
    End Sub
    'Replace foreign language characters with English characters
    Function removeAccent(ByVal myString As String)
    Dim A As String = "--"
    Dim B As String = "--"
    Const AccChars As String = "ŠŽšžŸÀÁÂÃÄÅÇÈÉÊËÌÍÎÏÐÑÒÓÔÕÖÙÚÛÜÝàáâãäåçèéêëìíîïðñòóôõöùúûüýÿ"
    Const RegChars As String = "SZszYAAAAAACEEEEIIIIDNOOOOOUUUUYaaaaaaceeeeiiiidnooooouuuuyy"
    For i As Integer = 1 To Len(AccChars)
    A = Mid(AccChars, i, 1)
    B = Mid(RegChars, i, 1)
    myString = Replace(myString, A, B)
    Next
    removeAccent = myString
    End Function
    I know that removing the accent changes the meaning of the word, but this is what the user wants so it's what I need to do. 
    Any help is greatly appreciated!! :)
    Thanks!
    Joni

    Finally got it to work.  I had to remove the first 5 characters from the replacement string (ŠŽšžŸ), couldn't find encoding that would handle these, and to be honest, I didn't really need them.  The important ones are still there, was probably
    just overkill on my part.
    UTF7 worked for the rest...
    Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
    Dim FileRdr As StreamReader = New StreamReader("m:\test\charReplace.txt", System.Text.Encoding.UTF7)
    Dim ReplaceWrtr As StreamWriter
    ReplaceWrtr = System.IO.File.CreateText("M:\test\CharReplaceOut.txt")
    Do While FileRdr.Peek() >= 0
    Dim currentRec As String = FileRdr.ReadLine
    removeAccent(currentRec)
    ReplaceWrtr.WriteLine(currentRec)
    Loop
    ReplaceWrtr.Close()
    End Sub
    'Replace foreign language characters with english characters
    Function removeAccent(ByRef myString As String)
    Dim A As String = "--"
    Dim B As String = "--"
    Const AccChars As String = "ÀÁÂÃÄÅÇÈÉÊËÌÍÎÏÐÑÒÓÔÕÖÙÚÛÜÝàáâãäåçèéêëìíîïðñòóôõöùúûüýÿ"
    Const RegChars As String = "AAAAAACEEEEIIIIDNOOOOOUUUUYaaaaaaceeeeiiiidnooooouuuuyy"
    For i As Integer = 1 To Len(AccChars)
    A = Mid(AccChars, i, 1)
    B = Mid(RegChars, i, 1)
    myString = Replace(myString, A, B)
    Next
    removeAccent = myString
    End Function
    Thanks for all your help!  Greatly appreciated :)
    -Joni

  • Mail app crashes when receiving email from a particular sender

    HI All,
    Here is a problem I'm facing, Mail App crashes while receiving email from a particular sender. I'm testing our new Email Hosting solution "Rackspace" and it works fine with all other Email clients or on deveices (Android, Windows Phone & Blackbarry) but on Iphone 4s (IOS 6.1.4, i guess) it crashes the Mail App.
    The email I'm using is sending over to an email at ttv-asia.com domain. The user of ttv-asia.com is based in China and just to see if the problem is with the Iphone, I've tested the Iphone's Mail App in Hong Kong and it works normal.
    So now... Im confused and have no Idea on how ro fix this.
    ~Ray
    <Email Edited By Host>

    Sorted, it seems that livemail configured for exchange and having Google premier for exchange, results in the mail app on the iPhone crashing, when selecting an email in the Google exchange mail box, then calling up the folders , it crashes. switched off livemail mail, worked fine.
    Weird.
    Google vs Microsoft, with a little help from Apple ???????????

  • Mail locks up when receiving

    Mail locks up when I recieve mail in the mornings. I will be going along check emails fine, then all of a sudden I get the spinning beach ball! Then I have to do a force quit and restart mail. When mail comes back up, I just start where I left off and continue with no problems. It does not matter if there are attachments or not! Is there something that I can do?
    Kevin Hawkins

    Should I rebuild the mail boxes or something like that?
    Rebuilding an IMAP mailbox is safe, so you may try that if you wish. I don't think that's the problem, though.
    If you receive so much spam, you may want to read the following articles, which are applicable to any mail account (not just .Mac), and any mail client (not just Mail):
    Why was I "spammed" at my .Mac Mail address?
    How HTML Email Messages Relate to Unsolicited Commercial Email ("spam")

  • Only 274 mails are coming when using pop3 with java mail

    Only 274 mails are coming from GMAIL when using pop3 with java mail. but there are more than 3000 mails.
    I'm not getting the reason, code is given below:
    public static void main(String[] args) {
            // SUBSTITUTE YOUR ISP's POP3 SERVER HERE!!!
    //        String host = "pop.bizmail.yahoo.com";
    //        final String user = "[email protected]";
    //        final String password = "xxx";
            String host = "pop.gmail.com";
            final String user = "gauravjlj";
            final String password = "xxx";
            String subjectSubstringToSearch = "Test E-Mail through Java";
            try {
                 Properties prop = new Properties();
                prop.setProperty("mail.pop3.socketFactory.class",
                                            "javax.net.ssl.SSLSocketFactory");
                prop.setProperty("mail.pop3.socketFactory.fallback", "false");
                prop.setProperty("mail.pop3.port", "995");
                prop.setProperty("mail.pop3.socketFactory.port", "995");
                prop.put("mail.pop3.host", host);
                prop.put("mail.store.protocol", "pop3");
                Session session = Session.getDefaultInstance(prop);
                Store store = session.getStore();
                System.out.println("your ID is : "+ user);
                System.out.println("Connecting...");
                store.connect(host, user, password);
                System.out.println("Connected...");
                // Get "INBOX"
                Folder fldr = store.getFolder("INBOX");
                fldr.open(Folder.READ_ONLY);
                int count = fldr.getMessageCount();
                System.out.println(count  + " total messages");
                // Message numebers start at 1
                for(int i = 1; i <= count; i++) {
                                            // Get  a message by its sequence number
                    Message m = fldr.getMessage(i);
                    // Get some headers
                    Date date = m.getSentDate();
                    Address [] from = m.getFrom();
                    String subj = m.getSubject();
                    String mimeType = m.getContentType();
                    System.out.println(date + "\t" + from[0] + "\t" +
                                        subj + "\t" + mimeType);
                // Search for e-mails by some subject substring
                String pattern = subjectSubstringToSearch;
                SubjectTerm st = new SubjectTerm(pattern);
                // Get some message references
                Message [] found = fldr.search(st);
                System.out.println(found.length +
                                    " messages matched Subject pattern \"" +
                                    pattern + "\"");
                for (int i = 0; i < found.length; i++) {
                    Message m = found;
    // Get some headers
    Date date = m.getSentDate();
    Address [] from = m.getFrom();
    String subj = m.getSubject();
    String mimeType = m.getContentType();
    System.out.println(date + "\t" + from[0] + "\t" +
    subj + "\t" + mimeType);
    Object o = m.getContent();
    if (o instanceof String) {
    System.out.println("**This is a String Message**");
    System.out.println((String)o);
    else if (o instanceof Multipart) {
    System.out.print("**This is a Multipart Message. ");
    Multipart mp = (Multipart)o;
    int count3 = mp.getCount();
    System.out.println("It has " + count3 +
    " BodyParts in it**");
    for (int j = 0; j < count3; j++) {
    // Part are numbered starting at 0
    BodyPart b = mp.getBodyPart(j);
    String mimeType2 = b.getContentType();
    System.out.println( "BodyPart " + (j + 1) +
    " is of MimeType " + mimeType);
    Object o2 = b.getContent();
    if (o2 instanceof String) {
    System.out.println("**This is a String BodyPart**");
    System.out.println((String)o2);
    else if (o2 instanceof Multipart) {
    System.out.print(
    "**This BodyPart is a nested Multipart. ");
    Multipart mp2 = (Multipart)o2;
    int count2 = mp2.getCount();
    System.out.println("It has " + count2 +
    "further BodyParts in it**");
    else if (o2 instanceof InputStream) {
    System.out.println(
    "**This is an InputStream BodyPart**");
    } //End of for
    else if (o instanceof InputStream) {
    System.out.println("**This is an InputStream message**");
    InputStream is = (InputStream)o;
    // Assumes character content (not binary images)
    int c;
    while ((c = is.read()) != -1) {
    System.out.write(c);
    // Uncomment to set "delete" flag on the message
    //m.setFlag(Flags.Flag.DELETED,true);
    } //End of for
    // "true" actually deletes flagged messages from folder
    fldr.close(true);
    store.close();
    catch (MessagingException mex) {
    // Prints all nested (chained) exceptions as well
    mex.printStackTrace();
    catch (IOException ioex) {
    ioex.printStackTrace();
    Please tell me.
    Thanks                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       

    Is it possible that GMail only allows access to untagged emails via POP3? Or only to emails from the last x days?
    POP3 is the older email retrieval protocol (IMAP4 is the more current one) and only has very limited support for folders (or anything but a single inbox, really). It's quite common that POP3 only allows access to a subset of all emails stored by a provider.

  • Getting weird adobe pop-up with foreign language characters and no download

    For the last week and change, it seems every time I have been prom,ptsd to download something from done reader, when I click on the "trust website", instead of the page and download opening up, I get an Adobe pop-up with completely foreign language (several different, it looks like) characters, and nothing to click on, and no download.  I'm on a Mac, version 10.8.5, on Safari.  What gives?????
    Cathy

    Thank you for the screenshot.  The text in the message says
    Before viewing PDF documents in this browser you must launch Adobe Reader and accept the End User License Agreement then quit and relaunch the browser.
    So all you need to do is to open the Adobe Reader app, accept the EULA, then restart your browser.
    I don't know why this message is displayed in Japanese, but I have seen similar reports in this forum for the latest Adobe Reader on Mac.

  • FDM - Errors with Foreign Language Characters in Load Files

    For our Netherlands data import file, our source account decriptions contain the character "ë". The account decription is not loaded to HFM, but we are receiving error messages when importing. Is there a way to ignore foreign language characters? Another post suggested "Administration", "Configuation Settings", "File Encoding Type" then set to "Unicode", but the version I am using does not have this option. Version is 11.1.1.3.
    Thank you!
    Melody

    Hello Melody,
    If you are using FDM v11.1.1.3.00 the file-encoding is defaulted to Unicode. It might be helpful to contact support.
    It could be your DB isn't setup to handle unicode characters (in this event the information would be stored in the SQL*Loader or MSSQL Logs). It could also be the file you are trying to import actually isn't "unicode" but more of a local ANSI/ASCII format.
    Most 'European' characters were supported in that release; and I know several clients that use it as expected.
    Thank you,

  • Stuck in recovery with foreign language can't insatll os COMPLICATED!!

    Stuck in recovery (lanuage is set to foreign country and not changing when clicking on any other country) no wifi connecting tried ethernet not working? Just bought from ebay..2010 macbook pro..it was working fine when first put it on then i wiped the hard drive and tried to reinstall os mavericks but i cant understand any if of it because its in foreign language setting i go up to the right hand corner and change the language but it still just stays the same? I think the airport card could be broke? I put in ethernet and it read it as working but still wouldn't letting me install os? Could someone help?

    A late 2011 MBP came with Lion (10.7).  Since you say that you have erased the HDD, I suggest that you do the following:
    YOU WILL NEED A SOLID INTERNET CONNECTION.
    Boot the MBP with the OPTION+COMMAND+R keys.
    That should result in a display with a revolving globe.
    This will connect you to the Apple servers and allow you to install the original OSX (LION).
    Follow the instructions.
    Installing Lion will create your own account with Apple.
    Then you may download and install Mavericks (10.9) from the App store..
    Ciao.

  • System.getProperty with foreign language

    Hello All,
    I've developed a program that uses System.getProperty("user.home"), in order to transfer files to that location.
    Everything's going well as long as I'm using English version.
    When one of my customers ran this using a foreign language (Turkish, but it seems to have the same effect on other languages), instead of c:\documents and settings\administrator, he got a wrong fonetic path, i.e. C:\DOCUMENTS AND SETTÝNGS\ADMÝNÝSTRATOR (check the I's, they're not the same), although he has the English path in his computer.
    You can see this also when you change the regional settings in an English based Windows to Turkish.
    How can I make the System property look at the correct path (again, this happens in other languages as well)?
    Thanks,
    Barak

    Hmmm.... I didn't think I used toUpperCase in my code. When all else fails, my advice is to read the API...
    [http://java.sun.com/javase/6/docs/api/java/lang/String.html#toUpperCase()]
    <quote>
    Note: This method is locale sensitive, and may produce unexpected results if used for strings that are intended to be interpreted locale independently. Examples are programming language identifiers, protocol keys, and HTML tags. For instance, "title".toUpperCase() in a Turkish locale returns "T?TLE", where '?' is the LATIN CAPITAL LETTER I WITH DOT ABOVE character. To obtain correct results for locale insensitive strings, use toUpperCase(Locale.ENGLISH).
    </quote>

  • Description not displayed when loged in with different language

    Hi
    We have created some queries Loging in english language . When we use a different language for logon  say Portugese 'PT' the discription of the query is not dispalyed instead the technical name is displayed. This issue is same for all objects ( Infoproviders , Infoobjects etc .) .Is there any setting that should be maintained so that the object's description created in one language can be seen by login in with a different language .
    Thanks in advance,
    Biyaz

    yes I also working fro dutch clients
    and they have develped everything in Dutch language
    so whn I log on in En language I don't see desccription in English.
    there is no setting by which u can see description of custom object. but for standard object we are able ti see description in English language
    assign points if useful

  • Problem when creating contract  with foreign trade / customs

    Hi,
    I encountered a problem when creating contract / outline agreement.
    I used ME31K to create a contract with a vendor outside of our country. I suppose that I should be able to see "Foreign Trade / Customs" in "Header" menu, but this entry is gray, I cannot enter it.
    I tried to create a scheduling agreement using ME31L with the same vendor and material, I can see "Foreign Trade / Customs" information. I suppose these two process are similar, aren't they?
    Btw., I checked the master data according to this thread:
    http://help.sap.com/saphelp_46c/helpdata/en/ed/3b6cc697e711d1b4e20000e82d81b0/content.htm
    Can anyone give me some hint?
    Thanks!
    Charlie

    These two processes are different:
    The Contract agreement or the Outline Agreement is that create the centrally contract (cross-plant) where it can maintain different pricing conditions for each and every plant. It creates the Release Order with reference to Outline Agreement. No detailed delivery schedule can be made in the Release Order. No Release documentation is created. Only time-dependent conditions can be created, Some Item Category 'M' and 'W' can be used.
    Whereas the Scheduling Agreement is the Plant Location what must be entered in the Scheduling Agreement. Its no need to create any other purchasing document except for delivery schedule line via Transaction ME38 or MRP running (with the appropriate setting of Source List). Delivery Schedule line items are created subject to your specific requirement. It can create both Scheduling Agreement with or without release of Documentation (subject to the Document Type LP or LPA) with the selection of either FRC or JIT delivery schedule. Either time-dependent or time-independent conditions can be created subject to the customizing in the Document Type of the Scheduling Agreement. Item Category 'M' and 'W' can not be used.

  • Rich Text Mail not format when received by others

    Am new to Mac and mail. Have set my mail accounts up ok and am sending formatted mail (rich mail, change font to arial and changed colour). However, when it is received by other computers (non-mac!!) the mail format is times roman and colour is black.
    Can anyone help me with a solution?
    Thanks

    Is mail encoding the message so that it is unreadable by Entourage or Outlook?  That is the program that at least one of the recipients is using. 
    Does anyone know what could be going on?
    Sort of. Outlook is a crappy email client unless it is sending and receiving to/from itself. It even has trouble with Microsoft's own products like Entourage, Outlook for Mac and Outlook Express (Windows version).
    Depending on the version of Outlook and the Exchange server that is hosting it, various problems will occur.
    If you are sending to a known bad version, use Plain text and set the attachments to always at end.  Another thing noted as helpful is setting the attachment to view as icon (right-click on it and choose view as icon).
    Changing the font at the beginning of the message is known to work sometimes. Recently, some people have found that adding an empty plain text document as an attachment helps with some versions of Outlook.
    Despite that fact that Outlook does not conform to email standards, Apple has tried to keep up with the various idiosyncrasies in Outlook, but Microsoft tends to stay one step ahead with new bugs.

  • Sporadic Mail.app crashes when previewing messages with attachments

    Hi,
    Mail.app crashes about 10% of the time that I click on an e-mail with an attachment. It seems to crash as it is decoding the attachment for viewing in the preview pane of the application. It doesn't seem to matter what type the attachment is. I think it only happens in my main work IMAP account, not my .Mac account, but I'm not 100% sure of that.
    Is anyone else having this problem, and does anyone have a suggestion for how I might fix it?
    I keep hoping that it will get magically fixed at some system update, but it has persisted in 10.4.9.
    A sample crash log is below.
    Thanks,
    -- Paul
    Host Name: mcxr2
    Date/Time: 2007-03-20 16:58:27.311 -0400
    OS Version: 10.4.9 (Build 8P135)
    Report Version: 4
    Command: Mail
    Path: /Applications/Mail.app/Contents/MacOS/Mail
    Parent: WindowServer [105]
    Version: 2.1 (752)
    Build Version: 1
    Project Name: MailViewer
    Source Version: 7520000
    PID: 10610
    Thread: 12
    Exception: EXCBADACCESS (0x0001)
    Codes: KERNINVALIDADDRESS (0x0001) at 0x4d657393
    Thread 0:
    0 libSystem.B.dylib 0x9000b4c8 machmsgtrap + 8
    1 libSystem.B.dylib 0x9000b41c mach_msg + 60
    2 com.apple.CoreFoundation 0x907deba8 __CFRunLoopRun + 832
    3 com.apple.CoreFoundation 0x907de4ac CFRunLoopRunSpecific + 268
    4 com.apple.HIToolbox 0x9329bb20 RunCurrentEventLoopInMode + 264
    5 com.apple.HIToolbox 0x9329b1b4 ReceiveNextEventCommon + 380
    6 com.apple.HIToolbox 0x9329b020 BlockUntilNextEventMatchingListInMode + 96
    7 com.apple.AppKit 0x937a1ae4 _DPSNextEvent + 384
    8 com.apple.AppKit 0x937a17a8 -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 116
    9 com.apple.AppKit 0x9379dcec -[NSApplication run] + 472
    10 com.apple.AppKit 0x9388e87c NSApplicationMain + 452
    11 com.apple.mail 0x000871d8 0x1000 + 549336
    12 com.apple.mail 0x00087080 0x1000 + 548992
    Thread 1:
    0 libSystem.B.dylib 0x9000b4c8 machmsgtrap + 8
    1 libSystem.B.dylib 0x9000b41c mach_msg + 60
    2 com.apple.CoreFoundation 0x907deba8 __CFRunLoopRun + 832
    3 com.apple.CoreFoundation 0x907de4ac CFRunLoopRunSpecific + 268
    4 com.apple.Foundation 0x92bf2170 -[NSRunLoop runMode:beforeDate:] + 172
    5 com.apple.Foundation 0x92bf20a8 -[NSRunLoop run] + 76
    6 com.apple.MessageFramework 0x9b050198 +[_NSSocket _runIOThread] + 92
    7 com.apple.Foundation 0x92be31a0 forkThreadForFunction + 108
    8 libSystem.B.dylib 0x9002be88 pthreadbody + 96
    Thread 2:
    0 libSystem.B.dylib 0x9001fa0c select + 12
    1 com.apple.CoreFoundation 0x907f1434 __CFSocketManager + 472
    2 libSystem.B.dylib 0x9002be88 pthreadbody + 96
    Thread 3:
    0 libSystem.B.dylib 0x9000b4c8 machmsgtrap + 8
    1 libSystem.B.dylib 0x9000b41c mach_msg + 60
    2 com.apple.CoreFoundation 0x907deba8 __CFRunLoopRun + 832
    3 com.apple.CoreFoundation 0x907de4ac CFRunLoopRunSpecific + 268
    4 com.apple.Foundation 0x92c0a6a8 +[NSURLConnection(NSURLConnectionInternal) _resourceLoadLoop:] + 264
    5 com.apple.Foundation 0x92be31a0 forkThreadForFunction + 108
    6 libSystem.B.dylib 0x9002be88 pthreadbody + 96
    Thread 4:
    0 libSystem.B.dylib 0x9000b4c8 machmsgtrap + 8
    1 libSystem.B.dylib 0x9000b41c mach_msg + 60
    2 com.apple.CoreFoundation 0x907deba8 __CFRunLoopRun + 832
    3 com.apple.CoreFoundation 0x907de4ac CFRunLoopRunSpecific + 268
    4 com.apple.Foundation 0x92c0b7e8 +[NSURLCache _diskCacheSyncLoop:] + 152
    5 com.apple.Foundation 0x92be31a0 forkThreadForFunction + 108
    6 libSystem.B.dylib 0x9002be88 pthreadbody + 96
    Thread 5:
    0 libSystem.B.dylib 0x9000b4c8 machmsgtrap + 8
    1 libSystem.B.dylib 0x9000b41c mach_msg + 60
    2 com.apple.CoreFoundation 0x907deba8 __CFRunLoopRun + 832
    3 com.apple.CoreFoundation 0x907de4ac CFRunLoopRunSpecific + 268
    4 com.apple.Foundation 0x92bf2170 -[NSRunLoop runMode:beforeDate:] + 172
    5 com.apple.Foundation 0x92bf20a8 -[NSRunLoop run] + 76
    6 com.apple.WebKit 0x95bb6e30 +[WebFileDatabase _syncLoop:] + 176
    7 com.apple.Foundation 0x92be31a0 forkThreadForFunction + 108
    8 libSystem.B.dylib 0x9002be88 pthreadbody + 96
    Thread 6:
    0 libSystem.B.dylib 0x9002c548 semaphorewait_signaltrap + 8
    1 libSystem.B.dylib 0x9003102c pthreadcondwait + 480
    2 com.apple.Foundation 0x92bea30c -[NSConditionLock lockWhenCondition:] + 68
    3 com.apple.AppKit 0x9383e708 -[NSUIHeartBeat _heartBeatThread:] + 324
    4 com.apple.Foundation 0x92be31a0 forkThreadForFunction + 108
    5 libSystem.B.dylib 0x9002be88 pthreadbody + 96
    Thread 7:
    0 libSystem.B.dylib 0x9002f20c kevent + 12
    1 com.apple.DesktopServices 0x92af6eb0 TFSNotificationTask::FSNotificationTaskProc(void*) + 56
    2 ...ple.CoreServices.CarbonCore 0x90bc483c PrivateMPEntryPoint + 76
    3 libSystem.B.dylib 0x9002be88 pthreadbody + 96
    Thread 8:
    0 libSystem.B.dylib 0x9002c548 semaphorewait_signaltrap + 8
    1 libSystem.B.dylib 0x9003102c pthreadcondwait + 480
    2 ...ple.CoreServices.CarbonCore 0x90bc4a2c MPWaitOnQueue + 224
    3 com.apple.DesktopServices 0x92af752c TNodeSyncTask::SyncTaskProc(void*) + 116
    4 ...ple.CoreServices.CarbonCore 0x90bc483c PrivateMPEntryPoint + 76
    5 libSystem.B.dylib 0x9002be88 pthreadbody + 96
    Thread 9:
    0 libSystem.B.dylib 0x90055468 semaphoretimedwait_signaltrap + 8
    1 libSystem.B.dylib 0x900552c4 pthreadcondtimedwait + 676
    2 com.apple.Foundation 0x92c625d4 FCONDITION_WAITTIMEOUT + 144
    3 com.apple.Foundation 0x92c624f0 -[NSConditionLock lockWhenCondition:beforeDate:] + 128
    4 com.apple.MessageFramework 0x9b04bd90 -[InvocationQueue _drainQueue] + 176
    5 com.apple.Foundation 0x92be31a0 forkThreadForFunction + 108
    6 libSystem.B.dylib 0x9002be88 pthreadbody + 96
    Thread 10:
    0 libSystem.B.dylib 0x90055468 semaphoretimedwait_signaltrap + 8
    1 libSystem.B.dylib 0x900552c4 pthreadcondtimedwait + 676
    2 com.apple.Foundation 0x92c625d4 FCONDITION_WAITTIMEOUT + 144
    3 com.apple.Foundation 0x92c624f0 -[NSConditionLock lockWhenCondition:beforeDate:] + 128
    4 com.apple.MessageFramework 0x9b04bd90 -[InvocationQueue _drainQueue] + 176
    5 com.apple.Foundation 0x92be31a0 forkThreadForFunction + 108
    6 libSystem.B.dylib 0x9002be88 pthreadbody + 96
    Thread 11:
    0 libSystem.B.dylib 0x90055468 semaphoretimedwait_signaltrap + 8
    1 libSystem.B.dylib 0x900552c4 pthreadcondtimedwait + 676
    2 com.apple.Foundation 0x92c625d4 FCONDITION_WAITTIMEOUT + 144
    3 com.apple.Foundation 0x92c624f0 -[NSConditionLock lockWhenCondition:beforeDate:] + 128
    4 com.apple.MessageFramework 0x9b04bd90 -[InvocationQueue _drainQueue] + 176
    5 com.apple.Foundation 0x92be31a0 forkThreadForFunction + 108
    6 libSystem.B.dylib 0x9002be88 pthreadbody + 96
    Thread 12 Crashed:
    0 <<00000000>> 0xfffeff18 objcmsgSendrtp + 24
    1 com.apple.Foundation 0x92bbf908 NSPopAutoreleasePool + 536
    2 com.apple.MessageFramework 0x9b04beb4 -[InvocationQueue _drainQueue] + 468
    3 com.apple.Foundation 0x92be31a0 forkThreadForFunction + 108
    4 libSystem.B.dylib 0x9002be88 pthreadbody + 96
    Thread 13:
    0 libSystem.B.dylib 0x90055468 semaphoretimedwait_signaltrap + 8
    1 libSystem.B.dylib 0x90071be8 pthreadcond_timedwait_relativenp + 556
    2 ...apple.AddressBook.framework 0x94dfbcac -[ABRemoteImageLoader workLoop] + 132
    3 com.apple.Foundation 0x92be31a0 forkThreadForFunction + 108
    4 libSystem.B.dylib 0x9002be88 pthreadbody + 96
    Thread 12 crashed with PPC Thread State 64:
    srr0: 0x00000000fffeff18 srr1: 0x100000000000f030 vrsave: 0x0000000000000000
    cr: 0x44000224 xer: 0x0000000000000000 lr: 0x0000000092bbf908 ctr: 0x000000009012be18
    r0: 0x0000000000000001 r1: 0x00000000f0315920 r2: 0x0000000015930674 r3: 0x0000000016977d70
    r4: 0x0000000090aaa904 r5: 0x00000000000003e8 r6: 0xffffffffffffffff r7: 0x00000000163e9000
    r8: 0x0000000000000001 r9: 0x0000000015930000 r10: 0x000000000000000c r11: 0x000000006f54a904
    r12: 0x000000004d657373 r13: 0x0000000000000000 r14: 0x0000000000000000 r15: 0x0000000000000000
    r16: 0x0000000000000000 r17: 0x0000000000000000 r18: 0x0000000000000000 r19: 0x0000000000000000
    r20: 0x0000000000000000 r21: 0x0000000000000000 r22: 0x0000000000000000 r23: 0x0000000000000000
    r24: 0x0000000000000000 r25: 0x0000000000000000 r26: 0x00000000ab04bce0 r27: 0x0000000000000000
    r28: 0x0000000019967a00 r29: 0x0000000016977d70 r30: 0x0000000016f0e1f0 r31: 0x0000000092bbf704
    Binary Images Description:
    0x1000 - 0x199fff com.apple.mail 2.1 (752) /Applications/Mail.app/Contents/MacOS/Mail
    0x30e000 - 0x30efff com.apple.SpotLightCM 1.0 (121.34) /System/Library/Contextual Menu Items/SpotlightCM.plugin/Contents/MacOS/SpotlightCM
    0x6b0000 - 0x6b6fff com.Adobe.print.AdobePDF.pde AdobePDF 6.0.2 (6.0.2) /Library/Printers/PPD Plugins/AdobePDFPDE.plugin/Contents/MacOS/AdobePDFPDE
    0x6bb000 - 0x6c5fff com.hp.print.pde.ColorOptions 2.0.4.062 /Library/Printers/hp/PDEs/hpColorOptions.plugin/Contents/MacOS/hpColorOptions
    0x6c9000 - 0x6ddfff com.hp.framework.imaging 2.0.4.062 /Library/Printers/hp/Frameworks/hpImaging.framework/Versions/C/hpImaging
    0x707000 - 0x70efff com.hp.print.pde.EdgeToEdge 2.0.4.062 /Library/Printers/hp/PDEs/hpEdgeToEdge.plugin/Contents/MacOS/hpEdgeToEdge
    0x72f000 - 0x738fff com.hp.print.pde.HPFinishing 2.0.4.062 /Library/Printers/hp/PDEs/hpFinishing.plugin/Contents/MacOS/hpFinishing
    0x75a000 - 0x761fff com.hp.print.pde.ImageQuality 2.0.4.062 /Library/Printers/hp/PDEs/hpImageQuality.plugin/Contents/MacOS/hpImageQuality
    0x782000 - 0x789fff com.hp.print.pde.ProofAndPrint 2.0.4.062 /Library/Printers/hp/PDEs/hpProofAndPrint.plugin/Contents/MacOS/hpProofAndPrint
    0x1779000 - 0x1786fff thePatchCocoa ??? (0.0.1d1) /Applications/CodeTek VirtualDesktop Pro.app/Contents/Resources/patch.bundle/Contents/Resources/thePatchCocoa.bundle /Contents/MacOS/thePatchCocoa
    0x1594b000 - 0x1594dfff com.apple.AutomatorCMM 1.0.1 (68) /System/Library/Contextual Menu Items/AutomatorCMM.plugin/Contents/MacOS/AutomatorCMM
    0x1601d000 - 0x1601ffff com.apple.textencoding.unicode 2.0 /System/Library/TextEncodings/Unicode Encodings.bundle/Contents/MacOS/Unicode Encodings
    0x16126000 - 0x16129fff com.lemkesoft.GraphicConverterCMI 1.1 /Users/paulr/Library/Contextual Menu Items/GraphicConverterCMI.plugin/Contents/MacOS/GraphicConverterCMI
    0x161bd000 - 0x161c1fff com.apple.FolderActionsMenu 1.3.1 /System/Library/Contextual Menu Items/FolderActionsMenu.plugin/Contents/MacOS/FolderActionsMenu
    0x16325000 - 0x1633cfff com.chronos.ChronosNotesCM 5.6.2 /Users/paulr/Library/Contextual Menu Items/ChronosNotesCM.plugin/Contents/MacOS/ChronosNotesCM
    0x1634c000 - 0x1635afff com.cocoatech.PathFinderCM Path Finder CM version 2.1.1 (2.1.2) /Users/paulr/Library/Contextual Menu Items/Path Finder CM.plugin/Contents/MacOS/Path Finder CM
    0x16363000 - 0x16378fff com.stuffit.StuffItCM 9.0.1 /Library/Contextual Menu Items/StuffItCM.plugin/Contents/MacOS/StuffItCM
    0x16c4f000 - 0x16c62fff com.apple.Mail.Syncer 1.0.8 (749.3) /System/Library/Frameworks/Message.framework/Versions/B/Resources/Syncer.syncsc hema/Contents/MacOS/Syncer
    0x16e3d000 - 0x16e45fff com.apple.print.converter.plugin 4.3 (157.7) /System/Library/Printers/CVs/Converter.plugin/Contents/MacOS/Converter
    0x1720d000 - 0x17239fff com.apple.print.framework.Print.Private 4.6 (163.10) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framewo rk/Versions/Current/Plugins/PrintCocoaUI.bundle/Contents/MacOS/PrintCocoaUI
    0x1747f000 - 0x17499fff StuffItSupport.dylib /Library/Frameworks/StuffIt.framework/Versions/A/StuffItSupport.dylib
    0x175bf000 - 0x175dffff com.apple.print.PrintingCocoaPDEs 4.6 (163.10) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framewo rk/Versions/A/Plugins/PrintingCocoaPDEs.bundle/Contents/MacOS/PrintingCocoaPDEs
    0x175ef000 - 0x17608fff com.apple.print.PrintingTiogaPDEs 4.3 (157.7) /System/Library/Frameworks/Carbon.framework/Frameworks/Print.framework/Versions /A/Plugins/PrintingTiogaPDEs.bundle/Contents/MacOS/PrintingTiogaPDEs
    0x74400000 - 0x74413fff libPPDLib.dylib /System/Library/Printers/Libraries/libPPDLib.dylib
    0x78e00000 - 0x78e07fff libLW8Utils.dylib /System/Library/Printers/Libraries/libLW8Utils.dylib
    0x79200000 - 0x7923efff libLW8Converter.dylib /System/Library/Printers/Libraries/libLW8Converter.dylib
    0x8fe00000 - 0x8fe52fff dyld 46.12 /usr/lib/dyld
    0x90000000 - 0x901bdfff libSystem.B.dylib /usr/lib/libSystem.B.dylib
    0x90215000 - 0x9021afff libmathCommon.A.dylib /usr/lib/system/libmathCommon.A.dylib
    0x9021c000 - 0x90269fff com.apple.CoreText 1.0.3 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreText.framework/Versions/A/CoreText
    0x90294000 - 0x90345fff ATS /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/ATS
    0x90374000 - 0x9072ffff com.apple.CoreGraphics 1.258.61 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/CoreGraphics
    0x907bc000 - 0x90895fff com.apple.CoreFoundation 6.4.7 (368.28) /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
    0x908de000 - 0x908defff com.apple.CoreServices 10.4 (???) /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
    0x908e0000 - 0x909e2fff libicucore.A.dylib /usr/lib/libicucore.A.dylib
    0x90a3c000 - 0x90ac0fff libobjc.A.dylib /usr/lib/libobjc.A.dylib
    0x90aea000 - 0x90b5afff IOKit /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
    0x90b70000 - 0x90b82fff libauto.dylib /usr/lib/libauto.dylib
    0x90b89000 - 0x90e60fff com.apple.CoreServices.CarbonCore 681.9 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore
    0x90ec6000 - 0x90f46fff com.apple.CoreServices.OSServices 4.1 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServi ces.framework/Versions/A/OSServices
    0x90f90000 - 0x90fd1fff com.apple.CFNetwork 129.20 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CFNetwo rk.framework/Versions/A/CFNetwork
    0x90fe6000 - 0x90ffefff com.apple.WebServices 1.1.2 (1.1.0) /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/WebServ icesCore.framework/Versions/A/WebServicesCore
    0x9100e000 - 0x9108ffff com.apple.SearchKit 1.0.5 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchK it.framework/Versions/A/SearchKit
    0x910d5000 - 0x910fffff com.apple.Metadata 10.4.4 (121.36) /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadat a.framework/Versions/A/Metadata
    0x91110000 - 0x9111efff libz.1.dylib /usr/lib/libz.1.dylib
    0x91121000 - 0x912dcfff com.apple.security 4.6 (29770) /System/Library/Frameworks/Security.framework/Versions/A/Security
    0x913db000 - 0x913e4fff com.apple.DiskArbitration 2.1 /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
    0x913eb000 - 0x91413fff com.apple.SystemConfiguration 1.8.3 /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfi guration
    0x91426000 - 0x91431fff libgcc_s.1.dylib /usr/lib/libgcc_s.1.dylib
    0x91436000 - 0x9143efff libbsm.dylib /usr/lib/libbsm.dylib
    0x91442000 - 0x914bdfff com.apple.audio.CoreAudio 3.0.4 /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
    0x914fa000 - 0x914fafff com.apple.ApplicationServices 10.4 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services
    0x914fc000 - 0x91534fff com.apple.AE 1.5 (297) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ AE.framework/Versions/A/AE
    0x9154f000 - 0x91621fff com.apple.ColorSync 4.4.9 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ColorSync.framework/Versions/A/ColorSync
    0x91674000 - 0x91705fff com.apple.print.framework.PrintCore 4.6 (177.13) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ PrintCore.framework/Versions/A/PrintCore
    0x9174c000 - 0x91803fff com.apple.QD 3.10.24 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ QD.framework/Versions/A/QD
    0x91840000 - 0x9189efff com.apple.HIServices 1.5.3 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ HIServices.framework/Versions/A/HIServices
    0x918cd000 - 0x918f1fff com.apple.LangAnalysis 1.6.1 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LangAnalysis.framework/Versions/A/LangAnalysis
    0x91905000 - 0x9192afff com.apple.FindByContent 1.5 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ FindByContent.framework/Versions/A/FindByContent
    0x9193d000 - 0x9197ffff com.apple.LaunchServices 182 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LaunchServices.framework/Versions/A/LaunchServices
    0x9199b000 - 0x919affff com.apple.speech.synthesis.framework 3.3 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ SpeechSynthesis.framework/Versions/A/SpeechSynthesis
    0x919bd000 - 0x91a03fff com.apple.ImageIO.framework 1.5.4 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/ImageIO
    0x91a1a000 - 0x91ae1fff libcrypto.0.9.7.dylib /usr/lib/libcrypto.0.9.7.dylib
    0x91b2f000 - 0x91b44fff libcups.2.dylib /usr/lib/libcups.2.dylib
    0x91b49000 - 0x91b67fff libJPEG.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libJPEG.dylib
    0x91b6d000 - 0x91c24fff libJP2.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libJP2.dylib
    0x91c73000 - 0x91c77fff libGIF.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libGIF.dylib
    0x91c79000 - 0x91ce1fff libRaw.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libRaw.dylib
    0x91ce6000 - 0x91d23fff libTIFF.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libTIFF.dylib
    0x91d2a000 - 0x91d43fff libPng.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libPng.dylib
    0x91d48000 - 0x91d4bfff libRadiance.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libRadiance.dylib
    0x91d4d000 - 0x91e2bfff libxml2.2.dylib /usr/lib/libxml2.2.dylib
    0x91e4b000 - 0x91e4bfff com.apple.Accelerate 1.2.2 (Accelerate 1.2.2) /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
    0x91e4d000 - 0x91f32fff com.apple.vImage 2.4 /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.fr amework/Versions/A/vImage
    0x91f3a000 - 0x91f59fff com.apple.Accelerate.vecLib 3.2.2 (vecLib 3.2.2) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/vecLib
    0x91fc5000 - 0x92033fff libvMisc.dylib /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvMisc.dylib
    0x9203e000 - 0x920d3fff libvDSP.dylib /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvDSP.dylib
    0x920ed000 - 0x92675fff libBLAS.dylib /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libBLAS.dylib
    0x926a8000 - 0x929d3fff libLAPACK.dylib /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libLAPACK.dylib
    0x92a03000 - 0x92af1fff libiconv.2.dylib /usr/lib/libiconv.2.dylib
    0x92af4000 - 0x92b7cfff com.apple.DesktopServices 1.3.6 /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/Desk topServicesPriv
    0x92bbd000 - 0x92de8fff com.apple.Foundation 6.4.8 (567.29) /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
    0x92f15000 - 0x92f33fff libGL.dylib /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
    0x92f3e000 - 0x92f98fff libGLU.dylib /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
    0x92fb6000 - 0x92fb6fff com.apple.Carbon 10.4 (???) /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
    0x92fb8000 - 0x92fccfff com.apple.ImageCapture 3.0 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture. framework/Versions/A/ImageCapture
    0x92fe4000 - 0x92ff4fff com.apple.speech.recognition.framework 3.4 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecogni tion.framework/Versions/A/SpeechRecognition
    0x93000000 - 0x93015fff com.apple.securityhi 2.0 (203) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.fr amework/Versions/A/SecurityHI
    0x93027000 - 0x930aefff com.apple.ink.framework 101.2 (69) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework /Versions/A/Ink
    0x930c2000 - 0x930cdfff com.apple.help 1.0.3 (32) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framewor k/Versions/A/Help
    0x930d7000 - 0x93104fff com.apple.openscripting 1.2.5 (???) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting .framework/Versions/A/OpenScripting
    0x9311e000 - 0x9312efff com.apple.print.framework.Print 5.0 (190.1) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framewo rk/Versions/A/Print
    0x9313a000 - 0x931a0fff com.apple.htmlrendering 1.1.2 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HTMLRendering .framework/Versions/A/HTMLRendering
    0x931d1000 - 0x93220fff com.apple.NavigationServices 3.4.4 (3.4.3) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/NavigationSer vices.framework/Versions/A/NavigationServices
    0x9324e000 - 0x9326bfff com.apple.audio.SoundManager 3.9 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CarbonSound.f ramework/Versions/A/CarbonSound
    0x9327d000 - 0x9328afff com.apple.CommonPanels 1.2.2 (73) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels. framework/Versions/A/CommonPanels
    0x93293000 - 0x935a1fff com.apple.HIToolbox 1.4.9 (???) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox
    0x936f1000 - 0x936fdfff com.apple.opengl 1.4.7 /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
    0x93702000 - 0x93722fff com.apple.DirectoryService.Framework 3.1 /System/Library/Frameworks/DirectoryService.framework/Versions/A/DirectoryServi ce
    0x93797000 - 0x93797fff com.apple.Cocoa 6.4 (???) /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
    0x93799000 - 0x93dccfff com.apple.AppKit 6.4.7 (824.41) /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
    0x94159000 - 0x941cbfff com.apple.CoreData 91 (92.1) /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
    0x94204000 - 0x942c8fff com.apple.audio.toolbox.AudioToolbox 1.4.5 /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
    0x9431a000 - 0x9431afff com.apple.audio.units.AudioUnit 1.4 /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
    0x9431c000 - 0x944dcfff com.apple.QuartzCore 1.4.12 /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
    0x94526000 - 0x94563fff libsqlite3.0.dylib /usr/lib/libsqlite3.0.dylib
    0x9456b000 - 0x945bbfff libGLImage.dylib /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dyl ib
    0x945c4000 - 0x945d8fff com.apple.CoreVideo 1.4 /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
    0x9461d000 - 0x94662fff com.apple.bom 8.5 (86.3) /System/Library/PrivateFrameworks/Bom.framework/Versions/A/Bom
    0x946f4000 - 0x94710fff com.apple.securityfoundation 2.2 (27710) /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoun dation
    0x94724000 - 0x94768fff com.apple.securityinterface 2.2 (27692) /System/Library/Frameworks/SecurityInterface.framework/Versions/A/SecurityInter face
    0x9478c000 - 0x9479bfff libCGATS.A.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCGATS.A.dylib
    0x947a3000 - 0x947affff libCSync.A.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCSync.A.dylib
    0x947b5000 - 0x947d4fff libPDFRIP.A.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libPDFRIP.A.dylib
    0x947f5000 - 0x9480dfff libRIP.A.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libRIP.A.dylib
    0x94814000 - 0x94ae9fff com.apple.QuickTime 7.1.5 /System/Library/Frameworks/QuickTime.framework/QuickTime
    0x94bad000 - 0x94c1efff libstdc++.6.dylib /usr/lib/libstdc++.6.dylib
    0x94c91000 - 0x94cb2fff libmx.A.dylib /usr/lib/libmx.A.dylib
    0x94dba000 - 0x94eeafff com.apple.AddressBook.framework 4.0.4 (485.1) /System/Library/Frameworks/AddressBook.framework/Versions/A/AddressBook
    0x94f7c000 - 0x94f8bfff com.apple.DSObjCWrappers.Framework 1.1 /System/Library/PrivateFrameworks/DSObjCWrappers.framework/Versions/A/DSObjCWra ppers
    0x94f93000 - 0x94fc0fff com.apple.LDAPFramework 1.4.1 (69.0.1) /System/Library/Frameworks/LDAP.framework/Versions/A/LDAP
    0x94fc7000 - 0x94fd7fff libsasl2.2.dylib /usr/lib/libsasl2.2.dylib
    0x94fdb000 - 0x9500afff libssl.0.9.7.dylib /usr/lib/libssl.0.9.7.dylib
    0x9501a000 - 0x95037fff libresolv.9.dylib /usr/lib/libresolv.9.dylib
    0x95bb4000 - 0x95c42fff com.apple.WebKit 419 /System/Library/Frameworks/WebKit.framework/Versions/A/WebKit
    0x95c9e000 - 0x95d34fff com.apple.JavaScriptCore 418.3 /System/Library/Frameworks/WebKit.framework/Versions/A/Frameworks/JavaScriptCor e.framework/Versions/A/JavaScriptCore
    0x95d71000 - 0x9607dfff com.apple.WebCore 418.21 /System/Library/Frameworks/WebKit.framework/Versions/A/Frameworks/WebCore.frame work/Versions/A/WebCore
    0x96206000 - 0x9622ffff libxslt.1.dylib /usr/lib/libxslt.1.dylib
    0x96237000 - 0x962b3fff com.apple.syncservices 2.5 (194) /System/Library/Frameworks/SyncServices.framework/Versions/A/SyncServices
    0x9657b000 - 0x965adfff com.apple.PDFKit 1.0.3 /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/PDFKit.framew ork/Versions/A/PDFKit
    0x96b17000 - 0x96b18fff libCyrillicConverter.dylib /System/Library/CoreServices/Encodings/libCyrillicConverter.dylib
    0x97551000 - 0x97570fff com.apple.vecLib 3.2.2 (vecLib 3.2.2) /System/Library/Frameworks/vecLib.framework/Versions/A/vecLib
    0x97740000 - 0x97743fff com.apple.normalizer.privateframework 1.0.7 /System/Library/PrivateFrameworks/PSNormalizer.framework/Versions/A/PSNormalize r
    0x97746000 - 0x977c0fff libAGM.dylib /System/Library/PrivateFrameworks/PSNormalizer.framework/Versions/A/Libraries/l ibAGM.dylib
    0x97803000 - 0x97845fff libICC.dylib /System/Library/PrivateFrameworks/PSNormalizer.framework/Versions/A/Libraries/l ibICC.dylib
    0x97877000 - 0x97b10fff libnserverlite.dylib /System/Library/PrivateFrameworks/PSNormalizer.framework/Versions/A/Libraries/l ibnserverlite.dylib
    0x97be1000 - 0x97c06fff com.apple.speech.LatentSemanticMappingFramework 2.2 /System/Library/PrivateFrameworks/LatentSemanticMapping.framework/Versions/A/La tentSemanticMapping
    0x98692000 - 0x986a0fff com.apple.DMNotification 1.0.4 (37) /System/Library/PrivateFrameworks/DMNotification.framework/Versions/A/DMNotific ation
    0x988b1000 - 0x98982fff com.apple.QuartzComposer 1.2.4 (32.22) /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzCompose r.framework/Versions/A/QuartzComposer
    0x989ff000 - 0x989fffff com.apple.quartzframework 1.0 /System/Library/Frameworks/Quartz.framework/Versions/A/Quartz
    0x98bc8000 - 0x98be0fff com.apple.slideshow 1.0.4 (1.0) /System/Library/PrivateFrameworks/Slideshow.framework/Versions/A/Slideshow
    0x99105000 - 0x99148fff com.apple.ISSupport 1.1.2 (16) /System/Library/PrivateFrameworks/ISSupport.framework/Versions/A/ISSupport
    0x9916e000 - 0x99195fff com.apple.DotMacSyncManager 1.0.4 (155) /System/Library/PrivateFrameworks/DotMacSyncManager.framework/Versions/A/DotMac SyncManager
    0x99824000 - 0x99867fff com.apple.PAPICommon 2.5 (131) /System/Library/PrivateFrameworks/DotMacLegacy.framework/Versions/A/DotMacLegac y
    0x9b01c000 - 0x9b027fff com.apple.IMFramework 3.1.4 (429) /System/Library/Frameworks/InstantMessage.framework/Versions/A/InstantMessage
    0x9b032000 - 0x9b18bfff com.apple.MessageFramework 2.1 (752.2) /System/Library/Frameworks/Message.framework/Versions/B/Message
    0x9bb71000 - 0x9bb88fff libCFilter.A.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCFilter.A.dylib
    0x9bb93000 - 0x9bb93fff libCGNormalizer.A.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCGNormalizer.A.dylib
    0xbbf80000 - 0xbc011fff StuffItCore.dylib /Library/Frameworks/StuffIt.framework/Versions/A/StuffItCore.dylib
    0xeab00000 - 0xeab25fff libConverter.dylib /System/Library/Printers/Libraries/libConverter.dylib
    0xebf80000 - 0xebff1fff com.stuffit.sdk 9.0.1 /Library/Frameworks/StuffIt.framework/Versions/A/StuffIt
    PowerMac Quad G5   Mac OS X (10.4.9)   4GB RAM

    I have also experienced this problem, since I started with 10.4.7 and through updates to 10.4.9. I would agree with the 10% estimate of the frequency of the problem, though today for some reason it has happened more frequently; I found this thread while searching the discussions for a solution.
    I, too, am hestitant to archive and reinstall. This problem is annoying, but the hassle and risk of a reinstall worries me. Any other suggestions? I attach my most recent crash report, in case it might shed more light on this issue.
    Thanks.
    J
    Date/Time: 2007-04-15 10:36:33.064 -0400
    OS Version: 10.4.9 (Build 8P2137)
    Report Version: 4
    Command: Mail
    Path: /Applications/Mail.app/Contents/MacOS/Mail
    Parent: WindowServer [63]
    Version: 2.1.1 (752.3)
    Build Version: 1
    Project Name: MailViewer
    Source Version: 7520300
    PID: 1303
    Thread: 0
    Exception: EXCBADACCESS (0x0001)
    Codes: KERNPROTECTIONFAILURE (0x0002) at 0x00000027
    Thread 0 Crashed:
    0 libobjc.A.dylib 0x90a59380 objc_msgSend + 16
    1 com.apple.Foundation 0x927fc59e -[NSMutableRLEArray deleteObjectsInRange:] + 63
    2 com.apple.Foundation 0x927fb976 -[NSConcreteMutableAttributedString replaceCharactersInRange:withAttributedString:] + 337
    3 com.apple.AppKit 0x93313577 -[NSStringDrawingTextStorage textContainerForAttributedString:containerSize:lineFragmentPadding:] + 384
    4 com.apple.AppKit 0x932f274b _NSStringDrawingCore + 3780
    5 com.apple.AppKit 0x933b28d8 -[NSString(NSStringDrawing) drawInRect:withAttributes:] + 660
    6 com.apple.mail 0x000387e0 0x1000 + 227296
    7 com.apple.AppKit 0x933bc269 -[NSTableView _drawContentsAtRow:column:clipRect:] + 1022
    8 com.apple.AppKit 0x933bb02b -[NSTableView drawRow:clipRect:] + 335
    9 com.apple.MessageFramework 0x994c9683 -[ASExtendedTableView drawRow:clipRect:] + 440
    10 com.apple.AppKit 0x933b87ce -[NSTableView drawRowIndexes:clipRect:] + 99
    11 com.apple.AppKit 0x933b76a4 -[NSTableView drawRect:] + 2499
    12 com.apple.MessageFramework 0x994a6bf7 -[ASExtendedTableView drawRect:] + 199
    13 com.apple.AppKit 0x932e33b1 -[NSView _drawRect:clip:] + 3228
    14 com.apple.AppKit 0x932e1893 -[NSView _recursiveDisplayRectIfNeededIgnoringOpacity:isVisibleRect:rectIsVisibleRectFor View:topView:] + 1273
    15 com.apple.AppKit 0x932e2041 -[NSView _recursiveDisplayRectIfNeededIgnoringOpacity:isVisibleRect:rectIsVisibleRectFor View:topView:] + 3239
    16 com.apple.AppKit 0x932e2041 -[NSView _recursiveDisplayRectIfNeededIgnoringOpacity:isVisibleRect:rectIsVisibleRectFor View:topView:] + 3239
    17 com.apple.AppKit 0x932e2041 -[NSView _recursiveDisplayRectIfNeededIgnoringOpacity:isVisibleRect:rectIsVisibleRectFor View:topView:] + 3239
    18 com.apple.AppKit 0x932e2041 -[NSView _recursiveDisplayRectIfNeededIgnoringOpacity:isVisibleRect:rectIsVisibleRectFor View:topView:] + 3239
    19 com.apple.AppKit 0x932e2041 -[NSView _recursiveDisplayRectIfNeededIgnoringOpacity:isVisibleRect:rectIsVisibleRectFor View:topView:] + 3239
    20 com.apple.AppKit 0x932e2041 -[NSView _recursiveDisplayRectIfNeededIgnoringOpacity:isVisibleRect:rectIsVisibleRectFor View:topView:] + 3239
    21 com.apple.AppKit 0x932e2041 -[NSView _recursiveDisplayRectIfNeededIgnoringOpacity:isVisibleRect:rectIsVisibleRectFor View:topView:] + 3239
    22 com.apple.AppKit 0x932e0b78 -[NSThemeFrame _recursiveDisplayRectIfNeededIgnoringOpacity:isVisibleRect:rectIsVisibleRectFor View:topView:] + 290
    23 com.apple.AppKit 0x932e0362 -[NSView _displayRectIgnoringOpacity:isVisibleRect:rectIsVisibleRectForView:] + 523
    24 com.apple.AppKit 0x932dfc8e -[NSView displayIfNeeded] + 439
    25 com.apple.AppKit 0x932dfa32 -[NSWindow displayIfNeeded] + 168
    26 com.apple.mail 0x000290f9 0x1000 + 164089
    27 com.apple.AppKit 0x9332fd6c _handleWindowNeedsDisplay + 206
    28 com.apple.CoreFoundation 0x9082ed6e __CFRunLoopDoObservers + 342
    29 com.apple.CoreFoundation 0x9082de10 CFRunLoopRunSpecific + 827
    30 com.apple.CoreFoundation 0x9082dace CFRunLoopRunInMode + 61
    31 com.apple.HIToolbox 0x92dde8d8 RunCurrentEventLoopInMode + 285
    32 com.apple.HIToolbox 0x92dddf19 ReceiveNextEventCommon + 184
    33 com.apple.HIToolbox 0x92ddde39 BlockUntilNextEventMatchingListInMode + 81
    34 com.apple.AppKit 0x93264465 _DPSNextEvent + 572
    35 com.apple.AppKit 0x93264056 -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 137
    36 com.apple.AppKit 0x9325dddb -[NSApplication run] + 512
    37 com.apple.AppKit 0x93251d2f NSApplicationMain + 573
    38 com.apple.mail 0x00094df2 0x1000 + 605682
    39 com.apple.mail 0x00094d19 0x1000 + 605465
    Thread 1:
    0 libSystem.B.dylib 0x90009bf7 machmsgtrap + 7
    1 com.apple.CoreFoundation 0x9082e2b3 CFRunLoopRunSpecific + 2014
    2 com.apple.CoreFoundation 0x9082dace CFRunLoopRunInMode + 61
    3 com.apple.Foundation 0x92825d3a -[NSRunLoop runMode:beforeDate:] + 182
    4 com.apple.Foundation 0x92825c36 -[NSRunLoop run] + 75
    5 com.apple.MessageFramework 0x9949f5af +[_NSSocket _runIOThread] + 97
    6 com.apple.Foundation 0x927f02e0 forkThreadForFunction + 123
    7 libSystem.B.dylib 0x90024147 pthreadbody + 84
    Thread 2:
    0 libSystem.B.dylib 0x9001a0ec select + 12
    1 libSystem.B.dylib 0x90024147 pthreadbody + 84
    Thread 3:
    0 libSystem.B.dylib 0x90048e07 semaphoretimedwait_signaltrap + 7
    1 com.apple.Foundation 0x9288ed30 FCONDITION_WAITTIMEOUT + 128
    2 com.apple.Foundation 0x9288ec7a -[NSConditionLock lockWhenCondition:beforeDate:] + 101
    3 com.apple.MessageFramework 0x9949a821 -[InvocationQueue _drainQueue] + 210
    4 com.apple.Foundation 0x927f02e0 forkThreadForFunction + 123
    5 libSystem.B.dylib 0x90024147 pthreadbody + 84
    Thread 4:
    0 libSystem.B.dylib 0x90048e07 semaphoretimedwait_signaltrap + 7
    1 com.apple.Foundation 0x9288ed30 FCONDITION_WAITTIMEOUT + 128
    2 com.apple.Foundation 0x9288ec7a -[NSConditionLock lockWhenCondition:beforeDate:] + 101
    3 com.apple.MessageFramework 0x9949a821 -[InvocationQueue _drainQueue] + 210
    4 com.apple.Foundation 0x927f02e0 forkThreadForFunction + 123
    5 libSystem.B.dylib 0x90024147 pthreadbody + 84
    Thread 5:
    0 libSystem.B.dylib 0x90048e07 semaphoretimedwait_signaltrap + 7
    1 ...apple.AddressBook.framework 0x94760646 -[ABRemoteImageLoader workLoop] + 158
    2 com.apple.Foundation 0x927f02e0 forkThreadForFunction + 123
    3 libSystem.B.dylib 0x90024147 pthreadbody + 84
    Thread 6:
    0 libSystem.B.dylib 0x90048e07 semaphoretimedwait_signaltrap + 7
    1 com.apple.Foundation 0x9288ed30 FCONDITION_WAITTIMEOUT + 128
    2 com.apple.Foundation 0x9288ec7a -[NSConditionLock lockWhenCondition:beforeDate:] + 101
    3 com.apple.MessageFramework 0x9949a821 -[InvocationQueue _drainQueue] + 210
    4 com.apple.Foundation 0x927f02e0 forkThreadForFunction + 123
    5 libSystem.B.dylib 0x90024147 pthreadbody + 84
    Thread 7:
    0 libSystem.B.dylib 0x90009bf7 machmsgtrap + 7
    1 com.apple.CoreFoundation 0x9082e2b3 CFRunLoopRunSpecific + 2014
    2 com.apple.CoreFoundation 0x9082dace CFRunLoopRunInMode + 61
    3 com.apple.Foundation 0x92825a0f +[NSURLConnection(NSURLConnectionInternal) _resourceLoadLoop:] + 259
    4 com.apple.Foundation 0x927f02e0 forkThreadForFunction + 123
    5 libSystem.B.dylib 0x90024147 pthreadbody + 84
    Thread 8:
    0 libSystem.B.dylib 0x90009bf7 machmsgtrap + 7
    1 com.apple.CoreFoundation 0x9082e2b3 CFRunLoopRunSpecific + 2014
    2 com.apple.CoreFoundation 0x9082dace CFRunLoopRunInMode + 61
    3 com.apple.Foundation 0x9284cbc2 +[NSURLCache _diskCacheSyncLoop:] + 206
    4 com.apple.Foundation 0x927f02e0 forkThreadForFunction + 123
    5 libSystem.B.dylib 0x90024147 pthreadbody + 84
    Thread 9:
    0 libSystem.B.dylib 0x90009bf7 machmsgtrap + 7
    1 com.apple.CoreFoundation 0x9082e2b3 CFRunLoopRunSpecific + 2014
    2 com.apple.CoreFoundation 0x9082dace CFRunLoopRunInMode + 61
    3 com.apple.Foundation 0x92825d3a -[NSRunLoop runMode:beforeDate:] + 182
    4 com.apple.Foundation 0x92825c36 -[NSRunLoop run] + 75
    5 com.apple.WebKit 0x94cbd529 +[WebFileDatabase _syncLoop:] + 198
    6 com.apple.Foundation 0x927f02e0 forkThreadForFunction + 123
    7 libSystem.B.dylib 0x90024147 pthreadbody + 84
    Thread 0 crashed with X86 Thread State (32-bit):
    eax: 0x00000007 ebx: 0x927faffb ecx: 0x90abffd0 edx: 0x162a03a0
    edi: 0x0000003b esi: 0x00000001 ebp: 0xbfffd078 esp: 0xbfffd008
    ss: 0x0000001f efl: 0x00010206 eip: 0x90a59380 cs: 0x00000017
    ds: 0x0000001f es: 0x0000001f fs: 0x00000000 gs: 0x00000037
    MacBook Pro 15"   Mac OS X (10.4.9)  

Maybe you are looking for

  • One apple tv and 2 macs:how to change primary for atv

    I have an ibook g4 with an almost full memory and a new iMac. Currently the ibook G4 is the primary computer for my apple tv. I want to make my newer iMac the primary computer for synching with my apple tv so all new content will go to it and not to

  • How many ipods can connect to one computer??...

    i have 3 ipods in my family... can we all connect to the same itunes account through 1 computer?? thanks!! Desktop   Windows XP   Desktop   Windows XP  

  • How do I get Time Machine to "see" my NAS device?

    I recently set up a Drobo 5N for NAS.  It works fine with my iMac.  That is, Time Machine on the desktop immediately found the storage device and appears to be backing up to it.  However, Time Machine on my Macbook Pros on my home network do not see

  • How to turn built-in camera on my Satellite A200?

    When I open my Camera Assistant Software and click on the camera icon it give me a error message asking to turn my camera on. I have looked within the software how to turn my camera but I cannot find any way how. Does anyone know where to look?

  • After update to Maverics, one can't delete older backups (on older OS) throu Time Machine

    After i updated one of my three macs to Maverics, i've stumbeled apon a "problem". One can' delete older backups, throu time mascine, that have been backuped using an elder OS (like Snow Leopard). You can see its's there on the timeline, but you can'