Mail.app Stripping File Extensions

Greetings,
I have had a very odd issue with Apple Mail stripping away file extensions from the end of attachments. Several folks I send to have issues opening these attachments and have to add the suffix onto the end of the filename (and yes they were on the end when sent). They are using both Macs and Windows boxes.
I have tried to correct the issue in numerous ways including:
- Defaulting Mail to send Windows friendly attachments
- Defaulting my OS to always show file extensions
- Trying numerous SMTP servers
- Trying both my .Mac account and Earthlink account
- Using different ISPs to send on all of the accounts and servers listed above
- Sending in both RTF and plain text messaging
The only way I have been successful in retaining the suffix has been to send through both the Earthlink and .Mac webmail services. The test file I have been using then arrives with no issues.
All of the above makes me pretty sure it is a Mail.app issue. I am about to install Entourage (ick) but would prefer to find a solution. After lots of searching I am throwing it out there to see if anyone else has had the same issue.
Any thoughts?
PPC iMac and MacBook Pro   Mac OS X (10.4.10)  

OK, here is the latest. Anyone else feel free to pipe in with possible solutions!
- Sending to a Mac and receiving in Mailsmith from Mail.app results in the file extension being stripped away. The person I sent to has no issues with anyone else sending her files
- Sending to the same Mac and using Mail instead of Mailsmith results in the extension being preserved.
- I set up Outlook Express on my Parallels partition and it seemed to preserve the extension when I sent it from Mail.
So it looks like there is some issue with Apple Mail and some e-mail clients. The ones I know I have had problems sending to are Mailsmith on Mac and Goldmine on Windows. At this point I am thinking it is not a server based problem.
If anyone has any possible solutions I would appreciate the input.

