Mail body as attachment in email

Hi,
whenever we are sending mails through the FM SO_DOCUMENT_SEND_API1 the text in the body is going as text attachment in the mail. This problem is occuring when the mail is viewed in outlook , in the business workplace the mail is looking good (body as body only).
Please let me know if anyone has encountered this problem and has the solution? 
Thanks,
Rajinikanth G

Hi Rajnikanth,
If my understanding is correct..
please check the code in the below perform
perform send_file_as_email_attachment
                               tables it_message
                                      it_attach
                                using p_email
                                      'Example .xls documnet attachment'
                                      'XLS'
                                      'filename'
                             changing gd_error
                                      gd_reciever.
form send_file_as_email_attachment tables pit_message
                                          pit_attach
                                    using p_email
                                          p_mtitle
                                          p_format
                                          p_filename
                                          p_attdescription
                                          p_sender_address
                                          p_sender_addres_type
                                 changing p_error
                                          p_reciever.
  data: ld_error    type sy-subrc,
        ld_reciever type sy-subrc,
        ld_mtitle like sodocchgi1-obj_descr,
        ld_email like  somlreci1-receiver,
        ld_format type  so_obj_tp ,
        ld_attdescription type  so_obj_nam ,
        ld_attfilename type  so_obj_des ,
        ld_sender_address like  soextreci1-receiver,
        ld_sender_address_type like  soextreci1-adr_typ,
        ld_receiver like  sy-subrc.
  ld_email   = p_email.
  ld_mtitle = p_mtitle.
  ld_format              = p_format.
  ld_attdescription      = p_attdescription.
  ld_attfilename         = p_filename.
  ld_sender_address      = p_sender_address.
  ld_sender_address_type = p_sender_addres_type.
Fill the document data.
  w_doc_data-doc_size = 1.
Populate the subject/generic message attributes
  w_doc_data-obj_langu = sy-langu.
  w_doc_data-obj_name  = 'SAPRPT'.
  w_doc_data-obj_descr = ld_mtitle .
  w_doc_data-sensitivty = 'F'.
Fill the document data and get size of attachment
  clear w_doc_data.
  read table it_attach index w_cnt.
  w_doc_data-doc_size =
     ( w_cnt - 1 ) * 255 + strlen( it_attach ).
  w_doc_data-obj_langu  = sy-langu.
  w_doc_data-obj_name   = 'SAPRPT'.
  w_doc_data-obj_descr  = ld_mtitle.
  w_doc_data-sensitivty = 'F'.
  clear t_attachment.
  refresh t_attachment.
  t_attachment[] = pit_attach[].
Describe the body of the message
  clear t_packing_list.
  refresh t_packing_list.
  t_packing_list-transf_bin = space.
  t_packing_list-head_start = 1.
  t_packing_list-head_num = 0.
  t_packing_list-body_start = 1.
  describe table it_message lines t_packing_list-body_num.
  t_packing_list-doc_type = 'RAW'.
  append t_packing_list.
Create attachment notification
  t_packing_list-transf_bin = 'X'.
  t_packing_list-head_start = 1.
  t_packing_list-head_num   = 1.
  t_packing_list-body_start = 1.
  describe table t_attachment lines t_packing_list-body_num.
  t_packing_list-doc_type   =  ld_format.
  t_packing_list-obj_descr  =  ld_attdescription.
  t_packing_list-obj_name   =  ld_attfilename.
  t_packing_list-doc_size   =  t_packing_list-body_num * 255.
  append t_packing_list.
Add the recipients email address
  clear t_receivers.
  refresh t_receivers.
  t_receivers-receiver = ld_email.
  t_receivers-rec_type = 'U'.
  t_receivers-com_type = 'INT'.
  t_receivers-notif_del = 'X'.
  t_receivers-notif_ndel = 'X'.
  append t_receivers.
  call function 'SO_DOCUMENT_SEND_API1'
       exporting
            document_data              = w_doc_data
            put_in_outbox              = 'X'
            sender_address             = ld_sender_address
            sender_address_type        = ld_sender_address_type
            commit_work                = 'X'
       importing
            sent_to_all                = w_sent_all
       tables
            packing_list               = t_packing_list
            contents_bin               = t_attachment
            contents_txt               = it_message
            receivers                  = t_receivers
       exceptions
            too_many_receivers         = 1
            document_not_sent          = 2
            document_type_not_exist    = 3
            operation_no_authorization = 4
            parameter_error            = 5
            x_error                    = 6
            enqueue_error              = 7
            others                     = 8.
Populate zerror return code
  ld_error = sy-subrc.
Populate zreceiver return code
  loop at t_receivers.
    ld_receiver = t_receivers-retrn_code.
  endloop.
endform.
regards,
gowri

