Problems attaching files to e-mails

After installing Lyon, from my wife's user she can't attach files to an e-mail. The window opens but only shows folders and the folders can not be opened. I can do it from my user. What could be happening?

This could be a hardware problem, or it could be software problem.
First... Get a full backup of your disks by booting from the DVD and using Disk Utility to copy the data to an external storage device, on the off change the disk or memory or server is failing; don't lose ground here, and try to avoid losing data.  Always, always, always have a good backup before you start hardware or software repairs.
As Christoph recommends, do check the logs.  Rather than looking at the directories directly, I'd suggest doing this using the Console.app tool (as that's easier than rummaging in /var/log, if you're not already comfortable in the command shell) and see if there are any relevant errors being reported. 
It appears this box is critical, and doesn't have a backup, or spare parts, or local available support.  I'd expect there are folks in the Denver area that can visit the site and sort out the hardware or software trigger, if your coworkers aren't in a position to assist here.
If the box is under AppleCare, I'd plan for a trip to get the box looked at and potentially repaired.
If the box is not under AppleCare, I'd look for a spare disk.  Or better (but more expensive), acquire (or bring along?) a spare Mac Mini (Server?) and probably either used or off eBay or such, as you'll want to have a spare for any potential hardware failure.  (It's better to have two of the same, and newer Mac Mini (Server?) boxes will arrive with (and require) Lion (Server?) and not 10.6.8.
Usual path for a recovery here is an external backup (via booting the DVD and using Disk Utility to get that copy, and preferably a couple of external, full, current, copies of the data) and using the "migrate" option after a wipe and reinstallation, to bring a copy of the disk data back in.

Similar Messages

  • Trouble attaching files to e-mail

    This just started happening and I'm not sure what I installed or did to cause it. In any browser - Safari, Firefox, Explorer - I can't attach a document. I'm using SBC Yahoo and their tech support said it was a problem with my computer.
    When I choose a file to attach, it shows up, but when I click "attach", the browser tells me there was an error, no files are attached. I turned off my firewall but can't think of any other reason my files won't attach. I have no problems attaching files to my AOL mail but I don't always use AOL and sometimes need to use my SBC address.
    Any suggestions? Thanks!

    I'm having the same problem with my verizon business webmail...Safari won't attach files...The old version of Firefox worked fine (Firefox 1.5 doesn't work at all, so now I'm without the ability to attach files altogether)...Need to find the fix for Safari...

  • Safari 5.0 freezes after attaching files in Yahoo Mail

    Since upgrading to Safari 5, I cannot use Yahoo mail after attaching a file to a message. The program acts like there is a dialog box open and it is waiting for a choice to be made, but there is no dialog box.

    HI,
    BrowserPlus is causing problems when attaching files to Yahoo mail. It's not compatible with Safari 5.
    Read here for help to uninstall BrowserPlus:
    http://help.yahoo.com/l/us/yahoo/browserplus/uninstall.html
    Carolyn

  • I used to have a indicator of time when attaching file in Yahoo Mail...I no longer have that in Safari 5.1.5...How can I get that indicator back???

    I used to have a indicator of time when attaching file in Yahoo Mail...I no longer have that in Safari 5.1.5...How can I get that indicator back???

    I tried to find help with the support by web chat for 2 days already, but every time it says that chat is un available (even if it's suppose to be 24/7)... I dont know what else to do.... please help!

  • Attaching File While Sending Mail

    Dear All,
                I want to send mail through sap for that i have used function module 'SO_NEW_DOCUMENT_SEND_API1'. Can anybode tell me how can i attach file in this mail.
    Regards,
    Mayank

    hi check this..
    REPORT  ZMAIL.
    TABLES: ekko.
    PARAMETERS: p_email   TYPE somlreci1-receiver .(give email here)
    TYPES: BEGIN OF t_ekpo,
      ebeln TYPE ekpo-ebeln,
      ebelp TYPE ekpo-ebelp,
      aedat TYPE ekpo-aedat,
      matnr TYPE ekpo-matnr,
    END OF t_ekpo.
    DATA: it_ekpo TYPE STANDARD TABLE OF t_ekpo INITIAL SIZE 0,
          wa_ekpo TYPE t_ekpo.
    TYPES: BEGIN OF t_charekpo,
      ebeln(10) TYPE c,
      ebelp(5)  TYPE c,
      aedat(8)  TYPE c,
      matnr(18) TYPE c,
    END OF t_charekpo.
    DATA: wa_charekpo TYPE t_charekpo.
    DATA:   it_message TYPE STANDARD TABLE OF solisti1 INITIAL SIZE 0
                    WITH HEADER LINE.
    DATA:   it_attach TYPE STANDARD TABLE OF solisti1 INITIAL SIZE 0
                    WITH HEADER LINE.
    DATA:   t_packing_list LIKE sopcklsti1 OCCURS 0 WITH HEADER LINE,
            t_contents LIKE solisti1 OCCURS 0 WITH HEADER LINE,
            t_receivers LIKE somlreci1 OCCURS 0 WITH HEADER LINE,
            t_attachment LIKE solisti1 OCCURS 0 WITH HEADER LINE,
            t_object_header LIKE solisti1 OCCURS 0 WITH HEADER LINE,
            w_cnt TYPE i,
            w_sent_all(1) TYPE c,
            w_doc_data LIKE sodocchgi1,
            gd_error    TYPE sy-subrc,
            gd_reciever TYPE sy-subrc.
    *START_OF_SELECTION
    START-OF-SELECTION.
      Retrieve sample data from table ekpo
      PERFORM data_retrieval.
      Populate table with detaisl to be entered into .xls file
      PERFORM build_xls_data_table.
    *END-OF-SELECTION
    END-OF-SELECTION.
    Populate message body text
      perform populate_email_message_body.
    Send file by email as .xls speadsheet
      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.
      Instructs mail send program for SAPCONNECT to send email(rsconn01)
      PERFORM initiate_mail_execute_program.
    *&      Form  DATA_RETRIEVAL
          Retrieve data form EKPO table and populate itab it_ekko
    FORM data_retrieval.
      SELECT ebeln ebelp aedat matnr
       UP TO 10 ROWS
        FROM ekpo
        INTO TABLE it_ekpo.
    ENDFORM.                    " DATA_RETRIEVAL
    *&      Form  BUILD_XLS_DATA_TABLE
          Build data table for .xls document
    FORM build_xls_data_table.
      data: ld_store(50) type c.  "Leading zeros
      CONSTANTS: con_cret(5) TYPE c VALUE '0D',  "OK for non Unicode
                 con_tab(5) TYPE c VALUE '09'.   "OK for non Unicode
    *If you have Unicode check active in program attributes thnen you will
    *need to declare constants as follows
    *class cl_abap_char_utilities definition load.
    *constants:
       con_tab  type c value cl_abap_char_utilities=>HORIZONTAL_TAB,
       con_cret type c value cl_abap_char_utilities=>CR_LF.
      CONCATENATE 'EBELN' 'EBELP' 'AEDAT' 'MATNR' INTO it_attach SEPARATED BY con_tab.
      CONCATENATE con_cret it_attach  INTO it_attach.
      APPEND  it_attach.
      LOOP AT it_ekpo INTO wa_charekpo.
    *Modification to retain leading zeros
      inserts code for excell REPLACE command into ld_store
      =REPLACE("00100",1,5,"00100")
        concatenate '=REPLACE("' wa_charekpo-ebelp '",1,5,"'
                                 wa_charekpo-ebelp '")' into ld_store .
      concatenate ld_store into .xls file instead of actual value(ebelp)
        CONCATENATE wa_charekpo-ebeln ld_store  wa_charekpo-aedat wa_charekpo-matnr  INTO it_attach SEPARATED BY con_tab.
        CONCATENATE con_cret it_attach  INTO it_attach.
        APPEND  it_attach.
      ENDLOOP.
    ENDFORM.                    " BUILD_XLS_DATA_TABLE
    *&      Form  SEND_FILE_AS_EMAIL_ATTACHMENT
          Send email
    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.
    *&      Form  INITIATE_MAIL_EXECUTE_PROGRAM
          Instructs mail send program for SAPCONNECT to send email.
    FORM initiate_mail_execute_program.
      WAIT UP TO 2 SECONDS.
      SUBMIT rsconn01 WITH mode = 'INT'
                    WITH output = 'X'
                    AND RETURN.
    ENDFORM.                    " INITIATE_MAIL_EXECUTE_PROGRAM
    *&      Form  POPULATE_EMAIL_MESSAGE_BODY
           Populate message body text
    form populate_email_message_body.
      REFRESH it_message.
      it_message = 'Please find attached a list test ekpo records'.
      APPEND it_message.
    endform.                    " POPULATE_EMAIL_MESSAGE_BODY
    regards,
    venkat

  • I am having problems attaching files to my email using the latest Firefox 13.0.1, Comcast is my internet provider, but I did not have problem with Safari.

    Why am I having problems attaching files to my email using Firefox 13.0.1.?
    I am using a MAC, OS 10.6.8, and have Comcast as my internet provider. I noticed after I upgraded to Firefox 13.0.1 that I am having problems attaching files to my email. I do not experience the same problem with Safari, but I prefer to use Firefox, as all of my bookmarks and passwords are saved there. I just like the way Firefox works better than Safari.
    I am a free-lance graphic designer and rely on my internet connection to my customers. I need this resolved ASAP!

    Could you start by resetting the zoom level on the page? To do that, you can either:
    * Press Ctrl+0 (that's a zero) on the keyboard
    * View menu > Zoom > Reset
    You also can use zoom to increase/decrease the size from there. This article describes the various mouse, keyboard, and menu methods: [[Font size and zoom - increase the size of web pages]].
    Any luck?

  • Problems attaching files in gmail in Safari

    I use Safari v 3.1.2 and have had consistent trouble attaching files to email messages in Gmail. I turned off rich text formatting and now compose in plain text, but that hasn't solved the problem. Sometimes a workaround is to attach the file before typing anything in a clean email message, but this isn't a guaranteed fix. If I reply to all or try to attach after composing something, Gmail hangs on "still working..." I have absolutely no problems attaching files in Firefox. Others I know who use Safari and Gmail complain about the same problem. I don't know whether this is Apple's or Google's wrongdoing but the problem is extremely annoying and I'm wondering if anyone has a fix. Thank you very much.

    Hi Michael,
    One quick test you can do to help narrow down things is to try and download something in another user account. This will help us to know whether your problem is local to your account or system wide. If you don't have another account you can use System Preferences -> Accounts -> [+] to create a test one (and [-] to remove it if needed)
    Does the page appear to refresh itself when you click on a link? If it does you might have an incompatible version of SpeedDownload installed.

  • Alignment problem in sending an attachment file as a mail

    Hi,
      My requirement is to send a mail where i have the data in an internal table.
    the .txt attachment file is sent properly no problem in that. But the text inside the file is not alligned properly.
    For eg if i have 5 records in the internal table which iam going to send as an attachment then 5 lines should exist on the attachment file.
    But for me what happens is
    for eg the first two records in the internal table is like as follows.
    record 1 : my name is rose
    record 2 : iam working in SAP ABAP consultant.
    These lines are coming in the attachment file like
    line 1: ame is rose  (some spaces are given then it prints) my  n
    line 2: n SAP ABAP consultant (some spaces are given then it prints) iam working i
    can anyone tell me why this happens . i want the lines to be  displayed as  it is in the internal table.
    can anyone tell how to solve this problem. Thanks...
    Regards,
    rose.

    Hi camila,
    visit this thread
    Alignment in mail body
    regards
    Anup.

  • In Firefox, can't attach files to Yahoo Mail outgoing messages. Yahoo Mail works fine in Internet Explorer though.

    Since yesterday, when I switched from Comcast to AT&T as my broadband internet connection, I have not been able to attach files to my Yahoo mail messages using Mozilla Firefox. I don't have this problem when using Internet Explorer, but my default browser is Firefox by choice. Is this a Yahoo issue or a Firefox issue? Can you help me resolve it?

    Not helpful. 'clearing Firefox's cache' is not helpful, since 'cache' doesn't show up in any of the Firefox pulldown menu choices (wasted time looking for that), and the plethora of things 'recent' and 'history' to choose to act on in these menus is also a possible waste of time, not to mention removing useful info for no reason.
    I, too, have had this problem 'intermittently' for many months, always involving the 'first' file to attach in a Yahoo! email, and I've always used this workaround OK: click on the filename showing as 'being attached' (while Yahoo's doohickey round spinner denoting 'in progress' whirls and whirls to no effect) and use "Remove File"; THEN, REPEAT 'attach file' task & it then works, if slowly. After that for the same email, attaching add'l files NEVER HAS A PROBLEM.
    SO, now today, without any software update yet (I've downloaded Firefox v.11 & will install shortly), at numerous attempts during the day, I CANNOT get the FIRST file to attach in a Yahoo! email. Simply, utterly, frustrating without any rhyme or reason. "Everything else, on plethora of sites, working fine."
    thanks.

  • Attached file in receiver mail scenario and ConvertCRLFfromToLF

    Hi,
    I have a problem attaching a text file in a receiver mail channel.
    I use mail package, and I've created a UDF to create field content with:
    for (int j=0;j<a.length;j++)
      b = b + a[j] + "\n"  ;
    result.addValue(b);
    In my receiver CC, I have configurated:
    SAP XI Sample/ConvertCRLFfromToLF
    mode --> LFtoCRLF
    But when I open file attached by mail, it has only one line and line feed it's not correct.
    How to insert correctly CR LF ?
    Thanks,
    cARME

    I need CRLF at the end of every line in text file (windows end line).
    I have tried
    1) inserting \r\n t in the UDF and no module in CC. With this I see 0A 0A at the end of every line (it would  be 0D 0)
    2) inserting \n in the UDF and use module in CC to convert LF into CRLF. With this I see 0A at the end of every line.
    How to do it?
    Thanks,
    Carme

  • Cant attach files using yahoo mail

    When I attempt to attach a file in yahoo mail i get an error message.  I can attach the files if I use Firefox

    The problem is Safari 6...it's buggy and wouldn't allow me to attach any file types to a yahoo email note.  I downloaded Chrome and everything works fine.  This is my first Apple machine and I have to say I'm disappointed in their Safari browser.  The sales guy said I was "purchasing an elegent system that would work right out of the box", I  didn't anticipate having to do work-around solutions on day one.  What a joke.

  • Having problems attaching files.

    When I open a file on my iPhone and try to send it in an email it doesn't work. When it take me to the email and I have to enter in the address to send the email it appears to be attached but once sent and opened by the sender there is no attachment. Also when I send emails from other apps like that instead of the email just being sent it goes to my out box so I then have to leave whatever app I'm working in go to the iPhone mail app and go to my out box and send the email. I thought this was normal untill I cheched on my wife's phone and realized hers does not send her emails to the out box and on her phone I can attach file to emails. And when opened the attachment is there. Has any one else had this problem or have any idea how to fix it.

    After looking into this a bit more I discovered that the problem only exist with my google email. Is this something apple did to make it harder on gmail users, or is this not a normal problem. Has anyone else had troubles attaching files to thier gmail account.

  • Can not attach file to g-mail

    Latley I am not able to attach files in my G-mail. There are small Word files. Everytime I try it, finder freezes. My  8 year old Thinkpad is faster than my Macbook Air!

    You are mostly misinterpreting the problem (and 'view as icon' will only mask the 'solution').
    You see, what you are experiencing is a facet of your email application.
    What other users see will be a facet of their email application.
    To explain, if you're using Mail.app you should be aware that Mail.app can interpret and display a wide variety of file formats - images, PDF, video, etc., etc.
    When you 'attach' such a file to a message Mail.app, by default, displays the content since this is what most people want. You have the option to just display an icon, but that's only really relevant for you.
    When the recipient gets the message what they see depends upon their client. If their client can interpret and render file attachments then they'll see the image. If it can't, they'll see an attachment link.
    Moreover, you have no control over this. It is entirely dependent on the mail client you are using, and the mail client the recipient is using. Even if you attach a file and 'view as icon', that has no bearing on whether it will appear as an icon or an inline document when it gets to the recipient - that's up to their browser abilities/settings (just like attaching as an image won't display as an image on the recipient's system if they can't display the file format, or their preferences are set to not do so).
    So knock yourself out viewing your attachments as icons, but don't expect that it will make any difference to the recipient.
    The only way you can overcome this is to send attachments in a file format that can't normally be displayed, such as a .zip archive.

  • Attaching files to e-mails

    I am using Safari to access my e-mail account at Yahoo. I sometimes cannot send our e-mails that have attachments. A message from Yahoo advises that I remove the attached files and try again. I've removed the attached files and reattached them but still can not send out the e-mail with the attached files. Anyone have this problem? Help!

    I am having the same problem trying to attach Filemaker Pro files to an email. No solution yet. It was suggested I use Internet Explorer. It did allow me to attach the file, but I have not yet heard from the receiver.

  • Suddenly, I cannot attach files to MobileMe mail

    I always use Mozilla Firefox to access MobileMe. Suddenly I find out that I cannot attach files to my MobileMe mail. Please let me know how to fix this.

    Which security software (firewall, anti-virus) do you have?
    Boot the computer in Windows Safe Mode with network support (press F8 on the boot screen) as a test to see if that helps.
    Start Firefox in <u>[[Safe Mode|Safe Mode]]</u> to check if one of the extensions (Firefox/Tools > Add-ons > Extensions) or if hardware acceleration is causing the problem (switch to the DEFAULT theme: Firefox/Tools > Add-ons > Appearance).
    *Do NOT click the Reset button on the Safe Mode start window or otherwise make changes.
    *https://support.mozilla.org/kb/Safe+Mode
    *https://support.mozilla.org/kb/Troubleshooting+extensions+and+themes