Similar Messages

  • Stripping File Extensions

    I need help stripping file extension.
    (Example)
    filename = filename (Good)
    filename.extension needs to become just filename
    filename.sub.extension needs to become filename.sub
    I need a function that will achieve this, because when saving
    files, I need to copy some additional files over that need to have
    the same name as the saved file. This is the last bug I need to fix
    in my app.

    You're awesome. Thanks so much for the example.
    Now I will be able to finally pull my application out of Beta
    and into Release Candidate.

  • Cannot attach files in Mail app - claims file is empty

    I have tried to attach several files to to an email through the mail app and when sent out they arrive as empty shells with the same filename.  If i try to drag the file into the window it will appear but the file is empty.  If I use the attach (paperclip) it simply does not appear at all. 
    I have tried to delete the /Library/Containers/com.apple.mail/Data/Library/Preferences/com.apple.mail.plist for it is no longer located in /Library/Preferences/com.apple.mail.plist. 
    I have tried a Time Machine Restore from several weeks ago but apparently it existed then too.  I have tried repairing permissions through Disk Utility.
    when attaching Console says this:
    4/13/13 8:54:24.941 AM sandboxd[729]: ([718]) Mail(718) deny file-read-xattr /Users/Username/Desktop/Test copy.JPG
    when i load the mail app i get this:
    4/13/13 8:53:49.465 AM Mail[718]: Keychain sandbox consume extension error: s=-1 p= Cannot allocate memory

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

  • How to strip file extension off a filename NSString ?

    To retrieve file extension from NSString, we use "pathExtension".
    To retrieve the filename from NSString without the extension we use ?

    9 views any nobodies helping ?
    Oh well...
    I've created this function to achieve this:
    -(NSString *) returnfile_name_without_theextension:(NSString *)filename
    NSString *filename_extension = [filename pathExtension];
    NSInteger filenameextensionlength = [filename_extension length];
    NSInteger filename_length = [filename length];
    filename_length = filename_length - (1 + filenameextensionlength);
    return [ filename substringWithRange:NSMakeRange(0, filename_length) ];
    Hope someone might find this useful.

  • Mail Adapter Change File Extension

    We have the receiver mail adapter setup to send the contents of a message to an internal email account. The adapter works and the message arrives as a soap.xml and payload.xml. The problem is that our mail system blocks the xml extension. Is there an easy way to switch the extensions from say xml to txt on the messages.
    It looks like the PayloadSwapBean module can change the content type, but I just want to alter the extensions. I know I could use an XSLT to convert the contents to html and then just send the message as an html email but I was hoping to avoid design changes.
    Regards

    J,
    Check note : 856599
    <i>Q: Can I choose the name of an attachment in the mail?
               A: Yes. Most mail clients use some heuristics based on some MIME headers to derive the name of an attachment. The MIME headers involved in most heuristics are Content-Type, Content-Description, and Content-Disposition. When you create an XI message, the XI payload name is automatically set in the Content-Description. If you want to change or set all of these headers, you can use the MessageTransformBean module (Note 793922) in the adapter framework.
                Related questions: How can I set the file name of a mail attachment?
    Q: How can I set the file name of a mail attachment?
                There are several MIME headers that play a role in how the client retrieves the file name of an attachment. Unfortunately, this behavior differs among various mail clients. The reason for this inconsistent behavior comes from the fact that this mechanism has been extended incrementally. The old way is to use the name parameter in the Content-Type header as specified in RFC1341. For example, you can set the content type of an XML attachment as:
               Content-Type: application/xml; name="abc.xml"
                RFC1521 discourages the use of this name parameter in anticipation of the new header Content-Disposition, which is defined in RFC1806.
                With this Content-Disposition header, you can set the file name as:
               Content-Disposition: attachment; filename="abc.xml"
                Some clients may show the Content-Description value as the file name. The Content-Description header is typically used to associate some descriptive information to an attachment (RFC1341) as in
               Content-Description: my xml file
                To avoid potential interpretation problems, it is recommended to combine the use of these headers.
    How to use MailPackage in Receiver?
                A: When a mail message is sent out by the receiver adapter, normally the mail header information such as "From", "To", "Subject" are taken from the channel configuration. In order to dynamically set these headers, you can use the MailPackage mode. In this case, the XI payload must be formated in the Mail Package XML format. The format of this mail package XML document is defined in note 748024.</i>
    Use the mail Package and the set the <b>Content-Disposition </b> with the file name and extension.
    For info on how to use this mail package, take a look at this blog too,
    /people/michal.krawczyk2/blog/2005/03/07/mail-adapter-xi--how-to-implement-dynamic-mail-address
    Regards,
    Bhavesh

  • Saving attachments on Snow leopard mail loses file extension when saving over an existing document

    Saving attachments on Snow leopard mail loses the file extension when clicking on an existing file to copy the name. Is there something I can switch on in the preferences to fix this?

    I work for a publishing company where our clients send their copy to us in Word documents. We might have several versions sent to us before the final version comes in.
    It is instances like this where we want to overwrite a document on the server with the most up-to-date version (which is usually named differently to the original file). We really don't want to clutter the folder with lots of different revisions. The quick way to do this is to click on the document we are replacing (this copies the document name). Previous versions of OSX Mail used to keep the file extension but Snow Leopard seems to remove it.
    It's annoying as there is no particular logic to this. We just have to manually type ".doc" at the end of the document.
    Incidentally, this happens with any attachment file type.

  • Mail.app crashes entire system (etc)

    Hi all,
    One of our photography workstations had an issue with the hard disk recently that meant Apple support took us through reinstalling OS X Snow Leopard.  We then restored the main user's profile due to the profile becoming unusable during the reinstallation.
    Since then, various apps crash the entire system, Mail.app being one of them.  'Crash', in this case, means the spinning beach ball that never goes away, Finder is dead and moving the mouse over the Apple in the top left corner just shows the beach ball - 'Force Quit' is therefore inaccessible..  The Dock is also dead, meaning I can't kill Mail.app from there.  At this point the only option is to hold down the power switch and restart the system completely.
    So far, this is what I've tried.
    -     Updating all system components to the latest versions
    -     Updated all installed apps so they're up-to-date
    -     Removing Mail.app and reinstalling it from the DVD (didn't work - OS X just said the version isn't compatible and I had to restore Mail.app from a backup)
    -     Removed all Mail.app files and settings from ~/Library/Application Support etc, including /Library/Application Support, ~/Library/Preferences and /Library/Preferences.
    -     Installed Postbox.app - even that doesn't work.  Starting the app kills OS X and requires the power-button restart ... this one confuses me as it's different app (it's almost like port 25 traffic is killing the OS, although I don't see how that's possible)
    All that said, a new user profile *does* work.  That tells me that Mail.app itself is OK and that it's a profile issue.  However, I did delete all the Mail.app profile files that I could find so I'm assuming (yes, I know assumptions are bad) that the profile Mail.app created after that is actually brand new.
    However, I don't want to create a whole new profile unless it's absolutely last resort - the user profile has extensive customisation for screen calibration, printer profiles etc, all done by a very expensive external company ... I'd rather not pay them to do it all again unless it's totally unavoidable.
    Can anyone suggest any files that Mail.app might be using that I've missed?  It seems odd that Postbox.app does the same thing as Mail.app, as does the Office 2011 updating application (i.e. all kill OS X/Finder).
    When the first problem happened, the hard disk starting saying I/O error but Apple is refusing to replace the drive, despite this machine having Apple Care ...
    Any help would be much appreciated.
    Thanks,
    Chris

    However, I don't want to create a whole new profile unless it's absolutely last resort - the user profile has extensive customisation for screen calibration, printer profiles etc, all done by a very expensive external company ... I'd rather not pay them to do it all again unless it's totally unavoidable.
    I did the bolding for emphasis.  When I see the words "extensive customisation" I think those become the first suspects.
    Can anyone suggest any files that Mail.app might be using that I've missed?  It seems odd that Postbox.app does the same thing as Mail.app, as does the Office 2011 updating application (i.e. all kill OS X/Finder).
    The primary folders and files associated with Mail.app are:
    ~/Library/Mail
    ~/Library/Mail /Preferences/com.apple.mail.plist       
    ~/Library/Mail /Preferences/ByHost/com.apple.mail.XXXX-XXXX-XXXX.plist
    where the X's are letters and digits.
    Note that the fact that other apps are misbehaving should tell you that the problem is not with mail but more systemic.
    When the first problem happened, the hard disk starting saying I/O error but Apple is refusing to replace the drive, despite this machine having Apple Care ...
    Run Disk Utility and repair/verify your drive.  This is another red flag.

  • ".saved" file extension

    Does anyone know how OSX can create a file with the ending ".saved"?
    Background:
    Somehow my inlaws deleted their Mail.app preference file (mail created a new one and became defaulted, losing their mail accounts) but the old one was still in the Library with an added extension: "com.apple.mail.plist.saved". I can't figure out what they did, nor how to recreate this event. Using Copy or Archive do not create this extension. I deleted the new preference file, removed the .saved extention from the old one, and the Mail was back to normal. All I know is it happened while working on a Pages document that they were intending to email.

    Thank you so much Andy. That really takes all the mystery out of it and now I know exactly what happened, as all the pieces and the things they said are now making sense.
    After Mail crashed and got defaulted it asked for the password for their defunct .Mac mail account (automatically imported from the .Mac prefs). They went to the Keychain to find the password and somehow ended up deleting the password to iChat (and .Mac) as well.
    I told them it's time to upgrade to Leopard so I can get TimeMachine up and running. I also may make them write their passwords in a .... BOOK .... and hide the Keychain app!
    Thanks BDAqua. The first thing I did was a permission repair and restart.

  • Mac Mail.app download problems

    Hello,
    I think I have tried everything.  I am currently trying to do the simplest tax ever.  I want my mail downloads to go to my downloads folder that I see in my downloads folders, the same folder safari does fine downloading too.  However when I click to download something in my mail like a photo or pdf.  It pops up my "Mail Downloads finder" so I went into the mail preferences and changed it to a different folder.  However, it changed nothing.  It sill downloads to the same folder hidden away in a library. 
    Not sure what to do, about to go to the apple store and ask them whats up.
    Anyone have any other advice for me.

    I think I've figured this out. I still have to "sneak up" on my .MAC prefs... but they seem to be working now. In addition, I deleted the Mail.app plist files, which solved my Mail problem.

  • Remote Search in Mail.app

    I have an interesting problem I can't figure out how to solve easily. I have about 26GB of old emails on my older MacBook Pro that I search through occasionally. I now have a MacBook Air that I would like to use as my primary "roaming" computer (relegating my MBP to be my work desktop). I would like to have search access to all my old emails but don't want to waste 26GB out of the 120GB SSD on something I only occasionally search.
    Is there any way for me to search through these old emails "remotely" from my MBA's Mail.app (mbox files would be stored on the MBP or another "server")? Or any other ways around this problem (eg, can I save a smaller Spotlight index locally on my MBA but not the full files)? And please don't tell me "ssh + grep". That's not very Mac-like.

    the ONLY way to search mail messages from Mail is by importing them into Mail. no way around that. but you can search them from finder without importing. nothing needs to be done for that. just mount the remote computer via file sharing and do a finder or spotlight search and it will search on the remote computer when you switch the search location to shared. to restrict the search to Mail only preface the search string with kind:message

  • Apple Mail.app in Leopard removes HTML formatting

    Hi,
    This is not something I see universally, but in many of my mails (Exchange account, company ID, hence, can't post screenshots), sometimes, Mail.app strips the html formatting! Sometimes, something as simple as a table is missing. All I see is the text that would have been inside it. The background colours, etc in certain mails also sometimes go missing.
    Only when someone replies to the same mail and has the original mail included, do I see the formatting!
    Also, when I open my mailbox in Thunderbird or a browser, I can see the formatting correctly in the same mail!
    Am I missing something here?
    Thanks,
    Anup

    Mail > Preferences > Composing.
    You have the option there to send and receive in plain text which will remove all formatting, maybe selected...Change to what you wish to happen

  • Mail.app crashes after startup

    since some days I can't open mail.app on my MBP anymore. the configuration is shared via .me to another mac in the office, there I have no problems whatsoever (crossing my fingers).
    I rebooted several times, all updates are installed. tired to rebuild the envelope index, but mail.app crashes also during the rebuild process.
    below is the stacktrace, thanks for any hints!
    Florian
    Process: Mail [713]
    Path: /Applications/Mail.app/Contents/MacOS/Mail
    Identifier: com.apple.mail
    Version: 3.5 (929.4)
    Build Info: Mail-9290400~5
    Code Type: X86 (Native)
    Parent Process: launchd [66]
    Date/Time: 2008-09-24 22:56:06.796 +0200
    OS Version: Mac OS X 10.5.5 (9F33)
    Report Version: 6
    Exception Type: EXCBADACCESS (SIGBUS)
    Exception Codes: KERNPROTECTIONFAILURE at 0x0000000000000000
    Crashed Thread: 11
    Application Specific Information:
    -[LibraryIMAPStore openSynchronouslyUpdatingMetadata:]
    -[IMAPGateway _allowClientOperationThrough:]
    -[MessageContentController _fetchContentsForMessage:fromStore:withViewingState:]
    Thread 0:
    0 libSystem.B.dylib 0x911364a6 machmsgtrap + 10
    1 libSystem.B.dylib 0x9113dc9c mach_msg + 72
    2 com.apple.CoreFoundation 0x949e60ce CFRunLoopRunSpecific + 1790
    3 com.apple.CoreFoundation 0x949e6cf8 CFRunLoopRunInMode + 88
    4 com.apple.HIToolbox 0x93e0d480 RunCurrentEventLoopInMode + 283
    5 com.apple.HIToolbox 0x93e0d299 ReceiveNextEventCommon + 374
    6 com.apple.HIToolbox 0x93e0d10d BlockUntilNextEventMatchingListInMode + 106
    7 com.apple.AppKit 0x926173ed _DPSNextEvent + 657
    8 com.apple.AppKit 0x92616ca0 -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 128
    9 com.apple.AppKit 0x9260fcdb -[NSApplication run] + 795
    10 com.apple.AppKit 0x925dcf14 NSApplicationMain + 574
    11 com.apple.mail 0x000fa9a2 0x1000 + 1022370
    Thread 1:
    0 libSystem.B.dylib 0x91141a72 close$UNIX2003 + 10
    1 ...apple.AddressBook.framework 0x9440e553 +[ABAddressBook nts_SharedAddressBook] + 245
    2 ...apple.AddressBook.framework 0x9440e3f1 +[ABAddressBook nts_CreateSharedAddressBook] + 65
    3 ...apple.AddressBook.framework 0x9440e24c +[ABAddressBook sharedAddressBook] + 123
    4 com.apple.datadetectorscore 0x91e6d73b DDABSourceLoadTable + 449
    5 com.apple.datadetectorscore 0x91e6b8f5 DDLookupTableLoadContactTableWithName + 175
    6 com.apple.datadetectorscore 0x91e6bc4e DDLookupTableCreateFromCacheData + 401
    7 com.apple.datadetectorscore 0x91e6f5ed DDScannerCreateWithFileName + 979
    8 com.apple.datadetectors 0x90dc8230 -[DDScannerComputationOperation main] + 317
    9 com.apple.Foundation 0x91438424 -[NSOperation start] + 772
    10 com.apple.Foundation 0x91438112 __runop + 34
    11 libSystem.B.dylib 0x911a01f7 pthreadwqthread + 331
    12 libSystem.B.dylib 0x911a00aa start_wqthread + 30
    Thread 2:
    Thread 3:
    0 libSystem.B.dylib 0x91136506 semaphoretimedwait_signaltrap + 10
    1 libSystem.B.dylib 0x9116884f pthread_condwait + 1244
    2 libSystem.B.dylib 0x9116a0d3 pthreadcond_timedwait_relativenp + 47
    3 com.apple.Foundation 0x913edb1c -[NSCondition waitUntilDate:] + 236
    4 com.apple.Foundation 0x913ed930 -[NSConditionLock lockWhenCondition:beforeDate:] + 144
    5 com.apple.MessageFramework 0x003d6ee3 -[InvocationQueue _drainQueue] + 317
    6 com.apple.Foundation 0x913a7bad -[NSThread main] + 45
    7 com.apple.Foundation 0x913a7754 _NSThread__main_ + 308
    8 libSystem.B.dylib 0x911676f5 pthreadstart + 321
    9 libSystem.B.dylib 0x911675b2 thread_start + 34
    Thread 4:
    0 libSystem.B.dylib 0x9113d68e _semwaitsignal + 10
    1 libSystem.B.dylib 0x9116836d pthreadcondwait$UNIX2003 + 73
    2 com.apple.QuartzCore 0x90a88bb9 fefragmentthread + 54
    3 libSystem.B.dylib 0x911676f5 pthreadstart + 321
    4 libSystem.B.dylib 0x911675b2 thread_start + 34
    Thread 5:
    0 libSystem.B.dylib 0x91136506 semaphoretimedwait_signaltrap + 10
    1 libSystem.B.dylib 0x9116884f pthread_condwait + 1244
    2 libSystem.B.dylib 0x9116a0d3 pthreadcond_timedwait_relativenp + 47
    3 com.apple.Foundation 0x913edb1c -[NSCondition waitUntilDate:] + 236
    4 com.apple.MessageFramework 0x0031f6af -[IMAPClientOperationQueue waitUntilOperationIsFinished:] + 470
    5 com.apple.MessageFramework 0x0031f48f -[IMAPGateway waitUntilClientOperationIsFinished:] + 500
    6 com.apple.MessageFramework 0x0031a9f5 -[IMAPGateway addClientOperation:toQueueAndWaitUntilFinished:] + 268
    7 com.apple.MessageFramework 0x0031a0a8 -[IMAPConnection _fetchCapabilitiesIfNeeded] + 271
    8 com.apple.MessageFramework 0x00319f07 -[IMAPConnection capabilities] + 45
    9 com.apple.MessageFramework 0x00319b8f -[IMAPConnection _loginWithUsername:password:] + 58
    10 com.apple.MessageFramework 0x00319664 -[IMAPConnection authenticateUsingAccount:] + 231
    11 com.apple.MessageFramework 0x002f7ae8 -[IMAPAccount _connectAndAuthenticate:] + 692
    12 com.apple.MessageFramework 0x00323bda -[IMAPConnectionPool _validateAndCheckOutGateway:forMailbox:allowReconnect:newGateway:] + 409
    13 com.apple.MessageFramework 0x004ad76c -[IMAPConnectionPool _checkOutNewGatewayWithConnection:forMailbox:] + 358
    14 com.apple.MessageFramework 0x00375167 -[IMAPConnectionPool checkOutGatewayForMailbox:newConnection:highPriority:waitIndefinitely:] + 342
    15 com.apple.MessageFramework 0x002f5dae -[IMAPAccount _getPotentialGatewayForMailbox:options:createdNewConnection:needsSelect:] + 536
    16 com.apple.MessageFramework 0x002f590e -[IMAPAccount _gatewayForMailboxUid:name:options:] + 160
    17 com.apple.MessageFramework 0x002f57b0 -[IMAPAccount gatewayForStore:options:] + 159
    18 com.apple.MessageFramework 0x002f55e6 -[LibraryIMAPStore _gatewayCreateIfNeeded:options:] + 159
    19 com.apple.MessageFramework 0x002f13d2 -[LibraryIMAPStore openSynchronouslyUpdatingMetadata:withOptions:] + 143
    20 com.apple.MessageFramework 0x002f133d -[LibraryIMAPStore openSynchronouslyUpdatingMetadata:] + 50
    21 com.apple.CoreFoundation 0x94a65a7d _invoking__ + 29
    22 com.apple.CoreFoundation 0x94a65468 -[NSInvocation invoke] + 136
    23 com.apple.MessageFramework 0x003d74c8 -[MonitoredInvocation invoke] + 409
    24 com.apple.MessageFramework 0x003d70aa -[InvocationQueue _drainQueue] + 772
    25 com.apple.Foundation 0x913a7bad -[NSThread main] + 45
    26 com.apple.Foundation 0x913a7754 _NSThread__main_ + 308
    27 libSystem.B.dylib 0x911676f5 pthreadstart + 321
    28 libSystem.B.dylib 0x911675b2 thread_start + 34
    Thread 6:
    0 libSystem.B.dylib 0x91136506 semaphoretimedwait_signaltrap + 10
    1 libSystem.B.dylib 0x9116884f pthread_condwait + 1244
    2 libSystem.B.dylib 0x9116a0d3 pthreadcond_timedwait_relativenp + 47
    3 com.apple.Foundation 0x913edb1c -[NSCondition waitUntilDate:] + 236
    4 com.apple.Foundation 0x913ed930 -[NSConditionLock lockWhenCondition:beforeDate:] + 144
    5 com.apple.MessageFramework 0x003d6ee3 -[InvocationQueue _drainQueue] + 317
    6 com.apple.Foundation 0x913a7bad -[NSThread main] + 45
    7 com.apple.Foundation 0x913a7754 _NSThread__main_ + 308
    8 libSystem.B.dylib 0x911676f5 pthreadstart + 321
    9 libSystem.B.dylib 0x911675b2 thread_start + 34
    Thread 7:
    0 libSystem.B.dylib 0x911364a6 machmsgtrap + 10
    1 libSystem.B.dylib 0x9113dc9c mach_msg + 72
    2 com.apple.CoreFoundation 0x949e60ce CFRunLoopRunSpecific + 1790
    3 com.apple.CoreFoundation 0x949e6cf8 CFRunLoopRunInMode + 88
    4 com.apple.Foundation 0x913dc135 -[NSRunLoop(NSRunLoop) runMode:beforeDate:] + 213
    5 com.apple.Foundation 0x913e8254 -[NSRunLoop(NSRunLoop) run] + 84
    6 com.apple.MessageFramework 0x002f9f19 +[_NSSocket _runIOThread] + 98
    7 com.apple.Foundation 0x913a7bad -[NSThread main] + 45
    8 com.apple.Foundation 0x913a7754 _NSThread__main_ + 308
    9 libSystem.B.dylib 0x911676f5 pthreadstart + 321
    10 libSystem.B.dylib 0x911675b2 thread_start + 34
    Thread 8:
    0 libSystem.B.dylib 0x911865e2 select$DARWIN_EXTSN + 10
    1 libSystem.B.dylib 0x911676f5 pthreadstart + 321
    2 libSystem.B.dylib 0x911675b2 thread_start + 34
    Thread 9:
    0 libSystem.B.dylib 0x91136506 semaphoretimedwait_signaltrap + 10
    1 libSystem.B.dylib 0x9116884f pthread_condwait + 1244
    2 libSystem.B.dylib 0x9116a0d3 pthreadcond_timedwait_relativenp + 47
    3 com.apple.Foundation 0x913edb1c -[NSCondition waitUntilDate:] + 236
    4 com.apple.Foundation 0x913ed930 -[NSConditionLock lockWhenCondition:beforeDate:] + 144
    5 com.apple.MessageFramework 0x003d6ee3 -[InvocationQueue _drainQueue] + 317
    6 com.apple.Foundation 0x913a7bad -[NSThread main] + 45
    7 com.apple.Foundation 0x913a7754 _NSThread__main_ + 308
    8 libSystem.B.dylib 0x911676f5 pthreadstart + 321
    9 libSystem.B.dylib 0x911675b2 thread_start + 34
    Thread 10:
    0 libSystem.B.dylib 0x91136506 semaphoretimedwait_signaltrap + 10
    1 libSystem.B.dylib 0x9116884f pthread_condwait + 1244
    2 libSystem.B.dylib 0x9116a0d3 pthreadcond_timedwait_relativenp + 47
    3 com.apple.Foundation 0x913edb1c -[NSCondition waitUntilDate:] + 236
    4 com.apple.Foundation 0x913ed930 -[NSConditionLock lockWhenCondition:beforeDate:] + 144
    5 com.apple.MessageFramework 0x003d6ee3 -[InvocationQueue _drainQueue] + 317
    6 com.apple.Foundation 0x913a7bad -[NSThread main] + 45
    7 com.apple.Foundation 0x913a7754 _NSThread__main_ + 308
    8 libSystem.B.dylib 0x911676f5 pthreadstart + 321
    9 libSystem.B.dylib 0x911675b2 thread_start + 34
    Thread 11 Crashed:
    0 libSystem.B.dylib 0x9113dd9e pthreadmutexlock + 18
    1 com.apple.JavaScriptCore 0x9436c1c5 ***::callOnMainThread(void ()(void), void*) + 37
    2 com.apple.WebCore 0x951d961e WebCoreObjCScheduleDeallocateOnMainThread + 94
    3 com.apple.WebCore 0x94e0b0ac -[WebCoreSharedBufferData dealloc] + 60
    4 com.apple.Foundation 0x913a320f NSPopAutoreleasePool + 431
    5 com.apple.MessageFramework 0x0030bf87 -[MimeBody webArchive] + 233
    6 com.apple.MessageFramework 0x0030bc06 -[WebMessageDocument initWithMimePart:] + 88
    7 com.apple.mail 0x00045c75 0x1000 + 281717
    8 com.apple.mail 0x0004173f 0x1000 + 263999
    9 com.apple.CoreFoundation 0x94a65a7d _invoking__ + 29
    10 com.apple.CoreFoundation 0x94a65468 -[NSInvocation invoke] + 136
    11 com.apple.MessageFramework 0x003d74c8 -[MonitoredInvocation invoke] + 409
    12 com.apple.MessageFramework 0x003d70aa -[InvocationQueue _drainQueue] + 772
    13 com.apple.Foundation 0x913a7bad -[NSThread main] + 45
    14 com.apple.Foundation 0x913a7754 _NSThread__main_ + 308
    15 libSystem.B.dylib 0x911676f5 pthreadstart + 321
    16 libSystem.B.dylib 0x911675b2 thread_start + 34
    Thread 12:
    0 libSystem.B.dylib 0x91136506 semaphoretimedwait_signaltrap + 10
    1 libSystem.B.dylib 0x9116884f pthread_condwait + 1244
    2 libSystem.B.dylib 0x9116a0d3 pthreadcond_timedwait_relativenp + 47
    3 com.apple.Foundation 0x913edb1c -[NSCondition waitUntilDate:] + 236
    4 com.apple.Foundation 0x913ed930 -[NSConditionLock lockWhenCondition:beforeDate:] + 144
    5 com.apple.MessageFramework 0x003d6ee3 -[InvocationQueue _drainQueue] + 317
    6 com.apple.MessageFramework 0x0031b8e4 -[MonitoredInvocationQueue _drainQueue] + 261
    7 com.apple.Foundation 0x913a7bad -[NSThread main] + 45
    8 com.apple.Foundation 0x913a7754 _NSThread__main_ + 308
    9 libSystem.B.dylib 0x911676f5 pthreadstart + 321
    10 libSystem.B.dylib 0x911675b2 thread_start + 34
    Thread 13:
    0 libSystem.B.dylib 0x91136506 semaphoretimedwait_signaltrap + 10
    1 libSystem.B.dylib 0x9116884f pthread_condwait + 1244
    2 libSystem.B.dylib 0x9116a0d3 pthreadcond_timedwait_relativenp + 47
    3 com.apple.Foundation 0x913edb1c -[NSCondition waitUntilDate:] + 236
    4 com.apple.Foundation 0x913ed930 -[NSConditionLock lockWhenCondition:beforeDate:] + 144
    5 com.apple.MessageFramework 0x003d6ee3 -[InvocationQueue _drainQueue] + 317
    6 com.apple.MessageFramework 0x0031b8e4 -[MonitoredInvocationQueue _drainQueue] + 261
    7 com.apple.Foundation 0x913a7bad -[NSThread main] + 45
    8 com.apple.Foundation 0x913a7754 _NSThread__main_ + 308
    9 libSystem.B.dylib 0x911676f5 pthreadstart + 321
    10 libSystem.B.dylib 0x911675b2 thread_start + 34
    Thread 14:
    0 libSystem.B.dylib 0x911364a6 machmsgtrap + 10
    1 libSystem.B.dylib 0x9113dc9c mach_msg + 72
    2 com.apple.CoreFoundation 0x949e60ce CFRunLoopRunSpecific + 1790
    3 com.apple.CoreFoundation 0x949e6cf8 CFRunLoopRunInMode + 88
    4 com.apple.MessageFramework 0x002fd06e _handleRequestWithTimeout + 2163
    5 com.apple.MessageFramework 0x00301955 -[_NSSocket readBytes:length:error:] + 154
    6 com.apple.MessageFramework 0x003014df -[Connection _readBytesFromSocketIntoBuffer:amount:requireAllBytes:error:] + 89
    7 com.apple.MessageFramework 0x0030139a -[Connection _fillBuffer:] + 853
    8 com.apple.MessageFramework 0x00300f60 -[Connection _readLineIntoData:error:] + 70
    9 com.apple.MessageFramework 0x00300ed8 -[IMAPConnection _readLineIntoData:error:] + 71
    10 com.apple.MessageFramework 0x00300d60 -[IMAPConnection(MFPrivate) _readDataOfLength:intoData:error:] + 155
    11 com.apple.MessageFramework 0x003008ae -[IMAPResponse initWithConnection:error:] + 370
    12 com.apple.MessageFramework 0x003006fb -[IMAPConnection _copyNextServerResponse:] + 79
    13 com.apple.MessageFramework 0x003fa8db -[IMAPConnection _copyNextTaggedOrContinuationResponseForCommand:exists:] + 201
    14 com.apple.MessageFramework 0x0031d084 -[IMAPConnection(MFPrivate) _responseFromSendingOperation:] + 1126
    15 com.apple.MessageFramework 0x003faad4 -[IMAPConnection executeCapability:] + 45
    16 com.apple.MessageFramework 0x0031be9d -[IMAPGateway _allowClientOperationThrough:] + 1256
    17 com.apple.CoreFoundation 0x94a65a7d _invoking__ + 29
    18 com.apple.CoreFoundation 0x94a65468 -[NSInvocation invoke] + 136
    19 com.apple.MessageFramework 0x003d70aa -[InvocationQueue _drainQueue] + 772
    20 com.apple.MessageFramework 0x0031b8e4 -[MonitoredInvocationQueue _drainQueue] + 261
    21 com.apple.Foundation 0x913a7bad -[NSThread main] + 45
    22 com.apple.Foundation 0x913a7754 _NSThread__main_ + 308
    23 libSystem.B.dylib 0x911676f5 pthreadstart + 321
    24 libSystem.B.dylib 0x911675b2 thread_start + 34
    Thread 11 crashed with X86 Thread State (32-bit):
    eax: 0x00000000 ebx: 0x9113dd9d ecx: 0x159080f8 edx: 0x159080fc
    edi: 0x00000000 esi: 0xa04c04f0 ebp: 0xb0567808 esp: 0xb05677d0
    ss: 0x0000001f efl: 0x00010282 eip: 0x9113dd9e cs: 0x00000017
    ds: 0x0000001f es: 0x0000001f fs: 0x0000001f gs: 0x00000037
    cr2: 0x00000000
    Binary Images:
    0x1000 - 0x270ff3 com.apple.mail 3.5 (929.4) <d72931e08460e1473c4bb95348f88e3d> /Applications/Mail.app/Contents/MacOS/Mail
    0x2df000 - 0x534ff3 com.apple.MessageFramework 3.5 (929.2) <585a160bbb2a8db85a98946514a483fa> /System/Library/Frameworks/Message.framework/Versions/B/Message
    0x689000 - 0x68bfff com.apple.ExceptionHandling 1.5 (10) /System/Library/Frameworks/ExceptionHandling.framework/Versions/A/ExceptionHand ling
    0x692000 - 0x6b6fe7 com.apple.speech.LatentSemanticMappingFramework 2.6.4 (2.6.4) <1591e65449707141112554274c637e5a> /System/Library/Frameworks/LatentSemanticMapping.framework/Versions/A/LatentSem anticMapping
    0x15c00000 - 0x15dd0fff com.apple.RawCamera.bundle 2.0.9 (2.0.9) <5abad5816603201792f59c4f9715ebe4> /System/Library/CoreServices/RawCamera.bundle/Contents/MacOS/RawCamera
    0x1647d000 - 0x16482ff3 libCGXCoreImage.A.dylib ??? (???) <31761f6461b8dd390dc4df480b1fb564> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCGXCoreImage.A.dylib
    0x167ad000 - 0x167b2fff com.apple.DictionaryServiceComponent 1.1 (1.1) <8edc1180f52db18e9ddfb4e95debe61b> /System/Library/Components/DictionaryService.component/Contents/MacOS/Dictionar yService
    0x167e0000 - 0x167e1fe1 com.apple.textencoding.unicode 2.2 (2.2) <542f2b8930d6bdf16c318ffea541acab> /System/Library/TextEncodings/Unicode Encodings.bundle/Contents/MacOS/Unicode Encodings
    0x8fe00000 - 0x8fe2da53 dyld 96.2 (???) <7af47d3b00b2268947563c7fa8c59a07> /usr/lib/dyld
    0x90003000 - 0x900e8ff3 com.apple.CoreData 100.1 (186) <8e28162ef2288692615b52acc01f8b54> /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
    0x900e9000 - 0x900f4fe7 libCSync.A.dylib ??? (???) <86d2f2e167ba6f74f45a186f5c7f8980> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCSync.A.dylib
    0x900f5000 - 0x90791fff com.apple.CoreGraphics 1.351.33 (???) <481a77e81d9e53589a05e80cfa90bbb5> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/CoreGraphics
    0x90792000 - 0x907dcfe1 com.apple.securityinterface 3.0 (32532) <f521dae416ce7a3bdd594b0d4e2fb517> /System/Library/Frameworks/SecurityInterface.framework/Versions/A/SecurityInter face
    0x907dd000 - 0x9082cfff com.apple.QuickLookUIFramework 1.3 (170.7) /System/Library/PrivateFrameworks/QuickLookUI.framework/Versions/A/QuickLookUI
    0x9082d000 - 0x90843fe7 com.apple.CoreVideo 1.5.1 (1.5.1) <001910004257f1386724398f584b30b5> /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
    0x90844000 - 0x90852ffd libz.1.dylib ??? (???) <5ddd8539ae2ebfd8e7cc1c57525385c7> /usr/lib/libz.1.dylib
    0x90853000 - 0x90933fff com.apple.syncservices 3.1 (389.7) <b3020e445b8987ea77eeaf918e48c351> /System/Library/Frameworks/SyncServices.framework/Versions/A/SyncServices
    0x90934000 - 0x90958fff libxslt.1.dylib ??? (???) <4933ddc7f6618743197aadc85b33b5ab> /usr/lib/libxslt.1.dylib
    0x90959000 - 0x90993fe7 com.apple.coreui 1.2 (62) /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
    0x90994000 - 0x90d31fe7 com.apple.QuartzCore 1.5.5 (1.5.5) <82435993614a3fff1236be18f82188bf> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
    0x90d32000 - 0x90dbcfe3 com.apple.DesktopServices 1.4.7 (1.4.7) <d16642ba22c32f67be793ebfbe67ca3a> /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/Desk topServicesPriv
    0x90dbd000 - 0x90dc5fff com.apple.DiskArbitration 2.2.1 (2.2.1) <75b0c8d8940a8a27816961dddcac8e0f> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
    0x90dc6000 - 0x90dddfff com.apple.datadetectors 1.0.1 (66.2) <b4676446cca8a1e4c28ca911026b7ceb> /System/Library/PrivateFrameworks/DataDetectors.framework/Versions/A/DataDetect ors
    0x90dde000 - 0x90de3ffc com.apple.KerberosHelper 1.1 (1.0) <86b1b4589baa557d067d07efc01890d2> /System/Library/PrivateFrameworks/KerberosHelper.framework/Versions/A/KerberosH elper
    0x90de4000 - 0x90e63ff5 com.apple.SearchKit 1.2.1 (1.2.1) <3140a605db2abf56b237fa156a08b28b> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchK it.framework/Versions/A/SearchKit
    0x90e64000 - 0x90e82ff3 com.apple.DirectoryService.Framework 3.5.5 (3.5.5) <4b81063df189bc462f012a169474fcbc> /System/Library/Frameworks/DirectoryService.framework/Versions/A/DirectoryServi ce
    0x90e83000 - 0x90e99fff com.apple.DictionaryServices 1.0.0 (1.0.0) <ad0aa0252e3323d182e17f50defe56fc> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Diction aryServices.framework/Versions/A/DictionaryServices
    0x90e9a000 - 0x90edcfef com.apple.NavigationServices 3.5.2 (163) <91844980804067b07a0b6124310d3f31> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/NavigationSer vices.framework/Versions/A/NavigationServices
    0x90edd000 - 0x90f5afef libvMisc.dylib ??? (???) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvMisc.dylib
    0x90f5b000 - 0x91093ff7 libicucore.A.dylib ??? (???) <3d8fdaf51c2664ab620f1688203caf26> /usr/lib/libicucore.A.dylib
    0x91094000 - 0x910a0ff9 com.apple.helpdata 1.0.1 (14.2) /System/Library/PrivateFrameworks/HelpData.framework/Versions/A/HelpData
    0x910a1000 - 0x91134ff3 com.apple.ApplicationServices.ATS 3.4 (???) <a96cd91dabc68545183c11de8f92c7e4> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/ATS
    0x91135000 - 0x91295ff3 libSystem.B.dylib ??? (???) <a12f397abf2285077b89bd726bff5b18> /usr/lib/libSystem.B.dylib
    0x91296000 - 0x9129dffe libbsm.dylib ??? (???) <d25c63378a5029648ffd4b4669be31bf> /usr/lib/libbsm.dylib
    0x9129e000 - 0x912aaffe libGL.dylib ??? (???) /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
    0x912ab000 - 0x912baffe com.apple.DSObjCWrappers.Framework 1.2.1 (1.2.1) <eac1c7b7c07ed3148c85934b6f656308> /System/Library/PrivateFrameworks/DSObjCWrappers.framework/Versions/A/DSObjCWra ppers
    0x912bb000 - 0x912bbffd com.apple.Accelerate 1.4.2 (Accelerate 1.4.2) /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
    0x912bc000 - 0x912d4fff com.apple.openscripting 1.2.8 (???) <572c7452d7e740e8948a5ad07a99602b> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting .framework/Versions/A/OpenScripting
    0x91378000 - 0x91396ff7 com.apple.QuickLookFramework 1.3 (170.7) /System/Library/Frameworks/QuickLook.framework/Versions/A/QuickLook
    0x91397000 - 0x9139cffb com.apple.DisplayServicesFW 2.0 (2.0) <8953865f53e940007a4e4ac5390d3c95> /System/Library/PrivateFrameworks/DisplayServices.framework/Versions/A/DisplayS ervices
    0x9139d000 - 0x91618fe7 com.apple.Foundation 6.5.6 (677.21) <5cfa0aa8b9b43193955d601ba6c2591a> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
    0x91619000 - 0x917e7fff com.apple.security 5.0.4 (34102) <f01d6cbd6a0f24f6c13952ed448e77d6> /System/Library/Frameworks/Security.framework/Versions/A/Security
    0x917e8000 - 0x917e8ff8 com.apple.Cocoa 6.5 (???) <e064f94d969ce25cb7de3cfb980c3249> /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
    0x917e9000 - 0x917f2fff 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
    0x918e8000 - 0x919e9fff com.apple.PubSub 1.0.3 (65.3) /System/Library/Frameworks/PubSub.framework/Versions/A/PubSub
    0x919ea000 - 0x91dfafef libBLAS.dylib ??? (???) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libBLAS.dylib
    0x91dfb000 - 0x91e37fff com.apple.DAVKit 3.0.4 (652) /System/Library/PrivateFrameworks/DAVKit.framework/Versions/A/DAVKit
    0x91e38000 - 0x91e86ff3 com.apple.datadetectorscore 1.0.2 (52.14) <bd3bfe061091be75ce6a27172b988702> /System/Library/PrivateFrameworks/DataDetectorsCore.framework/Versions/A/DataDe tectorsCore
    0x91e87000 - 0x91e8eff7 libCGATS.A.dylib ??? (???) <973c01cc14f3d673270e269ccfaec660> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCGATS.A.dylib
    0x91e8f000 - 0x91eb7ff7 com.apple.shortcut 1 (1.0) <057783867138902b52bc0941fedb74d1> /System/Library/PrivateFrameworks/Shortcut.framework/Versions/A/Shortcut
    0x91eb8000 - 0x92073ff3 com.apple.QuartzComposer 2.1 (106.5) <1a52b406a3f3d04387c822da4a93c245> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzCompose r.framework/Versions/A/QuartzComposer
    0x92074000 - 0x920aafef libtidy.A.dylib ??? (???) <f1d1742e06280444baa5637b209fd0af> /usr/lib/libtidy.A.dylib
    0x920ab000 - 0x920abffe com.apple.MonitorPanelFramework 1.2.0 (1.2.0) <a2b462be6c51187eddf7d097ef0e0a04> /System/Library/PrivateFrameworks/MonitorPanel.framework/Versions/A/MonitorPane l
    0x920ac000 - 0x921f2ff7 com.apple.ImageIO.framework 2.0.4 (2.0.4) <6a6623d3d1a7292b5c3763dcd108b55f> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/ImageIO
    0x921f3000 - 0x9224dff7 com.apple.CoreText 2.0.3 (???) <1f1a97273753e6cfea86c810d6277680> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreText.framework/Versions/A/CoreText
    0x9224e000 - 0x92253fff com.apple.CommonPanels 1.2.4 (85) <ea0665f57cd267609466ed8b2b20e893> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels. framework/Versions/A/CommonPanels
    0x92254000 - 0x9230efe3 com.apple.CoreServices.OSServices 226.5 (226.5) <2a135d4fb16f4954290f7b72b4111aa3> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServi ces.framework/Versions/A/OSServices
    0x9230f000 - 0x92314fff com.apple.backup.framework 1.0 (1.0) /System/Library/PrivateFrameworks/Backup.framework/Versions/A/Backup
    0x92315000 - 0x92342feb libvDSP.dylib ??? (???) <b232c018ddd040ec4e2c2af632dd497f> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvDSP.dylib
    0x92343000 - 0x9240aff2 com.apple.vImage 3.0 (3.0) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.fr amework/Versions/A/vImage
    0x9240b000 - 0x92543fe7 com.apple.imageKit 1.0.2 (1.0) <5eee702fe546c8c881acfc65c41ad178> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/ImageKit.fram ework/Versions/A/ImageKit
    0x92544000 - 0x92594feb com.apple.framework.familycontrols 1.0.2 (1.0.2) <90f740755beef77835545ede9e5e975d> /System/Library/PrivateFrameworks/FamilyControls.framework/Versions/A/FamilyCon trols
    0x92595000 - 0x925d6fe7 libRIP.A.dylib ??? (???) <1f09316e876fe813271bdfb9eb5b229e> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libRIP.A.dylib
    0x925d7000 - 0x92dd4fef com.apple.AppKit 6.5.3 (949.34) <4c7af9b12c894d4a528fda29377f143b> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
    0x92dd5000 - 0x92e07fff com.apple.LDAPFramework 1.4.5 (110) <cc04500cf7b6edccc75bb3fe2973f72c> /System/Library/Frameworks/LDAP.framework/Versions/A/LDAP
    0x92ed2000 - 0x92ed2ffb com.apple.installserver.framework 1.0 (8) /System/Library/PrivateFrameworks/InstallServer.framework/Versions/A/InstallSer ver
    0x92ed3000 - 0x92fb3fff libobjc.A.dylib ??? (???) <7b92613fdf804fd9a0a3733a0674c30b> /usr/lib/libobjc.A.dylib
    0x92fb4000 - 0x92fc3fff libsasl2.2.dylib ??? (???) <b9e1ca0b6612e280b6cbea6df0eec5f6> /usr/lib/libsasl2.2.dylib
    0x92fc4000 - 0x92fd8ff3 com.apple.ImageCapture 4.0 (5.0.0) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture. framework/Versions/A/ImageCapture
    0x92fd9000 - 0x92fe4fff com.apple.dotMacLegacy 3.1 (244.1) <dc5b306b079718439c199d386ff60cc4> /System/Library/PrivateFrameworks/DotMacLegacy.framework/Versions/A/DotMacLegac y
    0x92fe5000 - 0x93093ffb com.apple.QTKit 7.5.5 (990.7) /System/Library/Frameworks/QTKit.framework/Versions/A/QTKit
    0x93094000 - 0x930c3fe3 com.apple.AE 402.2 (402.2) <e01596187e91af5d48653920017b8c8e> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.fram ework/Versions/A/AE
    0x930c4000 - 0x93114ff7 com.apple.HIServices 1.7.0 (???) <f7e78891a6d08265c83dca8e378be1ea> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ HIServices.framework/Versions/A/HIServices
    0x93115000 - 0x93115ffe com.apple.quartzframework 1.5 (1.5) <4b8f505e32e4f2d67967a276401f9aaf> /System/Library/Frameworks/Quartz.framework/Versions/A/Quartz
    0x93116000 - 0x9311cfff com.apple.print.framework.Print 218.0.2 (220.1) <8bf7ef71216376d12fcd5ec17e43742c> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framewo rk/Versions/A/Print
    0x9311d000 - 0x93148fe7 libauto.dylib ??? (???) <42d8422dc23a18071869fdf7b5d8fab5> /usr/lib/libauto.dylib
    0x93149000 - 0x93165fff com.apple.IMFramework 4.0.5 (582) <da822220ccdaabc47408e2f641d48685> /System/Library/Frameworks/InstantMessage.framework/Versions/A/InstantMessage
    0x93166000 - 0x93179fff com.apple.IMUtils 4.0.5 (582) <535270cbc62da9f8269578251a660e76> /System/Library/Frameworks/InstantMessage.framework/Frameworks/IMUtils.framewor k/Versions/A/IMUtils
    0x9317a000 - 0x931abffb com.apple.quartzfilters 1.5.0 (1.5.0) <22581f8fe9dd2cb261f97a897407ec3e> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzFilters .framework/Versions/A/QuartzFilters
    0x931ac000 - 0x93237fff com.apple.framework.IOKit 1.5.1 (???) <324526f69e1443f2f9fb722cc88a23ec> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
    0x93238000 - 0x9335cfe3 com.apple.audio.toolbox.AudioToolbox 1.5.1 (1.5.1) /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
    0x9335d000 - 0x93361fff com.apple.OpenDirectory 10.5 (10.5) <e7e4507f5ecd8c8cdcdb2fc0675da0b4> /System/Library/PrivateFrameworks/OpenDirectory.framework/Versions/A/OpenDirect ory
    0x93362000 - 0x933bbff7 libGLU.dylib ??? (???) /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
    0x933bc000 - 0x9377afea libLAPACK.dylib ??? (???) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libLAPACK.dylib
    0x9377b000 - 0x93788fe7 com.apple.opengl 1.5.7 (1.5.7) <db835aeb1ffca9f5b5647dd0829a5b2c> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
    0x93789000 - 0x938eaff2 com.apple.CalendarStore 3.0.5 (841) /System/Library/Frameworks/CalendarStore.framework/Versions/A/CalendarStore
    0x938eb000 - 0x9392afef libTIFF.dylib ??? (???) <3589442575ac77746ae99ecf724f5f87> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libTIFF.dylib
    0x9392b000 - 0x939a5ff8 com.apple.print.framework.PrintCore 5.5.3 (245.3) <222dade7b33b99708b8c09d1303f93fc> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ PrintCore.framework/Versions/A/PrintCore
    0x939a6000 - 0x93a03ffb libstdc++.6.dylib ??? (???) <04b812dcec670daa8b7d2852ab14be60> /usr/lib/libstdc++.6.dylib
    0x93a04000 - 0x93a15ffe com.apple.CFOpenDirectory 10.5 (10.5) <6a7f55108d77db7384d0e2219d07e9f8> /System/Library/PrivateFrameworks/OpenDirectory.framework/Versions/A/Frameworks /CFOpenDirectory.framework/Versions/A/CFOpenDirectory
    0x93a16000 - 0x93cf0ff3 com.apple.CoreServices.CarbonCore 786.6 (786.6) <5682aae1e2cf5ae750d5a4dea98c084c> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore
    0x93cf9000 - 0x93d3dfeb com.apple.DirectoryService.PasswordServerFramework 3.0.3 (3.0.3) <7e80635e8f1380dbf4af27e17e709fcb> /System/Library/PrivateFrameworks/PasswordServer.framework/Versions/A/PasswordS erver
    0x93d3e000 - 0x93d6eff3 com.apple.DotMacSyncManager 1.2.3 (286) <95dc39fc6bf19eb92c5606ebd8a38492> /System/Library/PrivateFrameworks/DotMacSyncManager.framework/Versions/A/DotMac SyncManager
    0x93d6f000 - 0x93d70ffc libffi.dylib ??? (???) <a3b573eb950ca583290f7b2b4c486d09> /usr/lib/libffi.dylib
    0x93d71000 - 0x93da8fff com.apple.SystemConfiguration 1.9.2 (1.9.2) <8b26ebf26a009a098484f1ed01ec499c> /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfi guration
    0x93da9000 - 0x93dddfef com.apple.bom 9.0 (136) <b72e1fd1d3bfd8c288381adb23775fd4> /System/Library/PrivateFrameworks/Bom.framework/Versions/A/Bom
    0x93dde000 - 0x940e5fff com.apple.HIToolbox 1.5.4 (???) <5e2af960b53059c648af4adb99471032> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox
    0x940e6000 - 0x941b1fff com.apple.ColorSync 4.5.0 (4.5.0) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ColorSync.framework/Versions/A/ColorSync
    0x941b2000 - 0x941b6fff libmathCommon.A.dylib ??? (???) /usr/lib/system/libmathCommon.A.dylib
    0x941b7000 - 0x94298ff7 libxml2.2.dylib ??? (???) <de34eb9b43eb7d4a4e0b7f25529efa12> /usr/lib/libxml2.2.dylib
    0x94299000 - 0x9437dfef com.apple.JavaScriptCore 5528 (5528.1) <a634d0260034c1c00a8859e29815e86c> /System/Library/Frameworks/JavaScriptCore.framework/Versions/A/JavaScriptCore
    0x9437e000 - 0x9438effc com.apple.LangAnalysis 1.6.4 (1.6.4) <8b7831b5f74a950a56cf2d22a2d436f6> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LangAnalysis.framework/Versions/A/LangAnalysis
    0x9438f000 - 0x9440bfeb com.apple.audio.CoreAudio 3.1.0 (3.1) <70bb7c657061631491029a61babe0b26> /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
    0x9440c000 - 0x9458bfff com.apple.AddressBook.framework 4.1.1 (696) <bb7f2d5f0b2d180288cd959cd9ba6c1a> /System/Library/Frameworks/AddressBook.framework/Versions/A/AddressBook
    0x94596000 - 0x94598ff5 libRadiance.dylib ??? (???) <8a844202fcd65662bb9ab25f08c45a62> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libRadiance.dylib
    0x94599000 - 0x94599ffd com.apple.vecLib 3.4.2 (vecLib 3.4.2) /System/Library/Frameworks/vecLib.framework/Versions/A/vecLib
    0x9459a000 - 0x945b9ffa libJPEG.dylib ??? (???) <e7eb56555109e23144924cd64aa8daec> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libJPEG.dylib
    0x945ba000 - 0x945e4fff com.apple.CoreMediaPrivate 11.0 (11.0) <e37d6ebd5934b482c864ba6eaf122488> /System/Library/PrivateFrameworks/CoreMediaPrivate.framework/Versions/A/CoreMed iaPrivate
    0x945e5000 - 0x945e5ffa com.apple.CoreServices 32 (32) <2fcc8f3bd5bbfc000b476cad8e6a3dd2> /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
    0x945e6000 - 0x94908fe2 com.apple.QuickTime 7.5.5 (990.7) <87077cec43c7e9b02c8ee80e50b8b81f> /System/Library/Frameworks/QuickTime.framework/Versions/A/QuickTime
    0x9490c000 - 0x94916feb 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
    0x94917000 - 0x94973ff7 com.apple.htmlrendering 68 (1.1.3) <fe87a9dede38db00e6c8949942c6bd4f> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HTMLRendering .framework/Versions/A/HTMLRendering
    0x94974000 - 0x94aa6fff com.apple.CoreFoundation 6.5.4 (476.15) <e2869ad6dc1dd289f21b305b0bea9158> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
    0x94aa7000 - 0x94aaafff com.apple.help 1.1 (36) <b507b08e484cb89033e9cf23062d77de> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framewor k/Versions/A/Help
    0x94aab000 - 0x94af4fef com.apple.Metadata 10.5.2 (398.22) <a6b676925dd832780daf991e79adfebd> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadat a.framework/Versions/A/Metadata
    0x94af5000 - 0x94b10ffb libPng.dylib ??? (???) <4780e979d35aa5ec2cea22678836cea5> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libPng.dylib
    0x94b11000 - 0x94b1eff7 com.apple.DMNotification 1.1.0 (143) <07530f513cd71e41bccbf19225ac1cb4> /System/Library/PrivateFrameworks/DMNotification.framework/Versions/A/DMNotific ation
    0x94b1f000 - 0x94b91fff com.apple.iLifeMediaBrowser 1.0.9 (212.0.1) /System/Library/PrivateFrameworks/iLifeMediaBrowser.framework/Versions/A/iLifeM ediaBrowser
    0x94b92000 - 0x94bcbffe com.apple.securityfoundation 3.0 (32989) <e9171eda22c69c884a04a001aeb526e0> /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoun dation
    0x94bcc000 - 0x95394fff com.apple.WebCore 5528 (5528.1) <bb24a083efdb00e9045ce73c5c97959c> /System/Library/Frameworks/WebKit.framework/Versions/A/Frameworks/WebCore.frame work/Versions/A/WebCore
    0x95395000 - 0x95395ff8 com.apple.ApplicationServices 34 (34) <8f910fa65f01d401ad8d04cc933cf887> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services
    0x9634c000 - 0x963d3ff7 libsqlite3.0.dylib ??? (???) <6978bbcca4277d6ae9f042beff643f7d> /usr/lib/libsqlite3.0.dylib
    0x963d4000 - 0x963e4fff com.apple.speech.synthesis.framework 3.7.1 (3.7.1) <06d8fc0307314f8ffc16f206ad3dbf44> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ SpeechSynthesis.framework/Versions/A/SpeechSynthesis
    0x96415000 - 0x964bcfeb com.apple.QD 3.11.54 (???) <b743398c24c38e581a86e91744a2ba6e> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ QD.framework/Versions/A/QD
    0x964bd000 - 0x964bdffc com.apple.audio.units.AudioUnit 1.5 (1.5) /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
    0x964be000 - 0x9652bffb com.apple.WhitePagesFramework 1.2 (122.0) /System/Library/PrivateFrameworks/WhitePages.framework/Versions/A/WhitePages
    0x9652c000 - 0x96592ffb com.apple.ISSupport 1.7 (38) /System/Library/PrivateFrameworks/ISSupport.framework/Versions/A/ISSupport
    0x96598000 - 0x9664affb libcrypto.0.9.7.dylib ??? (???) <69bc2457aa23f12fa7d052601d48fa29> /usr/lib/libcrypto.0.9.7.dylib
    0x9664b000 - 0x9666ffeb libssl.0.9.7.dylib ??? (???) <c7359b7ab32b5f8574520746e10a41cc> /usr/lib/libssl.0.9.7.dylib
    0x96670000 - 0x966fcff7 com.apple.LaunchServices 290 (290) <61af37aac50984d220dd176f777e3b72> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchS ervices.framework/Versions/A/LaunchServices
    0x966fd000 - 0x967adfff edu.mit.Kerberos 6.0.12 (6.0.12) <da7253e3fb7e47e46cb46d47ed320ffc> /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
    0x967ae000 - 0x967d6fff libcups.2.dylib ??? (???) <bddaa132350e872b9d6d8b7e57f204d1> /usr/lib/libcups.2.dylib
    0x967d7000 - 0x967defe9 libgcc_s.1.dylib ??? (???) <f53c808e87d1184c0f9df63aef53ce0b> /usr/lib/libgcc_s.1.dylib
    0x967df000 - 0x96863fe3 com.apple.CFNetwork 339.5 (339.5) <c6565c13b0356e1d4bb99a68398d558b> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CFNetwo rk.framework/Versions/A/CFNetwork
    0x96864000 - 0x96870fff libbz2.1.0.dylib ??? (???) <9ea4fe135c9e52bd0590eec12c738e82> /usr/lib/libbz2.1.0.dylib
    0x96ada000 - 0x96b4cfff com.apple.PDFKit 2.1.1 (2.1.1) /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/PDFKit.framew ork/Versions/A/PDFKit
    0x96b4d000 - 0x96b6bfff libresolv.9.dylib ??? (???) <a8018c42930596593ddf27f7c20fe7af> /usr/lib/libresolv.9.dylib
    0x96b6c000 - 0x96bfffff com.apple.ink.framework 101.3 (86) <bf3fa8927b4b8baae92381a976fd2079> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework /Versions/A/Ink
    0x96c00000 - 0x96c04fff libGIF.dylib ??? (???) <572a32e46e33be1ec041c5ef5b0341ae> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libGIF.dylib
    0x96c05000 - 0x96c07fff com.apple.securityhi 3.0 (30817) <2b2854123fed609d1820d2779e2e0963> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.fr amework/Versions/A/SecurityHI
    0x96c08000 - 0x970d9f3e libGLProgrammability.dylib ??? (???) <fe1a33d4919c121aab831ad516da6a89> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLProgramma bility.dylib
    0x970da000 - 0x970dafff com.apple.Carbon 136 (136) <98a5e3bc0c4fa44bbb09713bb88707fe> /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
    0x970db000 - 0x97119fff libGLImage.dylib ??? (???) <f0fe2252f6b1ca341bc7837fe2dcf11a> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dyl ib
    0x9711d000 - 0x9711dffd com.apple.Accelerate.vecLib 3.4.2 (vecLib 3.4.2) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/vecLib
    0x9711e000 - 0x9715dfff com.apple.CoreMediaIOServicesPrivate 12.0 (12.0) /System/Library/PrivateFrameworks/CoreMediaIOServicesPrivate.framework/Versions /A/CoreMediaIOServicesPrivate
    0x9715e000 - 0x97226fef com.apple.WebKit 5528 (5528.1) <fc969bc7b1dbf67d61eaea8afe646865> /System/Library/Frameworks/WebKit.framework/Versions/A/WebKit
    0xfffe8000 - 0xfffebfff libobjc.A.dylib ??? (???) /usr/lib/libobjc.A.dylib
    0xffff0000 - 0xffff1780 libSystem.B.dylib ??? (???) /usr/lib/libSystem.B.dylib

    Hi Kevin
    Thanks for your tip. No, it's not solved really. I just trashed the mail app plist file and did not close mail.app since them I had to redo some prefs since it did not rebuild them from the .me infos. I just don't have the time to fiddle arround that much.
    Since I'm in the web development business I wanted to test also with Safari 4, I did not realize that this beta 'infects' the whole computer. Anyway, why does apple not provide binaries that are independent? For developers it would also be very helpful to have older version for testing and reproducing errors that clients have. But that's another story...
    So, thanks for the tip, I'll give it a try when it crashes the next time.
    Cheers
    Florian

  • Why won't Mail.app rules won't migrate, System Tiger to System Leopard?

    Hi,
    Mail.app rules won't migrate from System Tiger to System Leopard.
    Here's what I did:
    -- Clean install of System Leopard 10.5.6 onto a new Mac Pro.
    -- Used Migration Assistment to move files from System Tiger to System Leopard 10.5.6.
    -- Mail.app's rules failed to migrate.
    So, I manually finder-copied MessageRules.plist into the proper folder to replace the newly created and empty rules set in System Leopard's mail.app, and afterwards, the rules then showed up in mail's preferences.
    However, the "manually migrated" [finder copied] rules won't run.
    In order to narrow the scope of the problem, I moved the former System Tiger's mail.app rules to the desktop and allowed mail.app to re-create a new rules plist file, then I created a test rule and it worked.
    Questions:
    Why won't System Tiger's mail.app rules files migrate to System Leopard, and won't work upon manual migration?
    What is the remedy to "properly import" the rules to the new [System Leopard based] mail.app, or to make the manually moved rules plist file work?
    For what it's worth I did follow the procedures at
    http://discussions.apple.com/thread....9306&tstart=90
    in order to make the messages migrate, but that failed to affect the rules.
    Thanks much,
    Jack

    Here's the fix, along with recommendations for Apple programmers.
    http://www.macfixitforums.com/ubbthreads.php/topics/463491#Post463491

  • Mail.app unresponsive after initial startup

    I have set up Mail as a "login item", that is, it starts up automatically when I login. But the Mail application does not react to any mouse input when started on login. Keyboard input works. Only after restarting Mail the mouse input works again. By the way, I run Mail in fullscreen mode and this problem did only occur after the Lion upgrade.
    Any ideas what causes this problem or what could solve it?

    Hi Kevin
    Thanks for your tip. No, it's not solved really. I just trashed the mail app plist file and did not close mail.app since them I had to redo some prefs since it did not rebuild them from the .me infos. I just don't have the time to fiddle arround that much.
    Since I'm in the web development business I wanted to test also with Safari 4, I did not realize that this beta 'infects' the whole computer. Anyway, why does apple not provide binaries that are independent? For developers it would also be very helpful to have older version for testing and reproducing errors that clients have. But that's another story...
    So, thanks for the tip, I'll give it a try when it crashes the next time.
    Cheers
    Florian

  • I am unable to open scanned documents (with .jpg file extension) in my e-mail inbox, on the Mail app on my iPad. Please provide a clear answer. Thanks a lot.

    I am unable to open scanned documents (with .jpg file extension) in my e-mail inbox, on the Mail app on my iPad. Please provide a clear answer. Thanks a lot.

    Can you actually see that the attachment has a .jpg extension?  Some mail systems strip it off (I've seen AOL do that) which makes the attachment difficult to open.

Maybe you are looking for

  • Trying to install OS 10.4 from OS 10.2.8

    System is a G4 Power PC 10.2.8, with 256mb RAM, 28 GB hardrive with 26GB remaining. I have an Apple DVD (black) instal disk, when I try to install I get the screen to click to install and it says to restart system to start installation which I did. B

  • Unit of measure in Sales Order

    Hi All, We have maintained base unit of measure as EA. the sales unit is not mentioned and hence system will take EA as sales unit also. We have maintained alternate unit of measure as BOX and a conversion factor for the same wrt EA. When user enters

  • Email -Save as- New Folder- buggy -no copy/paste

    Email -Save as- New Folder- buggy. I can't paste text into a new folder field whether from a file/save as path or save attachments as- new folder.  That new folder dialog box does not allow copy or paste, only direct typing.   I've tried on three mac

  • How to delete no longer use Purchase Requisition

    Dear Experts, How to delete no longer use Purchase Requisition, thanks! Wilson Hong

  • Lightroom won't load after install

    After having used Betas 2, 3 and 4, I have installed Lightroom. But when I start the program and locate the library, the "Locate Library" screen disappearns and LR doesn't budge. I see only the command line, ie, File Edit, View, etc. Most menu items