Attachments are wrong after sending in Mail

Hi,
I used Apple Mail yesterday to send a message via Gmail. I attached two images that are about 1.5 MB each, thinking that I'd be able to pull them today from my Sent Mail to print, but they're showing up as 105 KB files, and not as attachments - they're just embedded in the body of the email. When I composed the email I clicked "attach" and went through the finder, I didn't just copy and paste.
What did I do wrong, and more importantly, is there a way I can get these files today? I sent the email to a Google Group address if that makes a difference.
Thanks!
Mardie

You can just Secure Empty Trash and that will delete them without an error.

Similar Messages

  • In mail attachments are not deleted even though mail is deleted

    In mail attachments are not deleted even though mail is deleted

    Check on your server to see what maiul options are selected.  If your mail account is set to "download all attachments automatically", that may be an option you want to de-select.

  • Problem with the ALV after sending the mail

    Good Morning Experts
    I have a small issue with the ALV. I have a program, which has to sent email. In My program initially I am displaying basic list in the alv and user can navigate to secondary list also, by clicking on a contract number in the basic list.
    I gave a tool button in the tool bar to the user in the basic list, to send the mail. When the user clicks on the I have to send the mail both the lists, basic list and seconday list in the mail as separate attachments.
    Mail is going fine and later if the user chooses to see any contract in detail(Secondary List), that time ALV giving dump with message type X. And it is stopping some where in the ALV code
    call method cl_gui_cfw=>get_subscriber_by_id
           exporting shellid = p_handle-shellid
           exceptions others = 1.
      if sy-subrc = 0.
        </B>message X007 with p_handle-clsid.<B>
      endif.
    If anybody having an Idea, how to resolve it, please tell me.
    Thanks in Advance
    Praveen

    Please find the code for user_command form and sending the mail. Please look into this advice me if anything wrongly I coded.
    *&      Form  user_command
    FORM user_command USING r_ucomm LIKE sy-ucomm
                                  rs_selfield TYPE slis_selfield.
      IF r_ucomm EQ '&IC1' OR r_ucomm EQ 'SHOW'.
        REFRESH: it_all[],
                 it_fcat1[],
                 it_sort[].
        LOOP AT it_final INTO wa_final WHERE select EQ 'X' OR xblnr EQ rs_selfield-value.
          LOOP AT it_bsid INTO wa_bsid WHERE xblnr EQ wa_final-xblnr AND zuonr IS INITIAL.
            wa_all = wa_bsid.
            wa_all = wa_bsid.
            wa_all-booked = wa_bsid-dmbtr.
            IF wa_bsid-augdt IS NOT INITIAL AND wa_bsid-augbl IS NOT INITIAL.
              wa_all-paid = wa_bsid-dmbtr.
            ENDIF.
            wa_all-amtr = wa_all-booked - wa_all-paid.
            APPEND wa_all TO it_all.
            CLEAR: wa_all,
                   wa_bsid.
          ENDLOOP.
          LOOP AT it_bsad INTO wa_bsad WHERE xblnr EQ wa_final-xblnr AND zuonr IS INITIAL.
            wa_all = wa_bsad.
            wa_all-booked = wa_bsad-dmbtr.
            IF wa_bsad-augdt IS NOT INITIAL AND wa_bsad-augbl IS NOT INITIAL.
              wa_all-paid = wa_bsad-dmbtr.
            ENDIF.
            wa_all-amtr = wa_all-booked - wa_all-paid.
            APPEND wa_all TO it_all.
            CLEAR: wa_all,
                   wa_bsad.
          ENDLOOP.
        ENDLOOP.
        SORT it_all BY xblnr.
        PERFORM fill_fcat2.
        CALL FUNCTION 'REUSE_ALV_GRID_DISPLAY'
         EXPORTING
            i_callback_program                = sy-repid
            i_callback_top_of_page            = 'TOP_OF_PAGE'
            i_grid_title                      = 'Report to display selected contracts'
            is_layout                         = wa_layout1
            it_fieldcat                       = it_fcat1[]
       I_CALLBACK_USER_COMMAND           = 'USER_COMMAND'
            IT_SORT                           = it_sort[]
            i_default                         = 'X'
            i_save                            = 'A'
            is_variant                        = wa_variant
          TABLES
            t_outtab                          = it_all[]
    EXCEPTIONS
      PROGRAM_ERROR                     = 1
      OTHERS                            = 2
        IF sy-subrc <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
            WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
        ENDIF.
      ENDIF.
      CASE r_ucomm.
        WHEN 'BACK1' OR 'EXT1'.
          PERFORM exit IN PROGRAM  saplslvc_fullscreen.
        WHEN '&F12' or 'CANCEL'.
          PERFORM exit IN PROGRAM  saplslvc_fullscreen.
        WHEN 'MAIL'.
           PERFORM prepare_mail.
      ENDCASE.
    ENDFORM.                    "user_command
    *&      Form  prepare_mail
          text
    -->  p1        text
    <--  p2        text
    FORM prepare_mail .
      DATA:
           l_lay    TYPE pri_params-paart,
           l_line  TYPE pri_params-linct,
           l_cols   TYPE pri_params-linsz,
           l_val    TYPE c,
           i_spno   TYPE tsp01-rqident,
           i_lines  TYPE i,
           i_bin    TYPE i,
           i_pack_list LIKE sopcklsti1 OCCURS 0 WITH HEADER LINE,
           i_recivers LIKE somlreci1 OCCURS 0 WITH HEADER LINE,
           i_contents LIKE solisti1 OCCURS 0 WITH HEADER LINE,
           i_header    LIKE solisti1  OCCURS 0 WITH HEADER LINE,
           i_docdata   LIKE sodocchgi1,
           i_excel     LIKE solisti1 OCCURS 0 WITH HEADER LINE.
      i_pos    type i.
      TYPES:
         t_pripar TYPE pri_params,
         t_arcpar TYPE arc_params.
      "Work areas
      DATA:
         lw_pripar TYPE t_pripar,
         lw_arcpar TYPE t_arcpar,
         w_no_of_bytes TYPE i.
      l_lay   = 'X_65_255'.
      l_line  = 65.
      l_cols  = 255.
      "Read, determine, change spool print parameters and archive parameters
      CALL FUNCTION 'GET_PRINT_PARAMETERS'
        EXPORTING
          in_archive_parameters  = lw_arcpar
          in_parameters          = lw_pripar
          layout                 = l_lay
          line_count             = l_line
          line_size              = l_cols
          no_dialog              = 'X'
        IMPORTING
          out_archive_parameters = lw_arcpar
          out_parameters         = lw_pripar
          valid                  = l_val
        EXCEPTIONS
          archive_info_not_found = 1
          invalid_print_params   = 2
          invalid_archive_params = 3
          OTHERS                 = 4.
    *l_val eq space
      IF  sy-subrc = 0.
        lw_pripar-prrel = space.
        lw_pripar-primm = space.
        NEW-PAGE PRINT ON
          NEW-SECTION
          PARAMETERS lw_pripar
          ARCHIVE PARAMETERS lw_arcpar
          NO DIALOG.
      ENDIF.
      DATA: ls_prnt TYPE slis_print_alv.
      ls_prnt-print = ''.
      ls_prnt-prnt_title = 'X'.
      ls_prnt-no_coverpage = 'X'.
      CALL FUNCTION 'REUSE_ALV_GRID_DISPLAY'
       EXPORTING
          i_callback_program                = sy-repid
          i_callback_top_of_page            = 'TOP_OF_PAGE'
          i_grid_title                      = 'Report to display collection pattern on Clearing Date'
          is_layout                         = wa_layout
          it_fieldcat                       = it_fcat[]
          i_callback_user_command           = 'USER_COMMAND'
          i_callback_pf_status_set          = 'PF_STATUS_SET'
       IT_SORT                           = it_sort[]
          i_default                         = 'X'
          i_save                            = 'A'
          is_variant                        = wa_variant
        TABLES
          t_outtab                          = it_final[]
    EXCEPTIONS
      PROGRAM_ERROR                     = 1
      OTHERS                            = 2
      IF sy-subrc <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
            WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
      ENDIF.
    WRITE 'Test program to generate and download as PDF'.
      NEW-PAGE PRINT OFF.
      CALL FUNCTION 'ABAP4_COMMIT_WORK'.
      i_spno = sy-spono.
      CALL FUNCTION 'CONVERT_ABAPSPOOLJOB_2_PDF'
        EXPORTING
          src_spoolid   = i_spno
          no_dialog     = 'X'
        IMPORTING
          pdf_bytecount = w_no_of_bytes
         pdf_spoolid   = w_pdf_spoolid
         btc_jobname   = w_jobname
         btc_jobcount  = w_jobcount
        TABLES
          pdf           = it_pdf.
      LOOP AT it_pdf INTO wa_pdf.
        IF w_pos = 34170.
          PERFORM attach.
        ENDIF.
        w_stuff+w_pos(134) = wa_pdf.
        ADD 134 TO w_pos.
      ENDLOOP.
      IF NOT ( w_stuff IS INITIAL ).
        PERFORM attach.
      ENDIF.
      CLEAR wa_pdf.
      PERFORM fill_receivers TABLES i_recivers.
      PERFORM fill_contents TABLES i_contents.
      DESCRIBE TABLE i_contents LINES i_lines.
      READ TABLE i_contents INDEX i_lines.
      CLEAR i_pack_list-transf_bin.
      i_pack_list-head_start = 1.
      i_pack_list-head_num = 1.
      i_pack_list-body_start = 2.
      i_pack_list-body_num = i_lines.
      i_pack_list-doc_type = 'RAW'.
      APPEND i_pack_list.
      CLEAR i_pack_list.
    *u2022  Attachment (pdf-Attachment)
    CONCATENATE p_date6(2) p_date4(2) p_date+0(4) INTO w_date1 SEPARATED BY '.'.
      DESCRIBE TABLE it_att LINES i_lines.
      READ TABLE it_att INTO wa_att INDEX i_lines.
      i_pack_list-transf_bin = 'X'.
      i_pack_list-head_start = '1'.
      i_pack_list-head_num = '0'.
      i_pack_list-body_start = '1'.
      i_pack_list-body_num = i_lines.
      i_pack_list-doc_type = 'PDF'.
      i_pack_list-obj_name = 'Renewal List'.
      CONCATENATE 'Report to display outstanding premium' 'Executed on' w_date1 INTO i_pack_list-obj_descr SEPARATED BY space.
    i_pack_list-obj_descr = 'Exchange Rates uploaded to the database'.
      i_pack_list-obj_langu = 'E'.
      i_pack_list-doc_size = i_lines * 255.
      APPEND i_pack_list.
      CLEAR i_pack_list.
      REFRESH: it_pdf[].
      CLEAR wa_pdf.
      REFRESH: it_all[],
                it_fcat1[],
                it_sort[].
      LOOP AT it_final INTO wa_final.
        LOOP AT it_bsid INTO wa_bsid WHERE xblnr EQ wa_final-xblnr AND zuonr IS INITIAL.
          wa_all = wa_bsid.
          wa_all-booked = wa_bsid-dmbtr.
          IF wa_bsid-augdt IS NOT INITIAL AND wa_bsid-augbl IS NOT INITIAL.
            wa_all-paid = wa_bsid-dmbtr.
          ENDIF.
          wa_all-amtr = wa_all-booked - wa_all-paid.
          APPEND wa_all TO it_all.
          CLEAR: wa_all,
                 wa_bsid.
        ENDLOOP.
        LOOP AT it_bsad INTO wa_bsad WHERE xblnr EQ wa_final-xblnr AND zuonr IS INITIAL.
          wa_all = wa_bsad.
          wa_all-booked = wa_bsad-dmbtr.
          IF wa_bsad-augdt IS NOT INITIAL AND wa_bsad-augbl IS NOT INITIAL.
            wa_all-paid = wa_bsad-dmbtr.
          ENDIF.
          wa_all-amtr = wa_all-booked - wa_all-paid.
          APPEND wa_all TO it_all.
          CLEAR: wa_all,
                 wa_bsad.
        ENDLOOP.
      ENDLOOP.
       NEW-PAGE PRINT ON
          NEW-SECTION
          PARAMETERS lw_pripar
          ARCHIVE PARAMETERS lw_arcpar
          NO DIALOG.
    ENDIF.
      SORT it_all BY xblnr.
      PERFORM fill_fcat2.
      CALL FUNCTION 'REUSE_ALV_GRID_DISPLAY'
       EXPORTING
          i_callback_program                = sy-repid
          i_callback_top_of_page            = 'TOP_OF_PAGE'
          i_grid_title                      = 'Report to display selected contracts'
          is_layout                         = wa_layout1
          it_fieldcat                       = it_fcat1[]
       I_CALLBACK_USER_COMMAND           = 'USER_COMMAND'
          it_sort                           = it_sort[]
          i_default                         = 'X'
          i_save                            = 'A'
          is_variant                        = wa_variant
        TABLES
          t_outtab                          = it_all[]
    EXCEPTIONS
      PROGRAM_ERROR                     = 1
      OTHERS                            = 2
      IF sy-subrc <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
            WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
      ENDIF.
      NEW-PAGE PRINT OFF.
      CALL FUNCTION 'ABAP4_COMMIT_WORK'.
      i_spno = sy-spono.
      CALL FUNCTION 'CONVERT_ABAPSPOOLJOB_2_PDF'
        EXPORTING
          src_spoolid   = i_spno
          no_dialog     = 'X'
        IMPORTING
          pdf_bytecount = w_no_of_bytes
         pdf_spoolid   = w_pdf_spoolid
         btc_jobname   = w_jobname
         btc_jobcount  = w_jobcount
        TABLES
          pdf           = it_pdf.
    LOOP AT it_pdf INTO wa_pdf.
        IF w_pos = 34170.
          PERFORM attach1.
        ENDIF.
        w_stuff+w_pos(134) = wa_pdf.
        ADD 134 TO w_pos.
      ENDLOOP.
      IF NOT ( w_stuff IS INITIAL ).
        PERFORM attach1.
      ENDIF.
      CLEAR wa_pdf.
    DESCRIBE TABLE it_att LINES i_lines.
      ADD 1 TO i_lines.
      DESCRIBE TABLE it_att1 LINES i_bin.
      READ TABLE it_att1 INTO wa_att INDEX i_bin.
    DESCRIBE TABLE it_att LINES i_lines.
    READ TABLE it_att INTO wa_att INDEX i_lines.
      i_pack_list-transf_bin = 'X'.
      i_pack_list-head_start = '1'.
      i_pack_list-head_num = '0'.
      i_pack_list-body_start = i_lines.
      i_pack_list-body_num = i_bin.
      i_pack_list-doc_type = 'PDF'.
      i_pack_list-obj_name = 'Renewal List-Details'.
      CONCATENATE 'Outstanding Premium-Details' w_date1 INTO i_pack_list-obj_descr SEPARATED BY space.
    i_pack_list-obj_descr = 'Exchange Rates uploaded to the database'.
      i_pack_list-obj_langu = 'E'.
      i_pack_list-doc_size = i_bin * 255.
      APPEND i_pack_list.
      CLEAR i_pack_list.
      APPEND LINES OF it_att1 to it_att.
      i_docdata-obj_name = 'Renewal List'.
      CONCATENATE 'Oustanding Premium' 'as on' w_date1 INTO i_docdata-obj_descr SEPARATED BY space.
      CONDENSE i_docdata-obj_descr.
      i_docdata-obj_langu = 'E'.
      i_docdata-obj_prio = '1'.
      i_docdata-no_change = 'X'.
      i_docdata-sensitivty = 'F'.
      i_docdata-doc_size = ( i_lines - 1 ) * 255 + STRLEN( wa_att ).
    ***Data for Header
      i_header-line = 'Header'. APPEND i_header.
      CALL FUNCTION 'SO_NEW_DOCUMENT_ATT_SEND_API1'
        EXPORTING
          document_data              = i_docdata
          commit_work                = 'X'
        TABLES
          packing_list               = i_pack_list[]
          object_header              = i_header
          contents_bin               = it_att[]
          contents_txt               = i_contents[]
          receivers                  = i_recivers[]
        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.
      IF sy-subrc <> 0.
      ELSE.
        MESSAGE 'Document Sent' TYPE 'S'.
      ENDIF.
    ENDFORM.                    " prepare_mail
    Thanks
    Praveen

  • I have OSX Maverick on an iMac using Outlook e-mail.  PDF attachments are included in the e-mail  as the whole document rather than just the PDF icon.  How can i have just the PDF icon as an attachment?

    In Outlook my PDF attachments appear as whole documents and not just the PDF icon.  How can I have attachments included as PDF icons and not the documents?

    For your own viewing, you can of course control-click on the attachment and select "View as Icon".
    For others' viewing, it depends upon their email reader.  To ensure that attachments are not displayed expicitly you can put them all in a zip file (via control click and "Compress") then attaching them, or you can use third party stuff like Attachment Tamer.
    charlie

  • Draft emails not deleting after sending via Mail.app

    When I compose an email a copy of that get auto saved in the Draft folder and should delete itself once I press send but that is not the case.  After I press send I can see a copy in my Sent folder AND in the Draft folder.  It only seems to happen with some emails that have attachments even with very small file sizes.
    Has anyone else had this problem and is there a fix? 
    Email is my business and I can't have unpredictable behaviour like this.  When I see the same message in my Draft and Sent folders its impossible to tell if it has actually been sent.  I have to follow up with a phone call to verify receipt.  Ridiculous!
    Here are my relevant specs:
    IMAP email service
    OSX 10.6.8
    Mail.app
    If you have a fix, thanks in advance.

    When I compose an email a copy of that get auto saved in the Draft folder and should delete itself once I press send but that is not the case.  After I press send I can see a copy in my Sent folder AND in the Draft folder.  It only seems to happen with some emails that have attachments even with very small file sizes.
    Has anyone else had this problem and is there a fix? 
    Email is my business and I can't have unpredictable behaviour like this.  When I see the same message in my Draft and Sent folders its impossible to tell if it has actually been sent.  I have to follow up with a phone call to verify receipt.  Ridiculous!
    Here are my relevant specs:
    IMAP email service
    OSX 10.6.8
    Mail.app
    If you have a fix, thanks in advance.

  • Outlook 2011 Mac local subfolders are disappearing after "send and receive"

    After working for long time without a issue, Outlook 2011 Mac (with all updates) start to show a strange habit:
    Fresh from the start the application shows all local subfolders as usual.
    After a send and receive of all mail suddenly all subfolders are disappearing.
    I have to restart the application to regain access to the subfolders.
    Tried a rebuild of the database and a safe boot with no luck. Any suggestion is appreciated. Thanks!

    xdude29 did you ever get this problem sorted out. I am encountering the exact same problem and have to quit outlook and restart to find my folders again.

  • Gui-Session canceld after sending E-Mail

    Hello together,
    after client installation of Windows 7 - 64 bit and SAP Gui 7:30 PL7 occurred in a small number of SAP users following error.
    SAP Gui session is sporadically shot down by sending an e-mail from Outlook 2003. All registered Sap applications and the SAP Gui falling.
    In the client - event viewer no indication of the cause. So far, no installation errors Sapseitig known.
    regards,
    Michael
    Sap-Basis

    Hi Micheal
    Kindly refer the SAP Note, apply the latest patch level
    1981804 - SAPGUI ALVGrid : All SAP GUI sessions closes completely
    BR
    SS

  • SCCM Subscription Email Attachments Are Wrong

    Hello,
    I have set up some subscritions for reports within SCCM. The problem I have is when they are emailed to me the filetype is wrong on the attached report.
    For example:
    pdf reports come as: .applicationpdf
    excel reports come as: .applicationvnd.ms-excel
    Any help as to how I can fix this?
    Cheers

    Hi,
    There are too many things affecting the attachments. You could try to use OWA test if the format of attachments will be changed.
    Best Regards,
    Joyce
    We
    are trying to better understand customer views on social support experience, so your participation in this
    interview project would be greatly appreciated if you have time.
    Thanks for helping make community forums a great place.

  • Mail w/attachments are received in body of mail

    I have an imac G5, Mac OS X (10.5.8), mail 3.6.  When I send an e-mail with an attachment, either a photo or a document, to a PC user, old or new, the attachment is received and shown in the body of the mail.  There IS NO attachment;  NO paper clip;  the photo or file is in the body of the mail and cannot be copied, pasted, etc.  This problem seems to have started when I installed Leopard.  I have noticed others in "discussions" having the same problem.
    It does not matter what proceedure I use when adding attachment, the receiver has no seperate attachment.  I have check marked "windows friendly" box.

    THIS LINK HAS SOLVED MY PROBLEM:
    Turn off 3G
    Turn off Cellular Data service
    Reset Network Settings (you will lose all wifi settings)
    Delete all the email accounts (will lose all mails)
    Disable push and fetch mail features.
    Reboot phone
    Re-add each email address one by one
    Re-enable the fetch and push features for the emails
    Re-enable 3G
    Re-enable Cellular Data service
    Re-Add your wifi networks and passwords.

  • Why are the K-thermoco​uple values (first DAQmx channel) are wrong after creating second (voltage type) DAQmx channel?

    I am trying to Creating an Analog Input Task with Multiple Measurement Types: Voltage and K-thermocouples (the system is PCI6034E – SCXI1000 –SCXI1122-SCXI1322). It does not work properly: as soon as I add second "DAQmx create channel" for voltage I start reading wrong K-thermocouple values  (100-160 deg C instead of 24.3-24.7) and it does not depend on sampling rate, etc. The Labview example "Multiplechannels_Created.vi" gives me same wrong temperatures. Did somebody meet this problem? Thanks.

    Lorne,
    Thank you, for detail explanation about temperature shift.
    I am sorry for confusion. The program, which was attached in my previous message: DAQ_Task is not working properly with my hardware as I have already described it above. Do you have any ideas where can it be a problem: PCI6034E?, Chasse?, thermocouples?, Computer?
    As I mentioned, currently, another approach for  Temperature and Voltage data acquisition (see attached file) is realized, but it will be not suitable for fast data acquisition tasks.
    With best regards,
    Donatas
    Attachments:
    Data_Log.zip ‏144 KB

  • Photosmart 7510 aio - Colors are wrong after changing Magenta Cartridge

    Hi,
    I have an isue where my 7510 aio printer wont print Yellow and coloer scheme seems all messed up after changing the Magenta Cartridge yesterday.
    All other cartridiges was not changed but for some reason the color cheme of the printer is messed up. I tried another Magenta Cartridge but it still seem strange.
    When I print out a status report the
      - Foto-Color is more brown than black.
      - The Magenta looks ok (Very pink)
      - Cyan is blue / purple looking
      - Yellow is Orange
      - Black is ok black.
    I tried running a clean and adjust but non of that works.
    I tried taking out all cartrigdes and re-inserting them and that wont work either.
    Anybody has an idea of what could be wrong and how I can correct it?
    Thanks
    Jakob

    Hello NikDk, and welcome to the HP Forums, I hope you enjoy your experience!
    I see you're having print quality issues.  I would like to help with that!
    First thing I would suggest, would be a power reset.  Disconnect the power cord from the printer and the power outlet, then wait 60 seconds. After 60 seconds, plug the printer back in. Ensure you plug the printer directly to a wall outlet. Make sure to bypass any sort of surge protector or power bar.
    Second, I would recommend utilizing this document on Fixing Ink Streaks, Faded Prints, and Other Common Print Quality Problems.
    Good luck and please let me know the results of your troubleshooting steps. Thank you for posting on the HP Forums!
    Please click “Accept as Solution " if you feel my post solved your issue, it will help others find the solution.
    Click the “Kudos, Thumbs Up" on the right to say “Thanks" for helping!
    Jamieson
    I work on behalf of HP
    "Remember, I'm pulling for you, we're all in this together!" - Red Green.

  • Safari Crashes After Sending E-mail

    Hello all,
    It happens almost every time, including after today's Safari update and the latest OSX update. Below is today's crash report. Thanks very much. James
    Process: Safari [427]
    Path: /Applications/Safari.app/Contents/MacOS/Safari
    Identifier: com.apple.Safari
    Version: 3.2.1 (5525.27.1)
    Build Info: WebBrowser-55252701~1
    Code Type: X86 (Native)
    Parent Process: launchd [157]
    Date/Time: 2009-01-06 14:55:11.966 -1000
    OS Version: Mac OS X 10.5.6 (9G55)
    Report Version: 6
    Exception Type: EXCBADACCESS (SIGSEGV)
    Exception Codes: KERNINVALIDADDRESS at 0x0000000032363034
    Crashed Thread: 0
    Thread 0 Crashed:
    0 com.apple.WebCore 0x965fbcba WebCore::DeprecatedValueListImpl::~DeprecatedValueListImpl() + 10
    1 com.apple.WebCore 0x96610afe WebCore::EventTarget::removeAllEventListeners(WebCore::EventTargetNode*) + 30
    2 com.apple.WebCore 0x96610ad8 WebCore::EventTargetNode::removeAllEventListeners() + 24
    3 com.apple.WebCore 0x96610a72 WebCore::Document::removeAllDisconnectedNodeEventListeners() + 82
    4 com.apple.WebCore 0x966109b0 WebCore::Document::removeAllEventListenersFromAllNodes() + 32
    5 com.apple.WebCore 0x965b8135 WebCore::FrameLoader::stopLoading(bool) + 533
    6 com.apple.WebCore 0x965b80a4 WebCore::FrameLoader::stopLoading(bool) + 388
    7 com.apple.WebCore 0x965b7e42 WebCore::FrameLoader::closeURL() + 34
    8 com.apple.WebCore 0x96736386 WebCore::FrameLoader::detachFromParent() + 38
    9 com.apple.WebKit 0x93182d10 -[WebView(WebPrivate) _close] + 96
    10 com.apple.Safari 0x0003b6a6 0x1000 + 239270
    11 com.apple.Safari 0x0003b1c1 0x1000 + 238017
    12 com.apple.Safari 0x0003aff3 0x1000 + 237555
    13 com.apple.Safari 0x0003ae99 0x1000 + 237209
    14 com.apple.AppKit 0x91561759 -[NSWindowController _windowDidClose] + 220
    15 com.apple.Safari 0x0003a8a4 0x1000 + 235684
    16 com.apple.Safari 0x0003a802 0x1000 + 235522
    17 com.apple.CoreFoundation 0x91c91a3d _invoking__ + 29
    18 com.apple.CoreFoundation 0x91c91428 -[NSInvocation invoke] + 136
    19 com.apple.CoreFoundation 0x91c914f8 -[NSInvocation invokeWithTarget:] + 72
    20 com.apple.WebKit 0x93163b4f -[_WebSafeForwarder forwardInvocation:] + 367
    21 com.apple.CoreFoundation 0x91c9196a __forwarding__ + 986
    22 com.apple.CoreFoundation 0x91c919d2 CF_forwarding_prep0 + 50
    23 com.apple.WebKit 0x931855dd -[WebView(WebPrivate) _closeWindow] + 61
    24 com.apple.Foundation 0x93eb922e __NSFireDelayedPerform + 382
    25 com.apple.CoreFoundation 0x91c12b25 CFRunLoopRunSpecific + 4469
    26 com.apple.CoreFoundation 0x91c12cd8 CFRunLoopRunInMode + 88
    27 com.apple.HIToolbox 0x9627a2c0 RunCurrentEventLoopInMode + 283
    28 com.apple.HIToolbox 0x9627a0d9 ReceiveNextEventCommon + 374
    29 com.apple.HIToolbox 0x96279f4d BlockUntilNextEventMatchingListInMode + 106
    30 com.apple.AppKit 0x913e0d7d _DPSNextEvent + 657
    31 com.apple.AppKit 0x913e0630 -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 128
    32 com.apple.Safari 0x0000808e 0x1000 + 28814
    33 com.apple.AppKit 0x913d966b -[NSApplication run] + 795
    34 com.apple.AppKit 0x913a68a4 NSApplicationMain + 574
    35 com.apple.Safari 0x000b9b16 0x1000 + 756502
    Thread 1:
    0 libSystem.B.dylib 0x933553ae _semwaitsignal + 10
    1 libSystem.B.dylib 0x9337fd0d pthreadcondwait$UNIX2003 + 73
    2 com.apple.WebCore 0x9659d8ff WebCore::IconDatabase::syncThreadMainLoop() + 239
    3 com.apple.WebCore 0x96556065 WebCore::IconDatabase::iconDatabaseSyncThread() + 181
    4 libSystem.B.dylib 0x9337f095 pthreadstart + 321
    5 libSystem.B.dylib 0x9337ef52 thread_start + 34
    Thread 2:
    0 libSystem.B.dylib 0x9334e1c6 machmsgtrap + 10
    1 libSystem.B.dylib 0x933559bc mach_msg + 72
    2 com.apple.CoreFoundation 0x91c120ae CFRunLoopRunSpecific + 1790
    3 com.apple.CoreFoundation 0x91c12cd8 CFRunLoopRunInMode + 88
    4 com.apple.CFNetwork 0x9411e052 CFURLCacheWorkerThread(void*) + 396
    5 libSystem.B.dylib 0x9337f095 pthreadstart + 321
    6 libSystem.B.dylib 0x9337ef52 thread_start + 34
    Thread 3:
    0 libSystem.B.dylib 0x9334e1c6 machmsgtrap + 10
    1 libSystem.B.dylib 0x933559bc mach_msg + 72
    2 com.apple.CoreFoundation 0x91c120ae CFRunLoopRunSpecific + 1790
    3 com.apple.CoreFoundation 0x91c12cd8 CFRunLoopRunInMode + 88
    4 com.apple.Safari 0x00118d4d 0x1000 + 1146189
    5 com.apple.Safari 0x00117fd3 0x1000 + 1142739
    6 com.apple.Safari 0x00118081 0x1000 + 1142913
    7 libSystem.B.dylib 0x9337f095 pthreadstart + 321
    8 libSystem.B.dylib 0x9337ef52 thread_start + 34
    Thread 4:
    0 libSystem.B.dylib 0x9334e1c6 machmsgtrap + 10
    1 libSystem.B.dylib 0x933559bc mach_msg + 72
    2 com.apple.CoreFoundation 0x91c120ae CFRunLoopRunSpecific + 1790
    3 com.apple.CoreFoundation 0x91c12cd8 CFRunLoopRunInMode + 88
    4 com.apple.Foundation 0x93ee7d40 +[NSURLConnection(NSURLConnectionReallyInternal) _resourceLoadLoop:] + 320
    5 com.apple.Foundation 0x93e847ed -[NSThread main] + 45
    6 com.apple.Foundation 0x93e84394 _NSThread__main_ + 308
    7 libSystem.B.dylib 0x9337f095 pthreadstart + 321
    8 libSystem.B.dylib 0x9337ef52 thread_start + 34
    Thread 5:
    0 libSystem.B.dylib 0x9339d6f2 select$DARWIN_EXTSN + 10
    1 libSystem.B.dylib 0x9337f095 pthreadstart + 321
    2 libSystem.B.dylib 0x9337ef52 thread_start + 34
    Thread 6:
    0 libSystem.B.dylib 0x9334e1c6 machmsgtrap + 10
    1 libSystem.B.dylib 0x933559bc mach_msg + 72
    2 ...romedia.Flash Player.plugin 0x17bb13fd Flash_EnforceLocalSecurity + 1188169
    3 libSystem.B.dylib 0x9337f095 pthreadstart + 321
    4 libSystem.B.dylib 0x9337ef52 thread_start + 34
    Thread 7:
    0 libSystem.B.dylib 0x9334e20e semaphorewait_signaltrap + 10
    1 libSystem.B.dylib 0x93380206 pthread_condwait + 1267
    2 libSystem.B.dylib 0x933c5539 pthreadcondwait + 48
    3 ...romedia.Flash Player.plugin 0x17a761fc 0x176de000 + 3768828
    4 ...romedia.Flash Player.plugin 0x17aae034 Flash_EnforceLocalSecurity + 126336
    5 ...romedia.Flash Player.plugin 0x17a764a6 0x176de000 + 3769510
    6 libSystem.B.dylib 0x9337f095 pthreadstart + 321
    7 libSystem.B.dylib 0x9337ef52 thread_start + 34
    Thread 8:
    0 libSystem.B.dylib 0x9334e20e semaphorewait_signaltrap + 10
    1 libSystem.B.dylib 0x93380206 pthread_condwait + 1267
    2 libSystem.B.dylib 0x933c5539 pthreadcondwait + 48
    3 ...romedia.Flash Player.plugin 0x17a761fc 0x176de000 + 3768828
    4 ...romedia.Flash Player.plugin 0x17aae034 Flash_EnforceLocalSecurity + 126336
    5 ...romedia.Flash Player.plugin 0x17a764a6 0x176de000 + 3769510
    6 libSystem.B.dylib 0x9337f095 pthreadstart + 321
    7 libSystem.B.dylib 0x9337ef52 thread_start + 34
    Thread 0 crashed with X86 Thread State (32-bit):
    eax: 0x32363034 ebx: 0x965b7f38 ecx: 0x1b605664 edx: 0x1b605700
    edi: 0x1536a050 esi: 0x32363034 ebp: 0xbfffe658 esp: 0xbfffe640
    ss: 0x0000001f efl: 0x00010282 eip: 0x965fbcba cs: 0x00000017
    ds: 0x0000001f es: 0x0000001f fs: 0x00000000 gs: 0x00000037
    cr2: 0x32363034
    Binary Images:
    0x1000 - 0x1d7fe2 com.apple.Safari 3.2.1 (5525.27.1) <66278f41bc085c64e0f06ff487af4adc> /Applications/Safari.app/Contents/MacOS/Safari
    0x223000 - 0x232ff8 SyndicationUI ??? (???) <3035596b5d8997173c4b644c76b945db> /System/Library/PrivateFrameworks/SyndicationUI.framework/Versions/A/Syndicatio nUI
    0x51b000 - 0x51dffe com.apple.AutomatorCMM 1.1 (160) <486fc9906e74a1578eecf2f84ddfed06> /System/Library/Contextual Menu Items/AutomatorCMM.plugin/Contents/MacOS/AutomatorCMM
    0x523000 - 0x524ffd com.apple.BluetoothMenu 2.1.3 (2.1.3f8) /System/Library/Contextual Menu Items/BluetoothContextualMenu.plugin/Contents/MacOS/BluetoothContextualMenu
    0x529000 - 0x52bfff com.apple.BezelServicesFW 1.4.925 (1.4.925) /System/Library/PrivateFrameworks/BezelServices.framework/Versions/A/BezelServi ces
    0x119c5000 - 0x11badfff com.apple.RawCamera.bundle 2.0.11 (410) <7704cc57f7daceb81672bfdc4434da40> /System/Library/CoreServices/RawCamera.bundle/Contents/MacOS/RawCamera
    0x142e2000 - 0x142e8fcb +com.roxio.ToastItPlugin ToastIt 1.1.2 (build 17) (1.1.2) /Users/jamespriest/Library/Contextual Menu Items/ToastIt.plugin/Contents/MacOS/ToastIt
    0x1430f000 - 0x14382ff7 com.apple.Bluetooth 2.1.3 (2.1.3f8) <1e2732edbd0f2c1db1ce5ecf06aa8192> /System/Library/Frameworks/IOBluetooth.framework/Versions/A/IOBluetooth
    0x143d0000 - 0x143d5fff com.apple.FolderActionsMenu 1.3.2 (1.3.2) <9ba69ef0bec96264a79fa28b3a5f058b> /System/Library/Contextual Menu Items/FolderActionsMenu.plugin/Contents/MacOS/FolderActionsMenu
    0x14b99000 - 0x14b9eff3 libCGXCoreImage.A.dylib ??? (???) <375e0cdb64b043378dbf637992bbfeb0> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCGXCoreImage.A.dylib
    0x157e2000 - 0x157e2ffe com.apple.JavaPluginCocoa 12.2.0 (12.2.0) <b08d1285182ffcbaedd747d17fdaeefd> /Library/Internet Plug-Ins/JavaPluginCocoa.bundle/Contents/MacOS/JavaPluginCocoa
    0x15fcc000 - 0x15fd2ffd com.apple.JavaVM 12.2.0 (12.2.0) <9ad39149cc7ecc91da3e93df7f61d315> /System/Library/Frameworks/JavaVM.framework/Versions/A/JavaVM
    0x1710b000 - 0x1712afed com.apple.audio.CoreAudioKit 1.5 (1.5) <82f2e52c502db7f3b32349a54209a0fe> /System/Library/Frameworks/CoreAudioKit.framework/Versions/A/CoreAudioKit
    0x1717d000 - 0x1718bfeb libSimplifiedChineseConverter.dylib ??? (???) <548d5a699dbe2bb8fcc8275321fdc0d4> /System/Library/CoreServices/Encodings/libSimplifiedChineseConverter.dylib
    0x17190000 - 0x171a2fff libTraditionalChineseConverter.dylib ??? (???) <89ec94121ef50601dc538548caae57fc> /System/Library/CoreServices/Encodings/libTraditionalChineseConverter.dylib
    0x171f8000 - 0x1724801f +com.DivXInc.DivXDecoder 6.0.5 (6.0.5) /Library/QuickTime/DivX 6 Decoder.component/Contents/MacOS/DivX 6 Decoder
    0x176de000 - 0x17ce7fdf +com.macromedia.Flash Player.plugin 9.0.151 (1.0.4f60) <f43004ffc4944f26af228334f2cda80b> /Library/Internet Plug-Ins/Flash Player.plugin/Contents/MacOS/Flash Player
    0x8fe00000 - 0x8fe2db43 dyld 97.1 (???) <100d362e03410f181a34e04e94189ae5> /usr/lib/dyld
    0x90003000 - 0x9004cfef com.apple.Metadata 10.5.2 (398.25) <e0572f20350523116f23000676122a8d> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadat a.framework/Versions/A/Metadata
    0x9004d000 - 0x9005dfff com.apple.speech.synthesis.framework 3.7.1 (3.7.1) <5171726062da2bd3c6b8b58486c7777a> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ SpeechSynthesis.framework/Versions/A/SpeechSynthesis
    0x90114000 - 0x9024cff7 libicucore.A.dylib ??? (???) <18098dcf431603fe47ee027a60006c85> /usr/lib/libicucore.A.dylib
    0x9025f000 - 0x90295fef libtidy.A.dylib ??? (???) <468dcda829b0307ea64cb1967605af0c> /usr/lib/libtidy.A.dylib
    0x90296000 - 0x906a6fef libBLAS.dylib ??? (???) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libBLAS.dylib
    0x907a4000 - 0x907cffe7 libauto.dylib ??? (???) <42d8422dc23a18071869fdf7b5d8fab5> /usr/lib/libauto.dylib
    0x907d0000 - 0x907d7fe9 libgcc_s.1.dylib ??? (???) <f53c808e87d1184c0f9df63aef53ce0b> /usr/lib/libgcc_s.1.dylib
    0x907d8000 - 0x90831ff7 libGLU.dylib ??? (???) /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
    0x90833000 - 0x90890ffb libstdc++.6.dylib ??? (???) <04b812dcec670daa8b7d2852ab14be60> /usr/lib/libstdc++.6.dylib
    0x908e3000 - 0x908eaff7 libCGATS.A.dylib ??? (???) <386dce4b28448fb86e33e06ac466f4d8> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCGATS.A.dylib
    0x908eb000 - 0x908f2fff com.apple.agl 3.0.9 (AGL-3.0.9) <2f39c480cfcee9358a23d61b20a6aa56> /System/Library/Frameworks/AGL.framework/Versions/A/AGL
    0x908f3000 - 0x9097efff com.apple.framework.IOKit 1.5.1 (???) <f9f5f0d070e197a832d86751e1d44545> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
    0x9097f000 - 0x90d1cfef com.apple.QuartzCore 1.5.7 (1.5.7) <2fed2dd7565c84a0f0c608d41d4d172c> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
    0x90d1d000 - 0x90d67fe1 com.apple.securityinterface 3.0.1 (35183) <f855cb06d2541ce544d9bcdf998b991c> /System/Library/Frameworks/SecurityInterface.framework/Versions/A/SecurityInter face
    0x90d68000 - 0x90d6bfff com.apple.help 1.1 (36) <b507b08e484cb89033e9cf23062d77de> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framewor k/Versions/A/Help
    0x90d6c000 - 0x90e1effb libcrypto.0.9.7.dylib ??? (???) <69bc2457aa23f12fa7d052601d48fa29> /usr/lib/libcrypto.0.9.7.dylib
    0x90e1f000 - 0x90e99ff8 com.apple.print.framework.PrintCore 5.5.3 (245.3) <222dade7b33b99708b8c09d1303f93fc> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ PrintCore.framework/Versions/A/PrintCore
    0x90e9a000 - 0x90f61ff2 com.apple.vImage 3.0 (3.0) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.fr amework/Versions/A/vImage
    0x90f62000 - 0x90fc8ffb com.apple.ISSupport 1.7 (38.2) /System/Library/PrivateFrameworks/ISSupport.framework/Versions/A/ISSupport
    0x91009000 - 0x91016fe7 com.apple.opengl 1.5.9 (1.5.9) <7e5048a2677b41098c84045305f42f7f> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
    0x911d4000 - 0x9129ffff com.apple.ColorSync 4.5.1 (4.5.1) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ColorSync.framework/Versions/A/ColorSync
    0x912be000 - 0x9139fff7 libxml2.2.dylib ??? (???) <d69560099d9eb32ba7f8a17baa65a28d> /usr/lib/libxml2.2.dylib
    0x913a0000 - 0x91b9efef com.apple.AppKit 6.5.6 (949.43) <a3a300499bbe4f1dfebf71d752d01916> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
    0x91b9f000 - 0x91cd2fff com.apple.CoreFoundation 6.5.5 (476.17) <4a70c8dbb582118e31412c53dc1f407f> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
    0x91cd3000 - 0x91cd8fff com.apple.backup.framework 1.0 (1.0) /System/Library/PrivateFrameworks/Backup.framework/Versions/A/Backup
    0x91d0e000 - 0x91d16fff com.apple.DiskArbitration 2.2.1 (2.2.1) <75b0c8d8940a8a27816961dddcac8e0f> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
    0x91d17000 - 0x91d21feb 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
    0x91d22000 - 0x91d22fff com.apple.Carbon 136 (136) <98a5e3bc0c4fa44bbb09713bb88707fe> /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
    0x91d23000 - 0x91d41fff libresolv.9.dylib ??? (???) <b5b1527c2d99495ad5d507ab0a4ea872> /usr/lib/libresolv.9.dylib
    0x91d42000 - 0x92de8ffe com.apple.QuickTimeComponents.component 7.5.5 (995.22.3) /System/Library/QuickTime/QuickTimeComponents.component/Contents/MacOS/QuickTim eComponents
    0x92de9000 - 0x92de9ffa com.apple.CoreServices 32 (32) <2fcc8f3bd5bbfc000b476cad8e6a3dd2> /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
    0x93053000 - 0x93154fef com.apple.PubSub 1.0.3 (65.1.1) /System/Library/Frameworks/PubSub.framework/Versions/A/PubSub
    0x93155000 - 0x93213fff com.apple.WebKit 5525.27 (5525.27.1) <a15e548666c9a463d61be1f114b2fa27> /System/Library/Frameworks/WebKit.framework/Versions/A/WebKit
    0x93214000 - 0x932f4fff libobjc.A.dylib ??? (???) <7b92613fdf804fd9a0a3733a0674c30b> /usr/lib/libobjc.A.dylib
    0x932f5000 - 0x93319fff libxslt.1.dylib ??? (???) <0a9778d6368ae668826f446878deb99b> /usr/lib/libxslt.1.dylib
    0x9331a000 - 0x9334cfff com.apple.LDAPFramework 1.4.5 (110) <648b3ee893db8af0a5bbbe857ec0bb7d> /System/Library/Frameworks/LDAP.framework/Versions/A/LDAP
    0x9334d000 - 0x934b4ff3 libSystem.B.dylib ??? (???) <d68880dfb1f8becdbdac6928db1510fb> /usr/lib/libSystem.B.dylib
    0x934b5000 - 0x93583ff3 com.apple.JavaScriptCore 5525.26 (5525.26.2) <69e219e81bc886a94c4d4b310d393ab9> /System/Library/Frameworks/JavaScriptCore.framework/Versions/A/JavaScriptCore
    0x93584000 - 0x9360efef com.apple.DesktopServices 1.4.7 (1.4.7) <7898a0f2a46fc7d8887b041bc23e3811> /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/Desk topServicesPriv
    0x93777000 - 0x937b5ff7 libGLImage.dylib ??? (???) <1123b8a48bcbe9cc7aa8dd8e1a214a66> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dyl ib
    0x937c3000 - 0x937ccfff 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
    0x937d2000 - 0x937e1fff libsasl2.2.dylib ??? (???) <bb7971ca2f609c070f87786a93d1041e> /usr/lib/libsasl2.2.dylib
    0x937e2000 - 0x937f1ffe com.apple.DSObjCWrappers.Framework 1.3 (1.3) <98f7b46a9f1a099f77e1092ef8e29c63> /System/Library/PrivateFrameworks/DSObjCWrappers.framework/Versions/A/DSObjCWra ppers
    0x937f2000 - 0x938acfe3 com.apple.CoreServices.OSServices 226.5 (226.5) <25243fd02dc5d4f4cc5780f6b2f6fe26> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServi ces.framework/Versions/A/OSServices
    0x938ad000 - 0x938b2fff com.apple.CommonPanels 1.2.4 (85) <ea0665f57cd267609466ed8b2b20e893> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels. framework/Versions/A/CommonPanels
    0x938b3000 - 0x93a81ff3 com.apple.security 5.0.4 (34102) <55dda7486df4e8e1d61505be16f83a1c> /System/Library/Frameworks/Security.framework/Versions/A/Security
    0x93a82000 - 0x93b67ff3 com.apple.CoreData 100.1 (186) <8e28162ef2288692615b52acc01f8b54> /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
    0x93b68000 - 0x93b78ffc com.apple.LangAnalysis 1.6.4 (1.6.4) <8b7831b5f74a950a56cf2d22a2d436f6> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LangAnalysis.framework/Versions/A/LangAnalysis
    0x93c6e000 - 0x93ca5fff com.apple.SystemConfiguration 1.9.2 (1.9.2) <01426a38ba44efa5d448daef8b3e9941> /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfi guration
    0x93d2d000 - 0x93d2effc libffi.dylib ??? (???) <a3b573eb950ca583290f7b2b4c486d09> /usr/lib/libffi.dylib
    0x93d2f000 - 0x93dc2fff com.apple.ink.framework 101.3 (86) <bf3fa8927b4b8baae92381a976fd2079> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework /Versions/A/Ink
    0x93dc3000 - 0x93dcefe7 libCSync.A.dylib ??? (???) <e6aceed359bd228f42bc1246af5919c9> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCSync.A.dylib
    0x93dcf000 - 0x93df7ff7 com.apple.shortcut 1 (1.0) <057783867138902b52bc0941fedb74d1> /System/Library/PrivateFrameworks/Shortcut.framework/Versions/A/Shortcut
    0x93df8000 - 0x93e27fe3 com.apple.AE 402.2 (402.2) <e01596187e91af5d48653920017b8c8e> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.fram ework/Versions/A/AE
    0x93e28000 - 0x93e79ff7 com.apple.HIServices 1.7.0 (???) <01b690d1f376e400ac873105533e39eb> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ HIServices.framework/Versions/A/HIServices
    0x93e7a000 - 0x940f5fe7 com.apple.Foundation 6.5.7 (677.22) <8fe77b5d15ecdae1240b4cb604fc6d0b> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
    0x940f6000 - 0x940f6ffd 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
    0x940f7000 - 0x94105ffd libz.1.dylib ??? (???) <5ddd8539ae2ebfd8e7cc1c57525385c7> /usr/lib/libz.1.dylib
    0x94106000 - 0x9410afff libmathCommon.A.dylib ??? (???) /usr/lib/system/libmathCommon.A.dylib
    0x9410b000 - 0x94117ff9 com.apple.helpdata 1.0.1 (14.2) /System/Library/PrivateFrameworks/HelpData.framework/Versions/A/HelpData
    0x94118000 - 0x9411afff com.apple.securityhi 3.0 (30817) <2b2854123fed609d1820d2779e2e0963> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.fr amework/Versions/A/SecurityHI
    0x9411b000 - 0x941b8ffc com.apple.CFNetwork 422.11 (422.11) <2780dfc3d2186195fccb3634bfb0944b> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CFNetwo rk.framework/Versions/A/CFNetwork
    0x941e3000 - 0x94222fef libTIFF.dylib ??? (???) <3589442575ac77746ae99ecf724f5f87> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libTIFF.dylib
    0x94223000 - 0x942a0fef libvMisc.dylib ??? (???) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvMisc.dylib
    0x942a1000 - 0x94772f3e libGLProgrammability.dylib ??? (???) <5d283543ac844e7c6fa3440ac56cd265> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLProgramma bility.dylib
    0x94773000 - 0x94777fff libGIF.dylib ??? (???) <572a32e46e33be1ec041c5ef5b0341ae> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libGIF.dylib
    0x94778000 - 0x9478efff com.apple.DictionaryServices 1.0.0 (1.0.0) <ad0aa0252e3323d182e17f50defe56fc> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Diction aryServices.framework/Versions/A/DictionaryServices
    0x947df000 - 0x9495efff com.apple.AddressBook.framework 4.1.1 (699) <60ddae72a1df8ddbc5c53df92f372b76> /System/Library/Frameworks/AddressBook.framework/Versions/A/AddressBook
    0x9495f000 - 0x9495fff8 com.apple.Cocoa 6.5 (???) <e064f94d969ce25cb7de3cfb980c3249> /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
    0x94960000 - 0x94960ffd com.apple.Accelerate 1.4.2 (Accelerate 1.4.2) /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
    0x94961000 - 0x94961ffd com.apple.vecLib 3.4.2 (vecLib 3.4.2) /System/Library/Frameworks/vecLib.framework/Versions/A/vecLib
    0x94962000 - 0x94a09feb com.apple.QD 3.11.54 (???) <b743398c24c38e581a86e91744a2ba6e> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ QD.framework/Versions/A/QD
    0x94a27000 - 0x94a83ff7 com.apple.htmlrendering 68 (1.1.3) <fe87a9dede38db00e6c8949942c6bd4f> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HTMLRendering .framework/Versions/A/HTMLRendering
    0x94a89000 - 0x94b1cff3 com.apple.ApplicationServices.ATS 3.4 (???) <8c51de0ec3deaef416578cd59df38754> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/ATS
    0x94b1d000 - 0x94b3cffa libJPEG.dylib ??? (???) <e7eb56555109e23144924cd64aa8daec> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libJPEG.dylib
    0x94b3d000 - 0x94efbfea libLAPACK.dylib ??? (???) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libLAPACK.dylib
    0x94f2e000 - 0x94f2effc com.apple.audio.units.AudioUnit 1.5 (1.5) /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
    0x94f2f000 - 0x94f2fff8 com.apple.ApplicationServices 34 (34) <8f910fa65f01d401ad8d04cc933cf887> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services
    0x94f30000 - 0x94f8aff7 com.apple.CoreText 2.0.3 (???) <1f1a97273753e6cfea86c810d6277680> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreText.framework/Versions/A/CoreText
    0x94f8b000 - 0x94fb3fff libcups.2.dylib ??? (???) <81abd305142ad1b771024eb4a1309e2e> /usr/lib/libcups.2.dylib
    0x94fb4000 - 0x94fb6ff5 libRadiance.dylib ??? (???) <8a844202fcd65662bb9ab25f08c45a62> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libRadiance.dylib
    0x94fcf000 - 0x95071ff3 com.apple.QuickTimeImporters.component 7.5.5 (995.22.3) /System/Library/QuickTime/QuickTimeImporters.component/Contents/MacOS/QuickTime Importers
    0x95072000 - 0x95394fe2 com.apple.QuickTime 7.5.5 (995.22.3) <07ffd134d58fdbfe377ba9007f591289> /System/Library/Frameworks/QuickTime.framework/Versions/A/QuickTime
    0x95395000 - 0x9539cffe libbsm.dylib ??? (???) <d25c63378a5029648ffd4b4669be31bf> /usr/lib/libbsm.dylib
    0x9539d000 - 0x9544dfff edu.mit.Kerberos 6.0.12 (6.0.12) <685cc018c133668d0d3ac6a1cb63cff9> /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
    0x9544e000 - 0x9548ffe7 libRIP.A.dylib ??? (???) <5d0b5af7992e14de017f9a9c7cb05960> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libRIP.A.dylib
    0x95490000 - 0x95490ffb com.apple.installserver.framework 1.0 (8) /System/Library/PrivateFrameworks/InstallServer.framework/Versions/A/InstallSer ver
    0x95491000 - 0x954befeb libvDSP.dylib ??? (???) <b232c018ddd040ec4e2c2af632dd497f> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvDSP.dylib
    0x954d0000 - 0x954e5ffb com.apple.ImageCapture 5.0.1 (5.0.1) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture. framework/Versions/A/ImageCapture
    0x954f3000 - 0x95511ff3 com.apple.DirectoryService.Framework 3.5.5 (3.5.5) <f8931f64103c8a86b82e9714352f4323> /System/Library/Frameworks/DirectoryService.framework/Versions/A/DirectoryServi ce
    0x95512000 - 0x95658ff7 com.apple.ImageIO.framework 2.0.4 (2.0.4) <6a6623d3d1a7292b5c3763dcd108b55f> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/ImageIO
    0x95659000 - 0x9569bfef com.apple.NavigationServices 3.5.2 (163) <d3a7c9720479eed8ea35703125303871> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/NavigationSer vices.framework/Versions/A/NavigationServices
    0x9571b000 - 0x9579aff5 com.apple.SearchKit 1.2.1 (1.2.1) <3140a605db2abf56b237fa156a08b28b> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchK it.framework/Versions/A/SearchKit
    0x9579b000 - 0x958edff3 com.apple.audio.toolbox.AudioToolbox 1.5.2 (1.5.2) /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
    0x958ee000 - 0x95912feb libssl.0.9.7.dylib ??? (???) <c7359b7ab32b5f8574520746e10a41cc> /usr/lib/libssl.0.9.7.dylib
    0x95913000 - 0x95915fff com.apple.CrashReporterSupport 10.5.5 (159) <4ca9b6643fcbafd76424a46d162363eb> /System/Library/PrivateFrameworks/CrashReporterSupport.framework/Versions/A/Cra shReporterSupport
    0x95b44000 - 0x95b7effe com.apple.securityfoundation 3.0 (32989) <ef1baca4880788750c38461222b60cae> /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoun dation
    0x95b7f000 - 0x95b8bffe libGL.dylib ??? (???) /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
    0x95b8c000 - 0x95ba7ffb libPng.dylib ??? (???) <4780e979d35aa5ec2cea22678836cea5> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libPng.dylib
    0x95ba9000 - 0x96249fff com.apple.CoreGraphics 1.407.2 (???) <3a91d1037afde01d1d8acdf9cd1caa14> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/CoreGraphics
    0x9624a000 - 0x96552fff com.apple.HIToolbox 1.5.4 (???) <3747086ba21ee419708a5cab946c8ba6> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox
    0x96553000 - 0x96ba4fff com.apple.WebCore 5525.26 (5525.26.6) <8676962ab93f003cf9b10748725c1bc2> /System/Library/Frameworks/WebKit.framework/Versions/A/Frameworks/WebCore.frame work/Versions/A/WebCore
    0x96ba5000 - 0x96bbbfe7 com.apple.CoreVideo 1.5.1 (1.5.1) <80b173571cdb99a829e1b8ec0a677291> /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
    0x96bbc000 - 0x96bf6fe7 com.apple.coreui 1.2 (62) /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
    0x96bf7000 - 0x96ed1ff3 com.apple.CoreServices.CarbonCore 786.10 (786.10) <ec35bb05f67fe0e828d49dda88bbf6d7> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore
    0x96f40000 - 0x96fc7ff7 libsqlite3.0.dylib ??? (???) <6978bbcca4277d6ae9f042beff643f7d> /usr/lib/libsqlite3.0.dylib
    0x96fc8000 - 0x96fe0fff com.apple.openscripting 1.2.8 (???) <572c7452d7e740e8948a5ad07a99602b> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting .framework/Versions/A/OpenScripting
    0x96fe1000 - 0x9705efeb com.apple.audio.CoreAudio 3.1.1 (3.1.1) <f35477a5e23db0fa43233c37da01ae1c> /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
    0x97141000 - 0x971cdff7 com.apple.LaunchServices 290.3 (290.3) <6f9629f4ed1ba3bb313548e6838b2888> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchS ervices.framework/Versions/A/LaunchServices
    0x971ce000 - 0x971d4fff 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
    0xba900000 - 0xba916fff libJapaneseConverter.dylib ??? (???) <7b0248c392848338f5d6ed093313eeef> /System/Library/CoreServices/Encodings/libJapaneseConverter.dylib
    0xbab00000 - 0xbab21fe2 libKoreanConverter.dylib ??? (???) <51586b8d9ef39123fbe6918f12d8285f> /System/Library/CoreServices/Encodings/libKoreanConverter.dylib
    0xfffe8000 - 0xfffebfff libobjc.A.dylib ??? (???) /usr/lib/libobjc.A.dylib
    0xffff0000 - 0xffff1780 libSystem.B.dylib ??? (???) /usr/lib/libSystem.B.dylib

    Use Disk Utility (in /Applications/Utilities) to Repair Permissions. Disable the anti-phishing feature of Safari I mentioned, then try it again. You may also want to consider uninstalling your current version of Flash Player and then installing the newest version.
    To uninstall it, you must use the Flash Player uninstaller that you download from the Adobe web site, then use the Flash Player installer that you download from the same site. Just dragging something to the Trash will not uninstall Flash, so don't bother doing that.
    Mulder

  • All zip attachments are corrupt after downloading.

    Hi there,
    One of our content providers wants to link to a zip file from within a SCORM package.
    After importing and publishing in exactly the same way as normal the zip file is always corrupted after a user downloads it.
    Has anyone been able to get around this?
    TC

    Hi there,
    We have a custom Netweaver portal for LSO that is designed to only work with IE. So i am unable to test with another browser.
    I have tried republishing the package several times and each time the zip is corrupted.
    I have tried this with self built SCORM packages and even packaged a zip as an attachment within an Articulate package and everytime the zip is invalid/corrupted.
    I tested the zip by opening the package prior to publishing with Authoring Environment and the zip is okay, it is only after it is published through the repository that it is corrupted.
    Cheers for any help or advice you can offer.
    TC

  • Playlists are wrong after update..

    I recently update my iphone 3gs and now all of the playlists are not transferring correctly. They are all correct on my macbook but the iphone shows all different songs in each playlist. I reinstalled the iphone software and restored it but it's still doing the same thing?

    There seems to be extensive discussion of this problem in this forum:
    http://discussions.apple.com/forum.jspa?forumID=1140
    And this is a thread that looks to be about this in this forum:
    http://discussions.apple.com/thread.jspa?threadID=2151272&tstart=0
    Phil
    Message was edited by: w7ox

  • Jpg attachments are missing on e-mails

    Since I have installed Leopard, my jpg attachments are missing on some e-mails.
    The picture is there, but the paperclip is missing
    If I send a PDF file or any other file it is working ok

    I have seen the same problem. Some times the jpg seems to be missing. What I have been doing is to save the jpg to the desk top. Even though I could not see it I knew it was there. The subject made reference to the attached picture or some such. As it will save it had to have been there some where. If I want to forward this e-mail I just reattach the jpg that I saved to the desk to. I tried just forwarding the e-mail but the jpg (attachment or whatever) did get transmitted.

Maybe you are looking for