Similar Messages

  • Mail Adapter Use Mail Package, Mail Body and Attachment

    Hello
    Have some body a idea, how I can configure the mail adapter with use mail package, that I have in the mail a attachment with content from the messages and a mail body with also text from the message.
    Thanks for your reply.
    Regards Tom
    The different Weblog , I have check:
    /people/prasad.ulagappan2/blog/2005/06/07/mail-adapter-scenarios-150-sap-exchange-infrastructure
    https://www.sdn.sap.com/sdn/weblogs.sdn?blog=/pub/wlg/1685 [original link is broken] [original link is broken] [original link is broken] [original link is broken] [original link is broken] [original link is broken] [original link is broken] [original link is broken] [original link is broken]
    /people/michal.krawczyk2/blog/2005/03/07/mail-adapter-xi--how-to-implement-dynamic-mail-address

    Hi Thomas,
    If you are configuring your Mail adapter as reciever then refer
    http://help.sap.com/saphelp_nw04/helpdata/en/6b/4493404f673028e10000000a1550b0/content.htm
    your sender (say file) should have some message like this
    <i>
    <ml:Mail xmlns:ml=’http://sap.com/xi/XI/Mail/30’>
       <Subject>Important</Subject>
       <From>[email protected]</From>
       <To>[email protected]</To>
       <X_Mailer>Outlook Express </X_Mailer>
       <Content>
       This is the content.
       </Content>
    </ml:Mail></i>
    And for Sender Mail Adpater
    http://help.sap.com/saphelp_nw04/helpdata/en/23/c093409c663228e10000000a1550b0/content.htm
    Hope this will be helpful
    Regards
    Suraj

  • Receiver Mail Adapter - Mail body as attachment

    Hello friends,
    I have scenario = File -> XI  -> Mail
    The scenario is working but the problem is body of the email is coming as attachment in the mail client.(outlook express)
    Is there any way to avoid the body coming as attachment.
    Regards
    Ramesh P

    Hi Ramesh,
    You can use the MessageTransformBean in the receiver mail adapter for this.
    Refer this for the parameters which you can use
    http://help.sap.com/saphelp_nw04/helpdata/en/57/0b2c4142aef623e10000000a155106/content.htm
    Regards,
    Chandra

  • Mail Body Content

    Hi,
    When we try to send mail, the body content is included as an attachment as 'Notification1.html' (which is a default one) Instead we need to have the mail content in the main body.
    What changes do we need to achieve this?
    Regards,
    Saranath

    hi,
    If anybody face the same problem like mail body as attachment then go for the bellow solution.
    Check your settings in TCODE SCOT
    Double click on SMTP note . For "Internet" click on set, under "Output format for SAP documents" RAW Text musts be set as "TXT"
    Regards
    padmaja.

  • Sending emails with both body and attachment to multiple recipients

    I have a requirement to send email with body and attachment to multiple recipients.
    Body of the email is a standard text. It is a proxy-to-mail scenario.
    Here is what I've done: (I'm using PI 7.11)
    One mapping from Source to Target structure (format of the attachment text file)
    Second mapping from Target Structure to Mail Package format.
    In the second mapping I'm concatenating the output of first step into "Content" of the Mail Package.
    "XIPAYLOAD" is the message protocol used.
    The "Keep attachments" option in the Mail adapter allows only to send "Content" as attachment or as body of the email.
    How to send an email with both content and text?
    The other problem is even with using ASMA, I can't send email to multiple recipients. I can only do CC and TO for 1 person each - a total of 2. Although I can resolve this by creating mailing lists, it is better if this can be addressed in PI.
    Thanks for any input you can provide!
    Edited by: crazylad on Jan 18, 2012 3:39 PM

    Thank you for your response Mikael.
    For the first question, I was able to find the solution in the following blog:
    XI Mail Adapter : Dynamically building attachment and message body content using a simple UDF
    (I just needed to search with the right set of key words )
    The key is to set the "Content Encoding" as "None" in the mail adapter. If this is not done, the mail will be sent with an attachment - untitled.bin containing both the mail body and the attachment text. Also, don't forget to check the "Keep Attachments" checkbox in the mail adapter.
    Multiple recipients could be added by separating the email IDs with a Comma. I have used ASMA to set the recipients.

  • Image in a email body without attachment

    Hi Gurus,
       I have requirement wherein i need to send an image in body of email.As of now i am able to create attachment and refer it to body of the email .this works fine and the image displays in body of the email.
       The problem is when i send the mail to outlook it works fine, but when i send to others for e.g. gmail or lotus note, no image comes in the body , only image comes as an attachment.
       can some expert solve this problem.
    Or if some can help in sending the image in the body of the email without attachment is also fine?
    Regards,
    Madhu

    Madhu,
    Can you post the steps you took to get the html to goto the body when it is sent to an Outlook account?  Even this is an impressive feat.  Did you put the html into a Smartform and somehow get it to render in the e-mail body?  Please explain.
    -Ken

  • Email Purchase Order with mail body

    Hi, ALL,
    I would like to email purchase order to vendors with customized email subject and body. I did configuration in IMG according to note 191470. I also set up title and text in IMG. Now I can email PO with subject (title). But there is no mail body ( the text? ) . Is there anybody know how to do it? Thanks a lot!
    Jack

    Hi,
    In standard you can send purchase order by mail with subject line (title) only and you can not send mail body text.
    Check the link:
    Send PO External email with attachement and Body text
    Regards,
    Biju K

  • Email Sapscript with an individual mail body

    Hi
    we are sending Sales documents via NAST and SCOT as email to our customer. Currently the document is converted into Pdf and added as attachment to the mail. We can only change the subject line. It is not possible for us to fill the mail body. The body is completly empty.
    We would like to fill it with some personalized information.
    Have you any ideas, how to do this?
    Best regards
    Rauno

    Hi Vishal
    I am not directly using a function module. We set the output type in the NAST record to '5' and SAP does the rest (Transformation into pdf, reading the email-adress from mail partner in the SD-document,...)
    Regards
    Rauno

  • When I want to attach a file to an e-mail I'm sending from my iCloud account it makes the file show up in the body of the e-mail instead of attaching it as a separate file the receiver can open.  How can I change this?

    When I want to attach a file to an e-mail I'm sending from my iCloud account it makes the file show up in the body of the e-mail instead of attaching it as a separate file the receiver can open.  How can I change this?

    It should be an attachment.  Your Mac just displays a preview of certain attachments (such as .pdfs) in the body of the message.  A PC, for example, will see it as an attached file rather than a preview.
    You can save the attachment on your Mac by Control-clicking on it and selecting Save Attachment.

  • Mail crashes in lion if email has special attachment

    Hello,
    every time I started Mail it crashed. After disabling the account it worked. When enabling again, it crashes.
    I could find out which email caused the problem by forwarding it to another account.
    It was one mail with two attachment. An HTML file and a .p7m signature file.
    I could reproduce the error in exchange and imap.
    My crash report:
    Process:         Mail [27481]
    Path:            /Applications/Mail.app/Contents/MacOS/Mail
    Identifier:      com.apple.mail
    Version:         5.0 (1244.2)
    Build Info:      Mail-1244002000000000~1
    Code Type:       X86-64 (Native)
    Parent Process:  launchd [246]
    Date/Time:       2011-08-01 23:43:19.921 +0200
    OS Version:      Mac OS X 10.7 (11A511)
    Report Version:  9
    Interval Since Last Report:          38608 sec
    Crashes Since Last Report:           25
    Per-App Interval Since Last Report:  2740 sec
    Per-App Crashes Since Last Report:   21
    Anonymous UUID:                      7EAB94DC-8AF2-494F-87EB-8FBC89752DB6
    Crashed Thread:  10  -[SnippetManager _calculateSnippetForMessages]  Dispatch queue: com.apple.root.default-overcommit-priority
    Exception Type:  EXC_CRASH (SIGABRT)
    Exception Codes: 0x0000000000000000, 0x0000000000000000
    Application Specific Information:
    objc[27481]: garbage collection is OFF
    *** Terminating app due to uncaught exception 'NSInvalidArgumentException', reason: '*** -[__NSArrayM insertObject:atIndex:]: object cannot be nil'
    *** First throw call stack:
              0   CoreFoundation                      0x000000010b729986 __exceptionPreprocess + 198
              1   libobjc.A.dylib                     0x000000010b598d5e objc_exception_throw + 43
              2   CoreFoundation                      0x000000010b6d0818 -[__NSArrayM insertObject:atIndex:] + 296
              3   Message                             0x000000010a66dd89 -[MimePart(SMIMEDecodingInternal) _verifySignatureWithCMSDecoder:againstSender:signingError:] + 2456
              4   Message                             0x000000010a826e9f -[MimePart(SMIMEDecoding) decodeApplicationPkcs7_mimeWithContext:] + 1231
              5   Message                             0x000000010a66a244 -[MimePart(DecodingSupport) decodeWithContext:] + 235
              6   Message                             0x000000010a6c9685 -[MimePart decodedContentWithContext:] + 105
              7   Message                             0x000000010a6c9399 -[MimePart(DecodingSupport) decodeMultipartWithContext:] + 192
              8   Message                             0x000000010a66a244 -[MimePart(DecodingSupport) decodeWithContext:] + 235
              9   Message                             0x000000010a669dc6 -[MimePart parsedMessageWithContext:] + 61
              10  Message                             0x000000010a669bfb -[MimeBody parsedMessageWithContext:] + 192
              11  Message                             0x000000010a6bd4f0 __-[SnippetManager _calculateSnippetForMessages]_block_invoke_1 + 711
              12  CoreFoundation                      0x000000010b71303f ____NSDictionaryEnumerate_block_invoke_4 + 31
              13  CoreFoundation                      0x000000010b697e71 CFBasicHashApply + 113
              14  CoreFoundation                      0x000000010b712e9b __NSDictionaryEnumerate + 907
              15  Message                             0x000000010a6bd20b -[SnippetManager _calculateSnippetForMessages] + 291
              16  CoreFoundation                      0x000000010b71b90c __invoking___ + 140
              17  CoreFoundation                      0x000000010b71b7a4 -[NSInvocation invoke] + 132
              18  Message                             0x000000010a5fb891 -[ThrowingInvocationOperation main] + 33
              19  Message                             0x000000010a5fb837 -[_MFInvocationOperation main] + 449
              20  Foundation                          0x000000010b9f40b0 -[__NSOperationInternal start] + 705
              21  Foundation                          0x000000010ba073d2 ____NSOQSchedule_block_invoke_2 + 124
              22  libdispatch.dylib                   0x000000010df6b90a _dispatch_call_block_and_release + 18
              23  libdispatch.dylib                   0x000000010df6c7e9 _dispatch_worker_thread2 + 255
              24  libsystem_c.dylib                   0x000000010e0593da _pthread_wqthread + 316
              25  libsystem_c.dylib                   0x000000010e05ab85 start_wqthread + 13
    terminate called throwing an exception
    abort() called
    Thread 0:: Dispatch queue: com.apple.main-thread
    0   libsystem_kernel.dylib                  0x000000010e1a467a mach_msg_trap + 10
    1   libsystem_kernel.dylib                  0x000000010e1a3d71 mach_msg + 73
    2   com.apple.CoreGraphics                  0x000000010fc23b6a _CGSGetOnScreenWindowCount + 131
    3   com.apple.CoreGraphics                  0x000000010fc23ab4 CGSGetOnScreenWindowCount + 184
    4   com.apple.AppKit                        0x000000010c4e8e72 NSCountWindows + 47
    5   com.apple.AppKit                        0x000000010c4e8bd6 -[NSApplication(NSScripting) _orderedWindowsWithPanels:] + 195
    6   com.apple.AppKit                        0x000000010c4e8b11 -[NSApplication(NSScripting) orderedWindows] + 20
    7   com.apple.mail                          0x0000000109467987 0x109448000 + 129415
    8   com.apple.mail                          0x000000010945eb78 0x109448000 + 93048
    9   com.apple.mail                          0x000000010945e615 0x109448000 + 91669
    10  com.apple.mail                          0x0000000109490925 0x109448000 + 297253
    11  com.apple.Foundation                    0x000000010b9c2716 __-[NSNotificationCenter addObserver:selector:name:object:]_block_invoke_1 + 47
    12  com.apple.CoreFoundation                0x000000010b6d251a _CFXNotificationPost + 2634
    13  com.apple.mail                          0x000000010944de0e 0x109448000 + 24078
    14  com.apple.mail                          0x0000000109449b80 0x109448000 + 7040
    15  com.apple.Foundation                    0x000000010b9c2716 __-[NSNotificationCenter addObserver:selector:name:object:]_block_invoke_1 + 47
    16  com.apple.CoreFoundation                0x000000010b6d251a _CFXNotificationPost + 2634
    17  com.apple.mail                          0x000000010944de0e 0x109448000 + 24078
    18  com.apple.mail                          0x000000010962b79f 0x109448000 + 1980319
    19  com.apple.mail                          0x000000010948f6cd 0x109448000 + 292557
    20  com.apple.CoreFoundation                0x000000010b71b90c __invoking___ + 140
    21  com.apple.CoreFoundation                0x000000010b71b7a4 -[NSInvocation invoke] + 132
    22  com.apple.CoreFoundation                0x000000010b71911d -[NSObject performSelector:withObject:] + 61
    23  com.apple.Foundation                    0x000000010b9fb830 __NSThreadPerformPerform + 214
    24  com.apple.CoreFoundation                0x000000010b698241 __CFRUNLOOP_IS_CALLING_OUT_TO_A_SOURCE0_PERFORM_FUNCTION__ + 17
    25  com.apple.CoreFoundation                0x000000010b697aad __CFRunLoopDoSources0 + 253
    26  com.apple.CoreFoundation                0x000000010b6be8d9 __CFRunLoopRun + 905
    27  com.apple.CoreFoundation                0x000000010b6be216 CFRunLoopRunSpecific + 230
    28  com.apple.HIToolbox                     0x000000010f4624ff RunCurrentEventLoopInMode + 277
    29  com.apple.HIToolbox                     0x000000010f469c21 ReceiveNextEventCommon + 355
    30  com.apple.HIToolbox                     0x000000010f469aae BlockUntilNextEventMatchingListInMode + 62
    31  com.apple.AppKit                        0x000000010c375191 _DPSNextEvent + 659
    32  com.apple.AppKit                        0x000000010c374a95 -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 135
    33  com.apple.AppKit                        0x000000010c3713d6 -[NSApplication run] + 463
    34  com.apple.AppKit                        0x000000010c5ef52a NSApplicationMain + 867
    35  com.apple.mail                          0x0000000109520c34 0x109448000 + 887860
    Thread 1:: Dispatch queue: com.apple.libdispatch-manager
    0   libsystem_kernel.dylib                  0x000000010e1a67e6 kevent + 10
    1   libdispatch.dylib                       0x000000010df6d60e _dispatch_mgr_invoke + 923
    2   libdispatch.dylib                       0x000000010df6c19e _dispatch_mgr_thread + 54
    Thread 2:
    0   libsystem_kernel.dylib                  0x000000010e1a6192 __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x000000010e059594 _pthread_wqthread + 758
    2   libsystem_c.dylib                       0x000000010e05ab85 start_wqthread + 13
    Thread 3:: -[MessageMiniMall _performFilterTask:seriesID:]  Dispatch queue: com.apple.root.default-overcommit-priority
    0   libsystem_kernel.dylib                  0x000000010e1a5bca __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x000000010e05b274 _pthread_cond_wait + 840
    2   com.apple.Foundation                    0x000000010ba07f80 -[NSCondition wait] + 261
    3   com.apple.Foundation                    0x000000010b9fb314 -[NSObject(NSThreadPerformAdditions) performSelector:onThread:withObject:waitUntilDone:modes:] + 975
    4   com.apple.Foundation                    0x000000010b9faec7 -[NSObject(NSThreadPerformAdditions) performSelectorOnMainThread:withObject:waitUntilDone:] + 135
    5   com.apple.MessageFramework              0x000000010a651110 -[NSObject(MainThreadMessaging) performSelectorOnMainThread:waitUntilDone:result:args:] + 707
    6   com.apple.mail                          0x000000010948aa05 0x109448000 + 272901
    7   com.apple.CoreFoundation                0x000000010b71b90c __invoking___ + 140
    8   com.apple.CoreFoundation                0x000000010b71b7a4 -[NSInvocation invoke] + 132
    9   com.apple.MessageFramework              0x000000010a5fb891 -[ThrowingInvocationOperation main] + 33
    10  com.apple.MessageFramework              0x000000010a5fb837 -[_MFInvocationOperation main] + 449
    11  com.apple.Foundation                    0x000000010b9f40b0 -[__NSOperationInternal start] + 705
    12  com.apple.Foundation                    0x000000010ba073d2 ____NSOQSchedule_block_invoke_2 + 124
    13  libdispatch.dylib                       0x000000010df6b90a _dispatch_call_block_and_release + 18
    14  libdispatch.dylib                       0x000000010df6c7e9 _dispatch_worker_thread2 + 255
    15  libsystem_c.dylib                       0x000000010e0593da _pthread_wqthread + 316
    16  libsystem_c.dylib                       0x000000010e05ab85 start_wqthread + 13
    Thread 4:: com.apple.NSURLConnectionLoader
    0   libsystem_kernel.dylib                  0x000000010e1a467a mach_msg_trap + 10
    1   libsystem_kernel.dylib                  0x000000010e1a3d71 mach_msg + 73
    2   com.apple.CoreFoundation                0x000000010b6b629c __CFRunLoopServiceMachPort + 188
    3   com.apple.CoreFoundation                0x000000010b6bea04 __CFRunLoopRun + 1204
    4   com.apple.CoreFoundation                0x000000010b6be216 CFRunLoopRunSpecific + 230
    5   com.apple.Foundation                    0x000000010ba11a97 +[NSURLConnection(NSURLConnectionReallyInternal) _resourceLoadLoop:] + 335
    6   com.apple.Foundation                    0x000000010ba061ea -[NSThread main] + 68
    7   com.apple.Foundation                    0x000000010ba06162 __NSThread__main__ + 1575
    8   libsystem_c.dylib                       0x000000010e0578bf _pthread_start + 335
    9   libsystem_c.dylib                       0x000000010e05ab75 thread_start + 13
    Thread 5:
    0   libsystem_kernel.dylib                  0x000000010e1a467a mach_msg_trap + 10
    1   libsystem_kernel.dylib                  0x000000010e1a3d71 mach_msg + 73
    2   com.apple.CoreFoundation                0x000000010b6b629c __CFRunLoopServiceMachPort + 188
    3   com.apple.CoreFoundation                0x000000010b6bea04 __CFRunLoopRun + 1204
    4   com.apple.CoreFoundation                0x000000010b6be216 CFRunLoopRunSpecific + 230
    5   com.apple.Foundation                    0x000000010b9b7983 -[NSRunLoop(NSRunLoop) runMode:beforeDate:] + 267
    6   com.apple.Foundation                    0x000000010b9b786f -[NSRunLoop(NSRunLoop) run] + 62
    7   com.apple.MessageFramework              0x000000010a61c3b5 -[RSSInterchange _runManager] + 1345
    8   com.apple.Foundation                    0x000000010ba061ea -[NSThread main] + 68
    9   com.apple.Foundation                    0x000000010ba06162 __NSThread__main__ + 1575
    10  libsystem_c.dylib                       0x000000010e0578bf _pthread_start + 335
    11  libsystem_c.dylib                       0x000000010e05ab75 thread_start + 13
    Thread 6:
    0   libsystem_kernel.dylib                  0x000000010e1a467a mach_msg_trap + 10
    1   libsystem_kernel.dylib                  0x000000010e1a3d71 mach_msg + 73
    2   com.apple.CoreFoundation                0x000000010b6b629c __CFRunLoopServiceMachPort + 188
    3   com.apple.CoreFoundation                0x000000010b6bea04 __CFRunLoopRun + 1204
    4   com.apple.CoreFoundation                0x000000010b6be216 CFRunLoopRunSpecific + 230
    5   com.apple.Foundation                    0x000000010b9b7983 -[NSRunLoop(NSRunLoop) runMode:beforeDate:] + 267
    6   com.apple.Foundation                    0x000000010b9b786f -[NSRunLoop(NSRunLoop) run] + 62
    7   com.apple.MessageFramework              0x000000010a63bb89 +[_NSSocket _runIOThread] + 80
    8   com.apple.Foundation                    0x000000010ba061ea -[NSThread main] + 68
    9   com.apple.Foundation                    0x000000010ba06162 __NSThread__main__ + 1575
    10  libsystem_c.dylib                       0x000000010e0578bf _pthread_start + 335
    11  libsystem_c.dylib                       0x000000010e05ab75 thread_start + 13
    Thread 7:: com.apple.CFSocket.private
    0   libsystem_kernel.dylib                  0x000000010e1a5df2 __select + 10
    1   com.apple.CoreFoundation                0x000000010b70766b __CFSocketManager + 1355
    2   libsystem_c.dylib                       0x000000010e0578bf _pthread_start + 335
    3   libsystem_c.dylib                       0x000000010e05ab75 thread_start + 13
    Thread 8:
    0   libsystem_kernel.dylib                  0x000000010e1a6192 __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x000000010e059594 _pthread_wqthread + 758
    2   libsystem_c.dylib                       0x000000010e05ab85 start_wqthread + 13
    Thread 9:
    0   libsystem_kernel.dylib                  0x000000010e1a6192 __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x000000010e059594 _pthread_wqthread + 758
    2   libsystem_c.dylib                       0x000000010e05ab85 start_wqthread + 13
    Thread 10 Crashed:: -[SnippetManager _calculateSnippetForMessages]  Dispatch queue: com.apple.root.default-overcommit-priority
    0   libsystem_kernel.dylib                  0x000000010e1a5ce2 __pthread_kill + 10
    1   libsystem_c.dylib                       0x000000010e0597d2 pthread_kill + 95
    2   libsystem_c.dylib                       0x000000010e04aa7a abort + 143
    3   libc++abi.dylib                         0x000000010ded87bc abort_message + 214
    4   libc++abi.dylib                         0x000000010ded5fcf default_terminate() + 28
    5   libobjc.A.dylib                         0x000000010b5991b9 _objc_terminate + 94
    6   libc++abi.dylib                         0x000000010ded6001 safe_handler_caller(void (*)()) + 11
    7   libc++abi.dylib                         0x000000010ded605c std::terminate() + 16
    8   libc++abi.dylib                         0x000000010ded7152 __cxa_throw + 114
    9   libobjc.A.dylib                         0x000000010b598e7a objc_exception_throw + 327
    10  com.apple.CoreFoundation                0x000000010b6d0818 -[__NSArrayM insertObject:atIndex:] + 296
    11  com.apple.MessageFramework              0x000000010a66dd89 -[MimePart(SMIMEDecodingInternal) _verifySignatureWithCMSDecoder:againstSender:signingError:] + 2456
    12  com.apple.MessageFramework              0x000000010a826e9f -[MimePart(SMIMEDecoding) decodeApplicationPkcs7_mimeWithContext:] + 1231
    13  com.apple.MessageFramework              0x000000010a66a244 -[MimePart(DecodingSupport) decodeWithContext:] + 235
    14  com.apple.MessageFramework              0x000000010a6c9685 -[MimePart decodedContentWithContext:] + 105
    15  com.apple.MessageFramework              0x000000010a6c9399 -[MimePart(DecodingSupport) decodeMultipartWithContext:] + 192
    16  com.apple.MessageFramework              0x000000010a66a244 -[MimePart(DecodingSupport) decodeWithContext:] + 235
    17  com.apple.MessageFramework              0x000000010a669dc6 -[MimePart parsedMessageWithContext:] + 61
    18  com.apple.MessageFramework              0x000000010a669bfb -[MimeBody parsedMessageWithContext:] + 192
    19  com.apple.MessageFramework              0x000000010a6bd4f0 __-[SnippetManager _calculateSnippetForMessages]_block_invoke_1 + 711
    20  com.apple.CoreFoundation                0x000000010b71303f ____NSDictionaryEnumerate_block_invoke_4 + 31
    21  com.apple.CoreFoundation                0x000000010b697e71 CFBasicHashApply + 113
    22  com.apple.CoreFoundation                0x000000010b712e9b __NSDictionaryEnumerate + 907
    23  com.apple.MessageFramework              0x000000010a6bd20b -[SnippetManager _calculateSnippetForMessages] + 291
    24  com.apple.CoreFoundation                0x000000010b71b90c __invoking___ + 140
    25  com.apple.CoreFoundation                0x000000010b71b7a4 -[NSInvocation invoke] + 132
    26  com.apple.MessageFramework              0x000000010a5fb891 -[ThrowingInvocationOperation main] + 33
    27  com.apple.MessageFramework              0x000000010a5fb837 -[_MFInvocationOperation main] + 449
    28  com.apple.Foundation                    0x000000010b9f40b0 -[__NSOperationInternal start] + 705
    29  com.apple.Foundation                    0x000000010ba073d2 ____NSOQSchedule_block_invoke_2 + 124
    30  libdispatch.dylib                       0x000000010df6b90a _dispatch_call_block_and_release + 18
    31  libdispatch.dylib                       0x000000010df6c7e9 _dispatch_worker_thread2 + 255
    32  libsystem_c.dylib                       0x000000010e0593da _pthread_wqthread + 316
    33  libsystem_c.dylib                       0x000000010e05ab85 start_wqthread + 13
    Thread 11:
    Thread 10 crashed with X86 Thread State (64-bit):
      rax: 0x0000000000000000  rbx: 0x0000000000000006  rcx: 0x000000011c189358  rdx: 0x0000000000000000
      rdi: 0x000000000001fc1f  rsi: 0x0000000000000006  rbp: 0x000000011c189380  rsp: 0x000000011c189358
       r8: 0x000000010e0edfb8   r9: 0x000000011c188de8  r10: 0x000000010e1a5d0a  r11: 0xffffff80002d8240
      r12: 0x0000000000000000  r13: 0x000000010b58d100  r14: 0x000000011c18b000  r15: 0x000000011c1894d0
      rip: 0x000000010e1a5ce2  rfl: 0x0000000000000202  cr2: 0x000000010e225000
    Logical CPU: 0
    Binary Images:
           0x109448000 -        0x1097f8ff7  com.apple.mail (5.0 - 1244.2) <8D887218-56A8-3BB1-96BB-4305E158569E> /Applications/Mail.app/Contents/MacOS/Mail
           0x1098f3000 -        0x109c0cff7  com.apple.AddressBook.framework (6.0 - 1043) <A6302279-FD1B-3BB7-8419-362425FC5568> /System/Library/Frameworks/AddressBook.framework/Versions/A/AddressBook
           0x109df2000 -        0x109ed9fff  com.apple.backup.framework (1.3 - 1.3) <C7F0B3B6-EAC1-3445-A705-E9F18A45D01D> /System/Library/PrivateFrameworks/Backup.framework/Versions/A/Backup
           0x109f50000 -        0x10a170fff  com.apple.CalendarStore (5.0 - 1127) <0E9BE7E8-4DBD-3C2F-97DE-CAC5AE0EE3AD> /System/Library/Frameworks/CalendarStore.framework/Versions/A/CalendarStore
           0x10a2a6000 -        0x10a2a6fff  com.apple.Carbon (153 - 153) <895C2BF2-1666-3A59-A669-311B1F4F368B> /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
           0x10a2ac000 -        0x10a2acfff  com.apple.Cocoa (6.6 - ???) <021D4214-9C23-3CD8-AFB2-F331697A4508> /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
           0x10a2af000 -        0x10a2b1fff  apop.so (??? - ???) <B40CE86C-1757-3261-848C-F166F3D513EA> /usr/lib/sasl2/apop.so
           0x10a2b6000 -        0x10a2dffff  com.apple.datadetectors (3.0 - 172.0) <A63656A8-DDE4-3C52-98CF-8A3E42CB802D> /System/Library/PrivateFrameworks/DataDetectors.framework/Versions/A/DataDetect ors
           0x10a2ff000 -        0x10a360fff  com.apple.ExchangeWebServices (2.0 - 123) <EB227217-23C4-3EA0-A083-8DA900B74D35> /System/Library/PrivateFrameworks/ExchangeWebServices.framework/Versions/A/Exch angeWebServices
           0x10a3f1000 -        0x10a47eff7  com.apple.iLifeMediaBrowser (2.6.0 - 502) <174E0D48-398B-362A-8A8F-7948CE30539E> /System/Library/PrivateFrameworks/iLifeMediaBrowser.framework/Versions/A/iLifeM ediaBrowser
           0x10a4df000 -        0x10a4e1fff  libanonymous.2.so (??? - ???) <99136B94-8BE0-3563-9E2A-9C826971B6E9> /usr/lib/sasl2/libanonymous.2.so
           0x10a4e6000 -        0x10a4fefff  com.apple.iChat.InstantMessage (6.0 - 833) <DF9EAA84-8AE6-3BFD-AB21-7BDED2161564> /System/Library/Frameworks/InstantMessage.framework/Versions/A/InstantMessage
           0x10a510000 -        0x10a536fff  com.apple.framework.internetaccounts (1.0 - 1) <64CC50BB-9EE4-36D1-969A-FDD2210026DC> /System/Library/PrivateFrameworks/InternetAccounts.framework/Versions/A/Interne tAccounts
           0x10a55b000 -        0x10a55dfff  login.so (??? - ???) <48CD069F-68F5-32C4-BFAC-AC0EFB7B9489> /usr/lib/sasl2/login.so
           0x10a561000 -        0x10a5cbfff  com.apple.framework.IOKit (2.0 - ???) <F79E7690-EF97-3D04-BA22-177E256803AF> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
           0x10a5f9000 -        0x10a950fff  com.apple.MessageFramework (5.0 - 1244.3) <266F07DF-4440-3DB4-B059-5D23A57A8041> /System/Library/Frameworks/Message.framework/Versions/B/Message
           0x10ab03000 -        0x10ab05fff  libplain.2.so (??? - ???) <C98A873A-4373-3E3A-8257-D9BB5F857C85> /usr/lib/sasl2/libplain.2.so
           0x10ab0a000 -        0x10ab31fff  com.apple.PerformanceAnalysis (1.10 - 10) <2A058167-292E-3C3A-B1F8-49813336E068> /System/Library/PrivateFrameworks/PerformanceAnalysis.framework/Versions/A/Perf ormanceAnalysis
           0x10ab50000 -        0x10acdaff7  com.apple.QTKit (7.7.1 - 2246) <C8A57DE8-A86A-34B6-B6BA-565EE3B6D140> /System/Library/Frameworks/QTKit.framework/Versions/A/QTKit
           0x10addd000 -        0x10addffff  smb_nt.so (??? - ???) <C6D59817-4DB8-34F9-BD71-2FDDA857CBA8> /usr/lib/sasl2/smb_nt.so
           0x10ade4000 -        0x10ade4fff  com.apple.quartzframework (1.5 - 1.5) <21FCC91F-C7B9-304F-8C9C-04F3924F4AE3> /System/Library/Frameworks/Quartz.framework/Versions/A/Quartz
           0x10adeb000 -        0x10b0c2fff  com.apple.security (7.0 - 55010) <2418B583-D3BD-3BC5-8B07-8289C8A5B43B> /System/Library/Frameworks/Security.framework/Versions/A/Security
           0x10b1d9000 -        0x10b20efff  com.apple.securityinterface (5.0 - 55004) <790DDF7E-6BA9-36DD-B818-2322A712E1F5> /System/Library/Frameworks/SecurityInterface.framework/Versions/A/SecurityInter face
           0x10b23b000 -        0x10b294fff  com.apple.Suggestions (1.0 - 84.0) <6B925EBB-CEEF-3134-8D25-2103F21DE624> /System/Library/PrivateFrameworks/Suggestions.framework/Versions/A/Suggestions
           0x10b2d5000 -        0x10b45ffff  com.apple.WebKit (7534 - 7534.48.3) <03AC8252-B3A1-3A7C-9DAF-99CC9DC56D5D> /System/Library/Frameworks/WebKit.framework/Versions/A/WebKit
           0x10b546000 -        0x10b573fe7  libSystem.B.dylib (159.0.0 - compatibility 1.0.0) <7B4D685D-939C-3ABE-8780-77A1889E0DE9> /usr/lib/libSystem.B.dylib
           0x10b582000 -        0x10b666def  libobjc.A.dylib (228.0.0 - compatibility 1.0.0) <C5F2392D-B481-3A9D-91BE-3D039FFF4DEC> /usr/lib/libobjc.A.dylib
           0x10b682000 -        0x10b682fff  com.apple.CoreServices (53 - 53) <5946A0A6-393D-3087-86A0-4FFF6A305CC0> /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
           0x10b686000 -        0x10b859ff7  com.apple.CoreFoundation (6.7 - 635) <57446B22-0778-3E07-9690-96AC705D57E8> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
           0x10b9a6000 -        0x10b9a6fff  com.apple.ApplicationServices (41 - 41) <03F3FA8F-8D2A-3AB6-A8E3-40B001116339> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services
           0x10b9ac000 -        0x10bcbefff  com.apple.Foundation (6.7 - 833.1) <618D7923-3519-3C53-9CBD-CF3C7130CB32> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
           0x10bea1000 -        0x10c040fff  com.apple.QuartzCore (1.7 - 269.0) <E0AFC745-4AC5-36E3-9827-E5344721071D> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
           0x10c0e8000 -        0x10c2a9fe7  com.apple.CoreData (103 - 358.4) <8D8ABA2E-0161-334D-A7C9-79E5297E188B> /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
           0x10c36c000 -        0x10cf64fff  com.apple.AppKit (6.7 - 1138) <C8D2FDDA-B9D5-3948-A376-6B9B6F0596C6> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
           0x10d69f000 -        0x10d712fff  libstdc++.6.dylib (52.0.0 - compatibility 7.0.0) <6BDD43E4-A4B1-379E-9ED5-8C713653DFF2> /usr/lib/libstdc++.6.dylib
           0x10d775000 -        0x10d781fff  com.apple.DirectoryService.Framework (10.7 - 144) <067ACB41-E9B7-3177-9EDE-C188D9B352DC> /System/Library/Frameworks/DirectoryService.framework/Versions/A/DirectoryServi ce
           0x10d78a000 -        0x10d78affd +cl_kernels (??? - ???) <A185A5C9-1D76-48DA-8286-F30B00573946> cl_kernels
           0x10d790000 -        0x10d7cbfff  com.apple.LDAPFramework (3.0 - 120.1) <0C23534F-A8E7-3144-B2B2-50F9875101E2> /System/Library/Frameworks/LDAP.framework/Versions/A/LDAP
           0x10d7e0000 -        0x10d82bfff  com.apple.SystemConfiguration (1.11 - 1.11) <0B02FEC4-C36E-32CB-8004-2214B6793AE8> /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfi guration
           0x10d855000 -        0x10d961fef  libcrypto.0.9.8.dylib (0.9.8 - compatibility 0.9.8) <3AD29F8D-E3BC-3F49-A438-2C8AAB71DC99> /usr/lib/libcrypto.0.9.8.dylib
           0x10d9cb000 -        0x10d9d0fff  com.apple.OpenDirectory (10.7 - 144) <E8AACF47-C423-3DCE-98F6-A811612B1B46> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/OpenDirectory
           0x10d9d9000 -        0x10d9e0fff  com.apple.NetFS (4.0 - 4.0) <B9F41443-679A-31AD-B0EB-36557DAF782B> /System/Library/Frameworks/NetFS.framework/Versions/A/NetFS
           0x10d9e9000 -        0x10d9eafff  libDiagnosticMessagesClient.dylib (??? - ???) <3DCF577B-F126-302B-BCE2-4DB9A95B8598> /usr/lib/libDiagnosticMessagesClient.dylib
           0x10d9f0000 -        0x10dbf2fff  libicucore.A.dylib (46.1.0 - compatibility 1.0.0) <82DCB94B-3819-3CC3-BC16-2AACA7F64F8A> /usr/lib/libicucore.A.dylib
           0x10dc82000 -        0x10dc88ff7  com.apple.phonenumbers (1.0 - 47) <8CE13253-C65B-392F-B87F-D85A15D500D3> /System/Library/PrivateFrameworks/PhoneNumbers.framework/Versions/A/PhoneNumber s
           0x10dc8d000 -        0x10dc9cfff  com.apple.opengl (1.7.4 - 1.7.4) <38AF4430-7E81-3C98-9330-21DCDA90507E> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
           0x10dca5000 -        0x10dd47ff7  com.apple.securityfoundation (5.0 - 55005) <0D59908C-A61B-389E-AF37-741ACBBA6A94> /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoun dation
           0x10dd98000 -        0x10dde6ff7  libauto.dylib (??? - ???) <F0004B88-CA01-37D0-A77F-6651C4EC7D8E> /usr/lib/libauto.dylib
           0x10ddfd000 -        0x10de72ff7  libc++.1.dylib (19.0.0 - compatibility 1.0.0) <C0EFFF1B-0FEB-3F99-BE54-506B35B555A9> /usr/lib/libc++.1.dylib
           0x10decd000 -        0x10deceff3 +cl_kernels (??? - ???) <0060CD2F-6C8C-40F9-A9BA-65E635F9E056> cl_kernels
           0x10ded0000 -        0x10dedbff7  libc++abi.dylib (14.0.0 - compatibility 1.0.0) <8FF3D766-D678-36F6-84AC-423C878E6D14> /usr/lib/libc++abi.dylib
           0x10dee4000 -        0x10dee7ff7  libCoreFSCache.dylib (??? - ???) <783C2402-CA3F-3D9B-B909-0F251145CF1D> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreFSCache .dylib
           0x10deeb000 -        0x10def0fff  libcache.dylib (47.0.0 - compatibility 1.0.0) <B7757E2E-5A7D-362E-AB71-785FE79E1527> /usr/lib/system/libcache.dylib
           0x10def7000 -        0x10df39ff7  libcommonCrypto.dylib (55010.0.0 - compatibility 1.0.0) <A5B9778E-11C3-3F61-B740-1F2114E967FB> /usr/lib/system/libcommonCrypto.dylib
           0x10df47000 -        0x10df47ff1 +cl_kernels (??? - ???) <4AFC3ACE-2E44-4B50-9339-F58091FF7CB4> cl_kernels
           0x10df4e000 -        0x10df53fff  libcompiler_rt.dylib (6.0.0 - compatibility 1.0.0) <98ECD5F6-E85C-32A5-98CD-8911230CB66A> /usr/lib/system/libcompiler_rt.dylib
           0x10df5c000 -        0x10df63fff  libcopyfile.dylib (85.1.0 - compatibility 1.0.0) <172B1985-F24A-34E9-8D8B-A2403C9A0399> /usr/lib/system/libcopyfile.dylib
           0x10df6a000 -        0x10df78fff  libdispatch.dylib (187.5.0 - compatibility 1.0.0) <698F8EFB-7075-3111-94E3-891156C88172> /usr/lib/system/libdispatch.dylib
           0x10df89000 -        0x10df8affc +cl_kernels (??? - ???) <A7D0D0EE-13C3-4E10-8BA1-49D220439F3B> cl_kernels
           0x10df8d000 -        0x10df8efff  libdnsinfo.dylib (395.6.0 - compatibility 1.0.0) <718A135F-6349-354A-85D5-430B128EFD57> /usr/lib/system/libdnsinfo.dylib
           0x10df94000 -        0x10df98fff  libdyld.dylib (195.5.0 - compatibility 1.0.0) <F1903B7A-D3FF-3390-909A-B24E09BAD1A5> /usr/lib/system/libdyld.dylib
           0x10dfa0000 -        0x10dfa0fff  libkeymgr.dylib (23.0.0 - compatibility 1.0.0) <61EFED6A-A407-301E-B454-CD18314F0075> /usr/lib/system/libkeymgr.dylib
           0x10dfaa000 -        0x10dfb4ff7  liblaunch.dylib (392.18.0 - compatibility 1.0.0) <39EF04F2-7F0C-3435-B785-BF283727FFBD> /usr/lib/system/liblaunch.dylib
           0x10dfbe000 -        0x10dfbfff3 +cl_kernels (??? - ???) <A78D333E-8573-4BFB-B581-A7C308780865> cl_kernels
           0x10dfc2000 -        0x10dfc8fff  libmacho.dylib (800.0.0 - compatibility 1.0.0) <D86F63EC-D2BD-32E0-8955-08B5EAFAD2CC> /usr/lib/system/libmacho.dylib
           0x10dfd2000 -        0x10dfd6fff  libmathCommon.A.dylib (2026.0.0 - compatibility 1.0.0) <FF83AFF7-42B2-306E-90AF-D539C51A4542> /usr/lib/system/libmathCommon.A.dylib
           0x10dfd9000 -        0x10dfe2fff  libnotify.dylib (80.0.0 - compatibility 1.0.0) <BD08553D-8088-38A8-8007-CF5C0B8F0404> /usr/lib/system/libnotify.dylib
           0x10dfec000 -        0x10dfecffd +cl_kernels (??? - ???) <C1F8A0F1-9AF2-42AD-96F6-48FFD3F29557> cl_kernels
           0x10dfef000 -        0x10dff1fff  libquarantine.dylib (36.0.0 - compatibility 1.0.0) <4C3BFBC7-E592-3939-B376-1C2E2D7C5389> /usr/lib/system/libquarantine.dylib
           0x10dff7000 -        0x10dff8ff7  libremovefile.dylib (21.0.0 - compatibility 1.0.0) <C6C49FB7-1892-32E4-86B5-25AD165131AA> /usr/lib/system/libremovefile.dylib
           0x10dffd000 -        0x10dffeff7  libsystem_blocks.dylib (53.0.0 - compatibility 1.0.0) <8BCA214A-8992-34B2-A8B9-B74DEACA1869> /usr/lib/system/libsystem_blocks.dylib
           0x10e005000 -        0x10e005ff5 +cl_kernels (??? - ???) <F1D287EA-9B7D-45CE-9A5E-4F7370D7A3DF> cl_kernels
           0x10e009000 -        0x10e0e6fef  libsystem_c.dylib (763.11.0 - compatibility 1.0.0) <1D61CA57-3C6D-30F7-89CB-CC6F0787B1DC> /usr/lib/system/libsystem_c.dylib
           0x10e12b000 -        0x10e133fff  libsystem_dnssd.dylib (??? - ???) <7749128E-D0C5-3832-861C-BC9913F774FA> /usr/lib/system/libsystem_dnssd.dylib
           0x10e13b000 -        0x10e177fff  libsystem_info.dylib (??? - ???) <BC49C624-1DAB-3A37-890F-6EFD46538424> /usr/lib/system/libsystem_info.dylib
           0x10e18f000 -        0x10e1affff  libsystem_kernel.dylib (1699.22.73 - compatibility 1.0.0) <69F2F501-72D8-3B3B-8357-F4418B3E1348> /usr/lib/system/libsystem_kernel.dylib
           0x10e1c1000 -        0x10e1c6ff7  libsystem_network.dylib (??? - ???) <4ABCEEF3-A3F9-3E06-9682-CE00F17138B7> /usr/lib/system/libsystem_network.dylib
           0x10e1ce000 -        0x10e1cffff  libsystem_sandbox.dylib (??? - ???) <8D14139B-B671-35F4-9E5A-023B4C523C38> /usr/lib/system/libsystem_sandbox.dylib
           0x10e1d4000 -        0x10e1d5fff  libunc.dylib (24.0.0 - compatibility 1.0.0) <C67B3B14-866C-314F-87FF-8025BEC2CAAC> /usr/lib/system/libunc.dylib
           0x10e1df000 -        0x10e1e5ff7  libunwind.dylib (30.0.0 - compatibility 1.0.0) <1E9C6C8C-CBE8-3F4B-A5B5-E03E3AB53231> /usr/lib/system/libunwind.dylib
           0x10e1f2000 -        0x10e20fff7  libxpc.dylib (77.16.0 - compatibility 1.0.0) <0A4B4775-29A9-30D6-956B-3BE1DBF98090> /usr/lib/system/libxpc.dylib
           0x10e227000 -        0x10e329ff7  libxml2.2.dylib (10.3.0 - compatibility 10.0.0) <D46F371D-6422-31B7-BCE0-D80713069E0E> /usr/lib/libxml2.2.dylib
           0x10e355000 -        0x10e367ff7  libz.1.dylib (1.2.5 - compatibility 1.0.0) <30CBEF15-4978-3DED-8629-7109880A19D4> /usr/lib/libz.1.dylib
           0x10e370000 -        0x10e4d3fff  com.apple.CFNetwork (520.0.13 - 520.0.13) <67E3BB43-2A22-3F5A-964E-391375B24CE0> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CFNetwo rk.framework/Versions/A/CFNetwork
           0x10e577000 -        0x10e578fff  liblangid.dylib (??? - ???) <CACBE3C3-2F7B-3EED-B50E-EDB73F473B77> /usr/lib/liblangid.dylib
           0x10e581000 -        0x10e594ff7  libCRFSuite.dylib (??? - ???) <034D4DAA-63F0-35E4-BCEF-338DD7A453DD> /usr/lib/libCRFSuite.dylib
           0x10e5a1000 -        0x10e5bdff7  com.apple.GenerationalStorage (1.0 - 124) <C0290CA0-A2A0-3280-9442-9D783883D638> /System/Library/PrivateFrameworks/GenerationalStorage.framework/Versions/A/Gene rationalStorage
           0x10e5cd000 -        0x10e5dfff7  libbsm.0.dylib (??? - ???) <349BB16F-75FA-363F-8D98-7A9C3FA90A0D> /usr/lib/libbsm.0.dylib
           0x10e5e9000 -        0x10e6ecfff  libsqlite3.dylib (9.6.0 - compatibility 9.0.0) <ED5E84C6-646D-3B70-81D6-7AF957BEB217> /usr/lib/libsqlite3.dylib
           0x10e700000 -        0x10e705fff  libpam.2.dylib (3.0.0 - compatibility 3.0.0) <D952F17B-200A-3A23-B9B2-7C1F7AC19189> /usr/lib/libpam.2.dylib
           0x10e70b000 -        0x10ea24fff  com.apple.CoreServices.CarbonCore (960.13 - 960.13) <398ABDD7-BB95-3C05-96D2-B54243FC4745> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore
           0x10ea9c000 -        0x10ea9efff  com.apple.AddressBook.LocalSourceBundle (1.1 - 1043) <E6A2DAEA-2AE7-3759-A8E5-D354007FDD4B> /System/Library/Address Book Plug-Ins/LocalSource.sourcebundle/Contents/MacOS/LocalSource
           0x10eaa3000 -        0x10eb25fff  com.apple.Metadata (10.7.0 - 627.9) <F293A9A7-9790-3629-BE81-D19C158C5EA4> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadat a.framework/Versions/A/Metadata
           0x10eb80000 -        0x10ec60fff  com.apple.CoreServices.OSServices (478.25 - 478.25) <CA11FC11-2F93-3C8A-8077-A67F381A3EBE> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServi ces.framework/Versions/A/OSServices
           0x10ecd9000 -        0x10ed73ff7  com.apple.SearchKit (1.4.0 - 1.4.0) <B7573888-BAF6-333D-AB00-C0D2BF88DF0F> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchK it.framework/Versions/A/SearchKit
           0x10edb3000 -        0x10edf2fff  com.apple.AE (527.6 - 527.6) <6F8DF9EF-3250-3B7F-8841-FCAD8E323954> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.fram ework/Versions/A/AE
           0x10ee0e000 -        0x10eeadfff  com.apple.LaunchServices (480.19 - 480.19) <41ED4C8B-C74B-34EA-A9BF-34DBA5F52307> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchS ervices.framework/Versions/A/LaunchServices
           0x10eefe000 -        0x10ef2dfff  com.apple.DictionaryServices (1.2 - 158) <2CE51CD1-EE3D-3618-9507-E39A09C9BB8D> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Diction aryServices.framework/Versions/A/DictionaryServices
           0x10ef50000 -        0x10ef56fff  com.apple.DiskArbitration (2.4 - 2.4) <5185FEA6-92CA-3CAA-8442-BD71DBC64AFD> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
           0x10ef64000 -        0x10ef72ff7  libkxld.dylib (??? - ???) <65BE345D-6618-3D1A-9E2B-255E629646AA> /usr/lib/system/libkxld.dylib
           0x10ef7b000 -        0x10ef89fff  com.apple.NetAuth (1.0 - 3.0) <F384FFFD-70F6-3B1C-A886-F5B446E456E7> /System/Library/PrivateFrameworks/NetAuth.framework/Versions/A/NetAuth
           0x10ef95000 -        0x10ef96fff  com.apple.heimdalodpac (1.0 - 1) <D9358C3C-300C-36BF-879F-D7852A87109E> /System/Library/KerberosPlugins/KerberosFrameworkPlugins/heimdalodpac.bundle/Co ntents/MacOS/heimdalodpac
           0x10ef9b000 -        0x10f00bfff  com.apple.datadetectorscore (3.0 - 179.3) <AFFBD606-91DE-3F91-8E38-C037D9FBFA8B> /System/Library/PrivateFrameworks/DataDetectorsCore.framework/Versions/A/DataDe tectorsCore
           0x10f048000 -        0x10f04afff  com.apple.TrustEvaluationAgent (2.0 - 1) <80AFB5D8-5CC4-3A38-83B9-A7DF5820031A> /System/Library/PrivateFrameworks/TrustEvaluationAgent.framework/Versions/A/Tru stEvaluationAgent
           0x10f053000 -        0x10f06afff  com.apple.CFOpenDirectory (10.7 - 144) <9709423E-8484-3B26-AAE8-EF58D1B8FB3F> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/Frameworks/CFOpen Directory.framework/Versions/A/CFOpenDirectory
           0x10f084000 -        0x10f086ff7  com.apple.IMServicePlugInSupport (1.0 - 1) <A566600F-3D38-3B98-91B5-421AE6D27192> /System/Library/Frameworks/IMServicePlugIn.framework/Versions/A/Frameworks/IMSe rvicePlugInSupport.framework/Versions/A/IMServicePlugInSupport
           0x10f08b000 -        0x10f0b6ff7  libxslt.1.dylib (3.24.0 - compatibility 3.0.0) <8051A3FC-7385-3EA9-9634-78FC616C3E94> /usr/lib/libxslt.1.dylib
           0x10f0c5000 -        0x10f0e8ff7  com.apple.RemoteViewServices (1.0 - 1) <EB549657-8EDC-312A-B8BE-DEC3E160AC3D> /System/Library/PrivateFrameworks/RemoteViewServices.framework/Versions/A/Remot eViewServices
           0x10f108000 -        0x10f261ff7  com.apple.audio.toolbox.AudioToolbox (1.7 - 1.7) <296F10D0-A871-39C1-B8B2-9200AB12B5AF> /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
           0x10f2e3000 -        0x10f2e3fff  com.apple.audio.units.AudioUnit (1.7 - 1.7) <D75971EE-0D74-365A-8E52-46558EA49E87> /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
           0x10f2e9000 -        0x10f2eaff7  com.apple.kerberos.reachability (2.1 - 2.0) <2ABB6EC6-5EB2-30F8-87F2-AB938F42C178> /System/Library/KerberosPlugins/KerberosFrameworkPlugins/Reachability.bundle/Co ntents/MacOS/Reachability
           0x10f2f0000 -        0x10f405fff  com.apple.DesktopServices (1.6.0 - 1.6.0) <208D40FC-8BBE-330F-B999-18771BEA6895> /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/Desk topServicesPriv
           0x10f460000 -        0x10f783fff  com.apple.HIToolbox (1.7 - ???) <10FA3432-6638-39D9-8681-9E95298D239E> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox
           0x10f8c6000 -        0x10f8c7ff7  com.apple.kerberos.sckerberosconfig (2.1 - 1) <F37F7408-9A50-31FF-A147-7F786957DDBE> /System/Library/KerberosPlugins/KerberosFrameworkPlugins/SCKerberosConfig.bundl e/Contents/MacOS/SCKerberosConfig
           0x10f8cb000 -        0x10f8d6ff7  com.apple.speech.recognition.framework (4.0.19 - 4.0.19) <7ADAAF5B-1D78-32F2-9FFF-D2E3FBB41C2B> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecogni tion.framework/Versions/A/SpeechRecognition
           0x10f8e1000 -        0x10f943ff7  com.apple.coreui (0.3 - 162) <A752F9D0-1CAE-340F-B2D2-95EEF242B301> /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
           0x10f981000 -        0x10f9e8ff7  com.apple.audio.CoreAudio (4.0.0 - 4.0.0) <0B715012-C8E8-386D-9C6C-90F72AE62A2F> /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
           0x10fa15000 -        0x10fa2cfff  com.apple.MultitouchSupport.framework (220.62 - 220.62) <7EF58A7E-CB97-335F-A025-4A0F00AEF896> /System/Library/PrivateFrameworks/MultitouchSupport.framework/Versions/A/Multit ouchSupport
           0x10fa3d000 -        0x10fa63ff7  com.apple.framework.familycontrols (3.0 - 300) <72FEA71A-5865-3875-97E9-3C8C96B7F7FA> /System/Library/PrivateFrameworks/FamilyControls.framework/Versions/A/FamilyCon trols
           0x10fa7f000 -        0x10fb23fef  com.apple.ink.framework (1.3.2 - 110) <F69DBD44-FEC8-3C14-8131-CC0245DBBD42> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework /Versions/A/Ink
           0x10fb5a000 -        0x1102289df  com.apple.CoreGraphics (1.600.0 - ???) <B3C42497-53F5-31BB-987E-D1E76746B0E4> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/CoreGraphics
           0x11032d000 -        0x11040bff7  com.apple.ImageIO.framework (3.1.0 - 3.1.0) <70228E69-063C-32FF-BBE7-FCCD9C5C0864> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/ImageIO
           0x110456000 -        0x110508fff  com.apple.CoreText (4.0.0 - ???) <D7BD85FD-277A-3A97-B1AD-5EE14215237E> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreText.framework/Versions/A/CoreText
           0x11055b000 -        0x1105dfff7  com.apple.ApplicationServices.ATS (5.0 - ???) <F10B1918-A06E-3ECF-85EF-05F0CF27187E> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/ATS
           0x110610000 -        0x1106d7ff7  com.apple.ColorSync (4.7.0 - 4.7.0) <A29897D7-4B63-3BBB-B66C-710BE9CC01D8> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ColorSync.framework/Versions/A/ColorSync
           0x11071a000 -        0x110774fff  com.apple.HIServices (1.9 - ???) <8791E8AA-C034-330D-B2BA-5141154C21CD> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ HIServices.framework/Versions/A/HIServices
           0x1107a7000 -        0x1107bbff7  com.apple.LangAnalysis (1.7.0 - 1.7.0) <04C31EF0-912A-3004-A08F-CEC27030E0B2> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LangAnalysis.framework/Versions/A/LangAnalysis
           0x1107cf000 -        0x11084aff7  com.apple.print.framework.PrintCore (7.0 - 366) <E663DF78-6729-332D-B763-ABB63A6BBB55> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ PrintCore.framework/Versions/A/PrintCore
           0x110883000 -        0x1108c4fff  com.apple.QD (3.12 - ???) <4F3C5629-97C7-3E55-AF3C-ACC524929DA2> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ QD.framework/Versions/A/QD
           0x1108e1000 -        0x1108f6fff  com.apple.speech.synthesis.framework (4.0.74 - 4.0.74) <C061ECBB-7061-3A43-8A18-90633F943295> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ SpeechSynthesis.framework/Versions/A/SpeechSynthesis
           0x110908000 -        0x11090efff  IOSurface (??? - ???) <06FA3FDD-E6D5-391F-B60D-E98B169DAB1B> /System/Library/Frameworks/IOSurface.framework/Versions/A/IOSurface
           0x11091d000 -        0x11091dfff  com.apple.Accelerate (1.7 - Accelerate 1.7) <3E4582EB-CFEF-34EA-9DA8-8421F1C3C77D> /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
           0x110920000 -        0x110949fff  libJPEG.dylib (??? - ???) <3DBFEB41-4BF2-3502-872A-BB3738EE61B0> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libJPEG.dylib
           0x110954000 -        0x1109abfff  libTIFF.dylib (??? - ???) <9E32B490-4C5B-3D96-AF27-9C085C606403> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libTIFF.dylib
           0x1109ba000 -        0x1109d7fff  libPng.dylib (??? - ???) <75DA9F95-C2A1-3534-9F8B-14CFFDE2A290> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libPng.dylib
           0x1109e4000 -        0x1109e9fff  libGIF.dylib (??? - ???) <21851808-BFD2-3141-8354-A419479726BF> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libGIF.dylib
           0x1109f2000 -        0x110afffff  libJP2.dylib (??? - ???) <D8257CEE-A1C3-394A-8193-6DB7C29A15A8> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libJP2.dylib
           0x110b31000 -        0x110b34fff  libRadiance.dylib (??? - ???) <DCDA308D-4856-3631-B6D7-7A8B94169BC0> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libRadiance.dylib
           0x110b38000 -        0x110c71fef  com.apple.vImage (5.0 - 5.0) <C45D2CBE-FA15-3D13-9E9D-A3BF57B84BBE> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.fr amework/Versions/A/vImage
           0x110c91000 -        0x110c91fff  com.apple.Accelerate.vecLib (3.7 - vecLib 3.7) <4CC14F7C-BCA7-3CAC-BEC9-B06576E5A15B> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/vecLib
           0x110c99000 -        0x110cf9fff  libvDSP.dylib (325.3.0 - compatibility 1.0.0) <74B62E70-4189-3022-8FC9-1182EA7C6E34> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvDSP.dylib
           0x110d02000 -        0x110d98ff7  libvMisc.dylib (325.3.0 - compatibility 1.0.0) <AC5A384A-FA5A-3307-9CED-BD69E6F12A09> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvMisc.dylib
           0x110da5000 -        0x1111d2fff  libLAPACK.dylib (??? - ???) <4F2E1055-2207-340B-BB45-E4F16171EE0D> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libLAPACK.dylib
           0x11123a000 -        0x11181efaf  libBLAS.dylib (??? - ???) <D62D6A48-5C7A-3ED6-875D-AA3C2C5BF791> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libBLAS.dylib
           0x111867000 -        0x11196cff7  libFontParser.dylib (??? - ???) <22AADE96-E54D-3918-9DFA-1967F8B21E54> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontParser.dylib
           0x1119cb000 -        0x111a1efff  libFontRegistry.dylib (??? - ???) <8FE14D77-1286-3619-A02E-0AC1A622596E> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontRegistry.dylib
           0x111a42000 -        0x111a81ff7  libcups.2.dylib (2.9.0 - compatibility 2.0.0) <DE681910-3F7F-3502-9937-AB8008CD281A> /usr/lib/libcups.2.dylib
           0x111a97000 -        0x111abbff7  com.apple.Kerberos (1.0 - 1) <2FF2569B-F59A-371E-AF33-66297F512CB3> /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
           0x111adc000 -        0x111b0ffff  com.apple.GSS (2.1 - 2.0) <A150154E-40D3-345B-A92D-3A023A55AC52> /System/Library/Frameworks/GSS.framework/Versions/A/GSS
           0x111b27000 -        0x111b46fff  libresolv.9.dylib (46.0.0 - compatibility 1.0.0) <33263568-E6F3-359C-A4FA-66AD1300F7D4> /usr/lib/libresolv.9.dylib
           0x111b55000 -        0x111c4afff  libiconv.2.dylib (7.0.0 - compatibility 7.0.0) <5C40E880-0706-378F-B864-3C2BD922D926> /usr/lib/libiconv.2.dylib
           0x111c5f000 -        0x111ce4ff7  com.apple.Heimdal (2.1 - 2.0) <E4CD970F-8DE8-31E4-9FC0-BDC97EB924D5> /System/Library/PrivateFrameworks/Heimdal.framework/Versions/A/Heimdal
           0x111d0e000 -        0x111d19fff  com.apple.CommonAuth (2.1 - 2.0) <49949286-61FB-3A7F-BF49-0EBA45E2664E> /System/Library/PrivateFrameworks/CommonAuth.framework/Versions/A/CommonAuth
           0x111d26000 -        0x111d4eff7  com.apple.CoreVideo (1.7 - 70.0) <59D5B407-CCB6-3406-8C55-C1B0168D7DC2> /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
           0x111d6d000 -        0x111fdefff  com.apple.CoreImage (7.77 - 1.0.1) <AB6ECCF3-4B04-3363-9158-08F305BF15FA> /System/Library/Frameworks/QuartzCore.framework/Versions/A/Frameworks/CoreImage .framework/Versions/A/CoreImage
           0x1120ce000 -        0x112122ff7  com.apple.ScalableUserInterface (1.0 - 1) <1873D7BE-2272-31A1-8F85-F70C4D706B3B> /System/Library/Frameworks/QuartzCore.framework/Versions/A/Frameworks/ScalableU serInterface.framework/Versions/A/ScalableUserInterface
           0x11214c000 -        0x11219eff7  libGLU.dylib (??? - ???) <C3CE8BA0-470F-3BCE-B17C-A31E70E035F2> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
           0x1121b3000 -        0x1121b9fff  libGFXShared.dylib (??? - ???) <DE6987C5-81AC-3AE6-84F0-138C9636D412> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGFXShared.d ylib
           0x1121c6000 -        0x1121dcfff  libGL.dylib (??? - ???) <22064411-0A62-373C-828B-0AA2BA2A8D34> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
           0x1121f1000 -        0x112230ff7  libGLImage.dylib (??? - ???) <29F82AD9-45F0-3AC5-A4A4-B767EC555D82> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dyl ib
           0x11223b000 -        0x11223dfff  libCVMSPluginSupport.dylib (??? - ???) <2D21E6BE-CB20-3F76-8DCC-1CB0660A8A5B> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCVMSPluginS upport.dylib
           0x112242000 -        0x112245fff  libCoreVMClient.dylib (??? - ???) <9E9F7B24-567C-3102-909C-219CF2B191FD> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreVMClien t.dylib
           0x11224c000 -        0x112279ff7  com.apple.opencl (1.50.62 - 1.50.62) <616ADE61-11D1-3816-A255-3F0F80F2EAC8> /System/Library/Frameworks/OpenCL.framework/Versions/A/OpenCL
           0x112286000 -        0x11272dff7  FaceCoreLight (1.4.2 - compatibility 1.0.0) <6F89E9A9-DEB6-32B5-8B50-3B97F5DB597D> /System/Library/PrivateFrameworks/FaceCoreLight.framework/Versions/A/FaceCoreLi ght
           0x112c07000 -        0x112c07fff  com.apple.vecLib (3.7 - vecLib 3.7) <29927F20-262F-379C-9108-68A6C69A03D0> /System/Library/Frameworks/vecLib.framework/Versions/A/vecLib
           0x112c0e000 -        0x112c15ff7  com.apple.CommerceCore (1.0 - 17) <AA783B87-48D4-3CA6-8FF6-0316396022F4> /System/Library/PrivateFrameworks/CommerceKit.framework/Versions/A/Frameworks/C ommerceCore.framework/Versions/A/CommerceCore
           0x112c25000 -        0x112c93fff  com.apple.CoreSymbolication (2.1 - 66) <E1582596-4157-3535-BF1F-3BAE92A0B09F> /System/Library/PrivateFrameworks/CoreSymbolication.framework/Versions/A/CoreSy mbolication
           0x112cd5000 -        0x112d39fff  com.apple.Symbolication (1.2 - 83.1) <0C6F8907-6829-3409-99AC-ACC62923DE98> /System/Library/PrivateFrameworks/Symbolication.framework/Versions/A/Symbolicat ion
           0x112d79000 -        0x112db3fff  com.apple.DebugSymbols (2.1 - 85) <AEF473A5-25BF-3FB7-9A07-320D9CB85959> /System/Library/PrivateFrameworks/DebugSymbols.framework/Versions/A/DebugSymbol s
           0x112dd0000 -        0x112de2ff7  libsasl2.2.dylib (3.15.0 - compatibility 3.0.0) <6245B497-784B-355C-98EF-2DC6B45BF05C> /usr/lib/libsasl2.2.dylib
           0x112dec000 -        0x112e25fe7  libssl.0.9.8.dylib (0.9.8 - compatibility 0.9.8) <D634E4B6-672F-3F68-8B6F-C5028151A5B4> /usr/lib/libssl.0.9.8.dylib
           0x112e3f000 -        0x1130adff7  com.apple.QuartzComposer (5.0 - 232) <CE01B3AC-C19F-3148-9301-615E8FD6F356> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzCompose r.framework/Versions/A/QuartzComposer
           0x113209000 -        0x11329bfff  com.apple.PDFKit (2.6 - 2.6) <F838E95F-DEE9-354A-A34A-F5335D0AF1E1> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/PDFKit.framew ork/Versions/A/PDFKit
           0x1132fc000 -        0x113329fff  com.apple.quartzfilters (1.7.0 - 1.7.0) <ED846829-EBF1-3E2F-9EA6-D8743E5A4784> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzFilters .framework/Versions/A/QuartzFilters
           0x113359000 -        0x1135d3ff7  com.apple.imageKit (2.1 - 1.0) <03200568-184B-36E8-AFE9-04D1FACDC926> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/ImageKit.fram ework/Versions/A/ImageKit
           0x113757000 -        0x113855ff7  com.apple.QuickLookUIFramework (3.0 - 489.1) <A8A82434-D43D-3F12-9321-B2E8EC9B4B8E> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuickLookUI.f ramework/Versions/A/QuickLookUI
           0x113905000 -        0x113b12fff  com.apple.JavaScriptCore (7534 - 7534.48) <99B60407-592A-3DDC-A3D0-86578B92B3F8> /System/Library/Frameworks/JavaScriptCore.framework/Versions/A/JavaScriptCore
           0x113b98000 -        0x113b9bfff  com.apple.AppleSystemInfo (1.0 - 1) <598ADC13-C994-3579-A885-0D6658DDD564> /System/Library/PrivateFrameworks/AppleSystemInfo.framework/Versions/A/AppleSys temInfo
           0x113ba6000 -        0x113fc1fff  com.apple.SceneKit (2.0 - 124) <9E331DDE-BDF4-34C5-A8F9-E7F12ADBB785> /System/Library/PrivateFrameworks/SceneKit.framework/Versions/A/SceneKit
           0x114199000 -        0x1141e0ff7  com.apple.CoreMedia (1.0 - 705.35) <6BEC7E0A-BC2E-30DA-8E18-

    I'm having the same problem see: https://discussions.apple.com/message/15747627#15747627 . As you can see, its still an open problem for me.  I have narrowed it down to an HTML formatted message -- but not all HTML e-mail. Unfortunately, it is a status message that is generated automatically every day by our mail system's spam detector. I have a G5 (OS X 10.5.8) whose version of Mail reads it just fine, so I can read and flush that message from the G5.

  • "Attach to Email" option launches outlook rather than default mail client

    The "Attach to Email" option luanches outlook rather than Seamonkey, which is set to be the default mail client.  Any ideas regrding fixing this would be most appreciated.  This is Adobe Acrobat 9 PRO v. 9.0.0 running on a 64 bit Windows 7 Home Premium 4.0 GB machine.
    Thanks,

    Not sure but this might be a Windows Control Panel Issue.

  • Body and Attachment both in a mail

    Hi,
    I am working to send a mail from XI. My present scenarion is like this: I am using xslt mapping to generate code for a html page using source and using dumy target. Now I am using module adapter "localejbs/AF_Modules/MessageTransformBean" for getting attachments. I am able to get the attachment if i check "Keep Attachment" check box or else I am able to see the html pagein body of mail.
    Here I am getting either body or attchment. Is there any way to get both body and attachment?
    Thanks.

    I am not using any adapter module method,
    I am trying to use these statements:
    <b>3.2.4 Sending a Mail with Attachment</b>
    If you want to send a mail with a body and attachment, or with several attachments, the
    message sender has to provide an XI message with additional attachments. For each
    additional payload of the XI message, the mail adapter creates an attachment for the
    mail. To enable this feature, you select the Keep Attachments checkbox when
    configuring the mail adapter. By default, the payload of the message is also sent as an
    -8-
    attachment. If you do not want the payload to be sent as an attachment, set
    ContentDisposition to inline.
    If you want to give each attachment a certain name, you can use the swap module. The
    swap module changes the main payload.
    -- This is not talking about any methods to be implemented.
    Thanks,

  • Set mail body and email id in SO01

    Hi All,
    My requirement is that i need to send a workitem to user in which he will be navigated to transaction SO01(New Message) with a predefined mail body and subject line. There agent will specify the email IDs and will click on send button to send the mail.
    I am not getting how to prepopulate the message field with a predefined content.
    Kindly help me out.
    Regards,
    Guddan

    Hi Rick,
    If you go to SO01, you will find there that  we need to set the mail body and subject line there and also specify some mail IDs there. So i want that mail body field and email IDs to be prepopulated....
    I know how to navigate user to SO01 screen but how should i prepopulate the message body in SO01.
    Regards,
    Guddan

  • Email StartPoint: Process new mail only if attachment is found.

    Hi,
    On each new mail my process is getting invoked. It downloads the attachment and save it. But when mail with no attachment is received it send back an error message to the sender. Also the all processed mail are getting deleted from the mail server (mail is configured on my personal domain).
    So I need that process should invoked only when the attachment is found and after processing it, delete that mail. If no attachment is found then leave it as it is.
    Pls help.
    Abhinav

    Email Receive Activity has an option to filter emails based on Attachment MIME type.
    You can create a continuous running process which looks for emails with attachments. If email successfully retrieved, invoke the primary process, otherwise
    loop back and wait for next email.
    Make sense?
    Nith

  • Create hyperlink for reply to in mail body while sending email.

    Hi All,
    We have a requirement where we need to create an hyperlink for reply to in the mail body.
    We have implemented entire functionality using CL_BCS classes and everything is working fine.
    Only problem we have is when we give document type as HTM instead of RAW then entire formatting of mail body gets disturbed although we get the hyperlink.
    Is there any way where we can send the mail in html format using CL_BCS,CL_DOCUMENT_BCS ?
    KR Jaideep,

    Hi ,
    Please find the code below I am using to make the hyperlink. Do I need to fill the entire mail body using HTML Tags ? If yes, then I guess it will increase the complexity of program as the mail content will vary from one mail to another depending upon whether different invoice documents have text maintained in them.
    lwa_text = '<html>'.
        APPEND lwa_text TO li_text.
        CLEAR lwa_text.
        lwa_text = '<body>'.
        APPEND lwa_text TO li_text.
        CLEAR lwa_text.
        lwa_text = text-012.
        APPEND lwa_text TO li_text.
        CLEAR lwa_text.
        CONCATENATE '<a href="mailto:'
                    lv_receiver
                    '">'
                    lv_receiver
                    '</a>'
               INTO lwa_text.
        APPEND lwa_text TO li_text.
        CLEAR lwa_text.
        lwa_text = '</body>'.
        APPEND lwa_text TO li_text.
        CLEAR lwa_text.
        lwa_text = '</html>'.
        APPEND lwa_text TO li_text.
        CLEAR lwa_text.
        TRY.
            CALL METHOD cl_document_bcs=>create_from_text
              EXPORTING
                i_text         = li_text
                i_documenttype = 'HTM'
                i_subject      = 'Test for hyperlink'
                i_importance   = '1'
                i_sensitivity  = 'P'
              RECEIVING
                result         = lref_document_bcs.
          CATCH cx_document_bcs .
        ENDTRY.

Maybe you are looking for

  • Some websites wont cache

    I have browser.cache.check_doc_frequency set to 2 but some webpages simply will not cache. Is there a way to force this? Memory use is not an issue

  • Process Instruction Category for the online inspection in process industry

    Dear Gurus , I will have to add online quality inspection in the PI SHEET so please suggest me the process instruction category for the same . Abhi

  • Safari and Firefox loading wrong pages since 10.6.5 update

    I have an issue on two completely separate Macs since upgrading them to 10.6.5. After a few hours use, links within some web pages, in Safari or Firefox, will resolve to very random places. For example I click a news article link on the Yahoo home pa

  • About menu display in chrome on Mac os

    Hello, I have a problem with my website menu, it doesn't display correctly only in google chrome on Mac os. The words in the menu titles are like we pressed enter button before the last letter of the word, it dislays in the bottom of the word. For ex

  • Passing CDPOS to a workflow?

    I'm trying to trigger a workflow when MARA-TMART and/or MARA-TEMPB are changed.  I created a 'Z' subtype to BUS1001, delegated the z subtype, and created a new event on the z subtype.  I created a single SWEC entry to trigger the new event when eithe