Maybe you are looking for

  • HP LaserJet M2727--- Help me!!!

    I am on my third HP LaserJet M2727 in the last 3 months. My first two said Scanner Error 5. Now this one will turn on and work fine but then just shuts off and won\'t work again till the next morning. I\'ve talked to many techs and they said update y

  • Why does Lightroom Require Admin password each time I open it?

    Hi, Just joined the community and downloaded Photoshop as Admin. I then enter my non-admin user (same PC). Photoshop works fine - I open it no problem. Ligghtroom, which I had downloaded a trial version a copule of weeks ago, required me to always en

  • Merging seperate date and time fields into a unique text field.

    I have a dropdown Calendar Date field and a dropdown Time Field in a form and I want to create an additional Text Field that displays the combination of these two fields as a unique form field that would look like this... Arrival Date: 1/27/2009 Arri

  • I bought QT Pro - Where the %&*# is the reg code?

    Last night I purchased QT Pro online. 5-10 mins or so later i received an email confirming my order. The email references my reg code but I don't see it anywhere. I called Apple support and talked to about 6 different people. They helped me go throug

  • Dynamic list and thumb loops

    hello I try to create a dynamique list with thums loops associates (to describe a stuff to sell) and it work fine when I select from a list (URL parametre) But I would like to navigate in my detail page (with the loop thumb) whit the next or last lin