How to lose mail using IMAP

I needed to do some server maint. for a customer of mine. It involved deleting and recreating their email account.
I set it up as an IMAP account in Mail. Retrieved the messages and moved them to a local folder.
Deleted and recreated the account on the server.
Did a get messages to be sure the settings were ok.
Dragged the messages back to the IMAP inbox.
I got an error that mail could not write the messages.
The messages are gone from the source folder.
I suspect that this is because the server doesn't create the containers for the mail on itself until a message is received from the outside.
But why would Mail delete the source mails before they are successfully copied to the destination?
I will have to contact my host and pay a recovery fee to get the emails back. If they even have them. Hopefully the customer has a copy.
G5 Dual 2   Mac OS X (10.4.3)  

Hi,
pls refer [http://help.sap.com/saphelp_nw04/helpdata/en/f2/51b540dfe78231e10000000a1550b0/content.htm]
Regards
Baby

Similar Messages

  • Is there a problem with Apple Mail using IMAP

    Is there a problem with Apple Mail using IMAP?  Having a problem syncing to our mail server: doesn't sync properly when multiple devices use same mail acct.  Spoken w/ mail hosting provider who says Apple Mail doesn't follow IMAP protocol properly leaving Apple Mail users to experience a variety of problems when connecting to IMAP accounts.  Among them:
    - Improper syncing
    - Proliferation of drafts during composition of an email.
    - Connections on the mail host do not close automatically and proliferate over time until the host rejects further connection requests.
    Hosting provider goes on to suggest turning off IDLE command.  In my experience turning this feature off did not improve the situation.  In fact, it created a few.
    Question: Is the hosting provider correct in faulting Apple Mail?
    Been fielding the question with a number of people.  I'm aware of three people who are experiencing similar problems, each using different mail hosts.  Tech reps at inmotionhosting.com and nexcess.com point the finger at a Apple Mail, along with an IT specialist in Los Angeles, CA, and a tech support rep at an Apple Store in Arizona who said that Apple and Google mail are aware of and coordinating to resolve the problem.
    Anyone out there have any insights into this?

    Is there a problem with Apple Mail using IMAP?  Having a problem syncing to our mail server: doesn't sync properly when multiple devices use same mail acct.  Spoken w/ mail hosting provider who says Apple Mail doesn't follow IMAP protocol properly leaving Apple Mail users to experience a variety of problems when connecting to IMAP accounts.  Among them:
    - Improper syncing
    - Proliferation of drafts during composition of an email.
    - Connections on the mail host do not close automatically and proliferate over time until the host rejects further connection requests.
    Hosting provider goes on to suggest turning off IDLE command.  In my experience turning this feature off did not improve the situation.  In fact, it created a few.
    Question: Is the hosting provider correct in faulting Apple Mail?
    Been fielding the question with a number of people.  I'm aware of three people who are experiencing similar problems, each using different mail hosts.  Tech reps at inmotionhosting.com and nexcess.com point the finger at a Apple Mail, along with an IT specialist in Los Angeles, CA, and a tech support rep at an Apple Store in Arizona who said that Apple and Google mail are aware of and coordinating to resolve the problem.
    Anyone out there have any insights into this?

  • How can send mails using hotmail/rediffmail domain name?

    I have used the below code to send a mail using javamail API?Even when I am sending my application does not have notified any of error/exceptions,But the message is not reached to I have given receipient's address in the to field.
    import javax.mail.*;
    import javax.mail.internet.*;
    import javax.activation.*;
    import javax.servlet.*;
    import javax.servlet.http.*;
    import java.io.*;
    import java.util.*;
    public class Sendmail1 extends HttpServlet {
    private String smtpHost;
    // Initialize the servlet with the hostname of the SMTP server
    // we'll be using the send the messages
    public void init(ServletConfig config)
    throws ServletException {
    super.init(config);
    smtpHost = config.getInitParameter("smtpHost");
    //smtpHost = "sbm5501";
    smtpHost = "www.rediffmail.com";
    public void doGet(HttpServletRequest request,HttpServletResponse response)
    throws ServletException, java.io.IOException {
    String from = request.getParameter("from");
    String to "[email protected]";
    String cc = "[email protected]";
    String bcc ="[email protected]";
    String smtp ="www.rediffmail.com";
    String subject = "hai";
    String text = "Hai how r u";
    PrintWriter writer = response.getWriter();
    if (subject == null)
    subject = "Null";
    if (text == null)
    text = "No message";
    String status;
    try {
    // Create the JavaMail session
    java.util.Properties properties = System.getProperties();
    if (smtp == null)
    smtp = "www.rediffmail.com";
    properties.put("mail.smtp.host", smtp);
    Session session = Session.getInstance(properties, null);
    //to connect
    //Transport transport =session.getTransport("smtp");
    //transport.connect(smtpHost,user,password);
    // Construct the message
    MimeMessage message = new MimeMessage(session);
    // Set the from address
    Address fromAddress = new InternetAddress(from);
    message.setFrom(fromAddress);
    // Parse and set the recipient addresses
    Address[] toAddresses = InternetAddress.parse(to);
    message.setRecipients(Message.RecipientType.TO,toAddresses);
    Address[] ccAddresses = InternetAddress.parse(cc);
    message.setRecipients(Message.RecipientType.CC,ccAddresses);
    Address[] bccAddresses = InternetAddress.parse(to);
    message.setRecipients(Message.RecipientType.BCC,bccAddresses);
    // Set the subject and text
    message.setSubject(subject);
    message.setText(text);
    Transport.send(message);
    //status = "<h1>Congratulations,</h1><h2>Your message was sent.</h2>";
    } catch (AddressException e)
    status = "There was an error parsing the addresses. " + e;
    } catch (SendFailedException e)
    status = "<h1>Sorry,</h1><h2>There was an error sending the message.</h2>" + e;
    } catch (MessagingException e)
    status = "There was an unexpected error. " + e;
    // Output a status message
    response.setContentType("text/html");
    writer.println("<title>sendForm</title><body bgcolor= ><b><h3><font color=green><CENTER>CALIBERINFO.COM</CENTER></h3>Your message was sent to recepient(s).<br><font color=red>"+"\n"+to);
    writer.println("<br><br><a href=e:/mail/javamail/mail.html>back to compose</a>");
    writer.close();
    Please any one help me out from this probs.
    Awaiting for yours reply,
    or give me a reply to: [email protected]
    Regards,
    @maheshkumar.k

    Hi,
    how can send mails using hotmail/rediffmail domain name?In your java application,you specified www.rediffmail.com as your
    smtp server.But that is the address of that website.Try will a smtp
    server instead.For a list of free smtp servers,please visit http://www.thebestfree.net/free/freesmtp.htm
    Hope this helps.
    Good Luck.
    Gayam.Srinivasa Reddy
    Developer Technical Support
    Sun Microsystems
    http://www.sun.com/developers/support/

  • How to configure mail using portal collaboration

    hi Guys..,
    pls tel me
    how to configure mail using portal collaboration and its uses..
    thanks
    regards
    kamal

    Hi,
    Two Configure Email, first
    You have to create a System for Groupware through System Administration ->System Configuration -> system LandScape
    Then create a Groupwaretransport
    implement SSO between your Mail server and your EP...
    and finally
    Create a Mail service...
    More Info is available at below link..
    http://help.sap.com/saphelp_nw04/helpdata/en/7c/6a469702474146a8ef2f97fe880b2f/frameset.htm
    and have a look at the thread raised by be on Calender Configuration...
    Collaboration calendar : No transport has been configured for the calendar
    Regards,
    Srinivas

  • Downloading email on Mail using IMAP

    hi all.
    this is a bit of a dumb question but i am hearing that my DOMAIN BASED EMAIL is filled up and folks are having emails sent to this address kicked back. i can access this via the host's website but i am also accessing via MAC MAIL.
    is there a correct way to get this mail off the server so someone can send me an email and not have it kicked back?
    also, am i correct in thinking that this email will go to /either/ my mac pro or to my mac book pro or will it still be available to both computers via IMAP? i mean, i MOVE email to a LOCAL FOLDER on my mac pro at the end of each year but this seems like it is a different issue that i am not understanding for some reason.
    TIA

    IMAP stores the email on the server. If you have reached your quota, you need to move it off the server to a local mailbox.
    Once you move it off the server into a local mailbox, on any device, it will remove it from the server.
    It sounds like you are doing that, but maybe you need to do it more often, or get a bigger quota.
    If you right-click on the account in the Mailbox list, and choose Get account info, you can view how much you have used and where it is located.

  • Problem when "Checking for Mail" using IMAP and POP

    Hello,
    I have an iPhone 3G running 2.0.1 and created 3 mail accounts (1 Gmail using IMAP, and 2 using POP).
    When I first set up the phone 2 days ago the installer copied the settings from my Mac and emails on my iPhone showed up correctly.
    Since yesterday something is screwed up because when I try to fetch new email I only see "Checking for Mail" at the bottom of the screen but nothing happens and new emails don't show up.
    Any idea how to fix this problem?
    Thanks!

    FYI you don't actually have to completely reboot the phone. From inside your email program, push and hold the HOME button for 7 or 8 seconds until it exits email and dumps you back at your home screen. That causes a hard-quit of the email program and will reset it. You should begin getting email again immediately after.
    Here's hoping Apple fixes that anomaly on their next release...

  • Cannot register my Q10 to my iCloud mail using Imap

    Just cannot register my Q10 to my icloud email using IMAP. I have tried every permutation there is but continue to get error messages. Really fed up and need a hand. I have no problem setting up a separate YAHOO and GMAIL account. My supplier is GiffGaff if that helps. I show the settings below which various web sites state is correct but STILL get error messages. A typical error message is:“the server for account imap email:icloud – (my email address) port 587 can't be reached. please check etc”What you see below is exactly what my Q10 setup look like.From settings:IMAP description ….....icloudyour name …......*******username …......... My email address ending in @icloud.comemail address.........My email address ending in @icloud.compassword............ ***********server address …......... imap.mail.me.comport …..........................993encryption …............sslimap path prefix …......left blanksmtp username ….......my email address againsmtp password ….......my password againsmtp server address ….....smtp.mail.me.comsmtp port …....................587smtp encryption ….........sslpush …..........................onappend etc …................onsync interval...............15 minssync timeframe …......7 days tap done HELP?

    THIS IS A PROBLEM, had .mac iCloud mail running fine on my Q10 until JULY 1. Mail was received but could not send out. Checked settings-did not connect to server. Deleted account and re entered information. TriediCloud.com and me.com substitutions to username and that did not work. Apparently something has changed on the Blackberry end since I can reach my mail on other devices and other mail clients. If can't resolve this week may have to get rid of Blackberrry product as much as I like them

  • How to send mail using jsp program

    am very new to jsp and doing my final year project. i need to send mails using my jsp program.can anyone say wht to do that is wht to include to send mails using jsp program. n also a sample code to send mail using jsp program.
    Thanx in advance

    Use below script.
    <%@ page import="java.util.*, javax.mail.*, javax.mail.internet.*" %>
    <%
    Properties props = new Properties();
    props.put("mail.smtp.host", "mailserver.com");
    Session s = Session.getInstance(props,null);
    InternetAddress from = new InternetAddress("[email protected]");
    InternetAddress to = new InternetAddress([email protected]");
    MimeMessage message = new MimeMessage(s);
    message.setFrom(from);
    message.addRecipient(Message.RecipientType.TO, to);
    message.setSubject("Your subject");
    message.setText("Your text");
    Transport.send(message);
    %>{code}                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           

  • HT1277 cannot get mail using imap

    Since changing over to imap, I can only get my email by quitting mail and then restart it? It works fine on my iPhone. Anyone out there got some idea's??
    Thanks in advance
    Rob Moser

    Did you change the Incoming server to...
    Incoming Mail Server: imap.telus.net
    Instead of the old...
    Incoming Mail Server: pop.telus.net
    Is there 2 entries for telus incoming server?
    The receiving email ports are:
    IMAP is port 143
    IMAP-SSL is port 993
    POP is port 110
    POP-SSL is port 995

  • How to send mail using bsp

    Dear friends,
    please send me code how to send bulk mails from bsp,
    sincerely yours

    Hi Ganesh,
    Look at the following two blogs by Thomas...This will surely help you..!
    <a href="/people/thomas.jung3/blog/2004/09/07/sending-e-mail-from-abap--version-46d-and-lower--api-interface E-Mail from ABAP - Version 46D and Lower - API Interface</a>
    and
    <a href="/people/thomas.jung3/blog/2004/09/08/sending-e-mail-from-abap--version-610-and-higher--bcs-interface E-Mail from ABAP - Version 610 and Higher - BCS Interface</a>
    This will surely help you.
    <b><i>Do reward each useful answer..!</i></b>
    Thanks,
    Tatvagna.

  • Reading Mail through Java Mail using IMAP

    When i tried to connect to IMAP server am getting the following error like Ntlm class not found
    Am using JAvaMAIL API version 1.4.3.
    Exception in thread "main" java.lang.NoClassDefFoundError: com/sun/mail/auth/Ntl
    m
    at com.sun.mail.imap.protocol.IMAPProtocol.authntlm(IMAPProtocol.java:56
    1)
    at com.sun.mail.imap.IMAPStore.login(IMAPStore.java:667)
    at com.sun.mail.imap.IMAPStore.protocolConnect(IMAPStore.java:596)
    at javax.mail.Service.connect(Service.java:291)
    at javax.mail.Service.connect(Service.java:172)
    at FetchMailUsage.main(FetchMailUsage.java:35)
    Caused by: java.lang.ClassNotFoundException: com.sun.mail.auth.Ntlm
    at java.net.URLClassLoader$1.run(Unknown Source)
    at java.security.AccessController.doPrivileged(Native Method)
    at java.net.URLClassLoader.findClass(Unknown Source)
    at java.lang.ClassLoader.loadClass(Unknown Source)
    at sun.misc.Launcher$AppClassLoader.loadClass(Unknown Source)
    at java.lang.ClassLoader.loadClass(Unknown Source)
    I searched this clas in the all the jar in the java mail api.Appreciate your earlier help

    I assume you're not actually trying to use NTLM authentication.
    A bug in JavaMail 1.4.3 can cause failures related to NTLM in some cases, although I don't think
    it should show up as the failure you're seeing. To work around, set the session property
    "mail.imap.auth.ntlm.disable" to "true".
    If that doesn't solve your problem, make sure you don't have more than one set of JavaMail
    classes in your CLASSPATH.

  • TS3276 Corrupt Attachment in Apple Mail (using IMAP)(on Mountain Lion too)

    I got corrupt attachments by using Apple Mail, IMAP on both Gmail and my company email. The problem continues since Lion, Mountain Lion is the same still. Any suggestion?
    This is really a trouble to me...
    Look, the main reason I bought Mountain Lion on 25th this month is Mail improvement. And seems the hug problem is not solved at all... what a pity...
    I might have to go back to the less integrated 3rd party apps... Can some one answer me?

    Well no particular file, any file can be corrupted in my experience. I've seen corrupted JPG files, PDF files, MS word files, excel files, and even .zip files.
    It doesn't matter who send the email, it could happen on any email in my mail box. When I use other application like Thunderbird or Sparrow doesn't cause such issue.
    Believe me I know what I'm doing, with the latest Mountain Lion, Latest Adobe Reader I can get from official website and it does not matter which version I'm having. No antivirus program involved, even if there is antivirus program involved, why I don't get trouble in other mail apps?
    The problem is, the attachment files in the email was not correctly downloaded. It doesn't matter which program I use to view it. If I save the attached files onto my desktop, situation remain the same. The only possible way I can do is to rebuild the entire mail database. However, the rebuilding process could be hours for I have tons of emails saved on the server, and it does not guarantee will solve the problem. Why bother spending so much time only simply want to get a file? The point is, by using Thunderbird I can get the file instantly, with Mail I can't?
    The following is part of the corrupted file's MIME header. I'm not sure if this is enough for I didn't copy the entire header for it contains some sender information. I would probably not sharing those email addresses.
    MIME-Version: 1.0
    Content-Type: multipart/mixed; boundary="=_997f4b2baebbe275a574812f1ca64cdf"
    --=_997f4b2baebbe275a574812f1ca64cdf
    Content-Type: multipart/ALTERNATIVE;
              boundary="=_44f440161c4f3bd3273d9805e6f1454b"
    --=_997f4b2baebbe275a574812f1ca64cdf
    Content-Disposition: attachment;
              filename*0="=?UTF-8?Q?GMOs=20=E0=B9=80=E0=B8=A1=E0=B8=A5=E0=B9=87=E0=B8=94 =E";
              filename*1="0=B8=9E=E0=B8=B1=E0=B8=99=E0=B8=98=E0=B9=8C=E0=B8=82=E0=B9=89= E0";
              filename*2="=B8=B2=E0=B8=A7=E0=B9=82=E0=B8=9E=E0=B8=94=E0=B8=AB=E0=B8=A7=E 0=";
              filename*3="B8=B2=E0=B8=9927072555_0000.pdf?="
    Content-Type: APPLICATION/PDF;
              name*0="=?UTF-8?Q?GMOs=20=E0=B9=80=E0=B8=A1=E0=B8=A5=E0=B9=87=E0=B8=94=E";
              name*1="0=B8=9E=E0=B8=B1=E0=B8=99=E0=B8=98=E0=B9=8C=E0=B8=82=E0=B9=89=E0";
              name*2="=B8=B2=E0=B8=A7=E0=B9=82=E0=B8=9E=E0=B8=94=E0=B8=AB=E0=B8=A7=E0=";
              name*3="B8=B2=E0=B8=9927072555_0000.pdf?="
    Content-Transfer-Encoding: base64

  • How to migrate mail server IMAP (lion) to Maverick

    Hi guys,
    I need migrate my lion server mail imap to maverick.
    How can I do?
    Can anyone help?
    Many Thanks.

    Information on migrations to Dovecot from various other mail servers. 
    That document includes commands for imapsync and larch, among other options.
    (If you're stuck for access, you could always slam the passwords, migrate the mail, and then re-issue the credentials.  Massively ugly, but possible.)

  • How to send mail using HTML format using tags

    Hello experts,
    I am currently using FM SO_NEW_DOCUMENT_SEND_API1 to send e-mails to our users' Outlook accounts. Now, I converted its document type from 'RAW' to 'HTM'. I enclosed my texts in HTML tags. But the problem is, I cannot see a thing when I check my message in SCOT. It just opens internet explorer and thats it. Anyway, Below is my code:
    get e-mail addresses of controllers in table ZSHIPTO_EMAIL
      SELECT * FROM zshipto_email
      INTO TABLE it_zshipto_email
      WHERE zevent = '2'.
      IF sy-dbcnt > 0.
        IF NOT it_del_entries[] IS INITIAL.
          CLEAR lv_contents.
          maildata-obj_name  = 'Record Deleted in table ZTS0001'.
          maildata-obj_descr = 'Record Deleted in table ZTS0001'.
          maildata-obj_langu = sy-langu.
       records deleted in ZTS0001 and ZTS_STPGEOLOC
          CLEAR: lv_flag, lv_counter.
          LOOP AT it_zshipto_email.
            CLEAR: it_del_entries, mailtxt.
            LOOP AT it_del_entries ASSIGNING <fs_del_entries>.
            get name of dealer
              SELECT SINGLE name1 FROM kna1
              INTO <fs_del_entries>-name1
              WHERE kunnr = <fs_del_entries>-kunnr.
              IF lv_counter IS INITIAL.
                CONCATENATE: '<p>'
                             'FYI: The ff record/s were deleted in tables'
                             'ZTS0001 and ZTS_STPGEOLOC by user' sy-uname
                             '</p>'
                             INTO lv_contents
                             SEPARATED BY space.
                mailtxt-line = lv_contents.
                APPEND mailtxt.
                CLEAR: mailtxt, lv_contents.
              ENDIF.
              APPEND mailtxt.
              CONCATENATE: '<p>'
                           'Dealer :' <fs_del_entries>-kunnr '-'
                           <fs_del_entries>-name1 '</p>'
                           INTO lv_contents
                           SEPARATED BY space.
              mailtxt-line = lv_contents.
              APPEND mailtxt.
              CLEAR: mailtxt, lv_contents.
              CONCATENATE: '<p>'
                           'Ship-To:' <fs_del_entries>-cdseq '</p>'
                           INTO lv_contents
                           SEPARATED BY space.
              mailtxt-line = lv_contents.
              APPEND mailtxt.
              CLEAR: mailtxt, lv_contents.
              CONCATENATE: '<p>'
                           'Address:' <fs_del_entries>-zaddress '</p>'
                           INTO lv_contents
                           SEPARATED BY space.
              mailtxt-line = lv_contents.
              APPEND mailtxt.
              CLEAR: mailtxt, lv_contents.
              CONCATENATE: '<p>'
                           'Contact person:' <fs_del_entries>-zcperson
                           '</p>'
                           INTO lv_contents
                           SEPARATED BY space.
              mailtxt-line = lv_contents.
              APPEND mailtxt.
              CLEAR: mailtxt, lv_contents.
              CONCATENATE: '<p>'
                           'Contact number:' <fs_del_entries>-zcnumber
                           '</p>'
                           INTO lv_contents
                           SEPARATED BY space.
              mailtxt-line = lv_contents.
              APPEND mailtxt.
              CLEAR: mailtxt, lv_contents.
              lv_counter = 1.
            ENDLOOP.
            APPEND mailtxt.
            mailrec-receiver = it_zshipto_email-zemail.
            mailrec-rec_type  = 'U'.
            APPEND mailrec.
            CALL FUNCTION 'SO_NEW_DOCUMENT_SEND_API1'
                 EXPORTING
                      document_data              = maildata
                      document_type              = 'HTM'
                      put_in_outbox              = 'X'
                      commit_work                = 'X'
                 TABLES
                     object_header              = mailtxt
                      object_content             = mailtxt
                      receivers                  = mailrec
                 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.
              MESSAGE ID sy-msgid TYPE sy-msgty NUMBER sy-msgno
                  WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
            ENDIF.
            CLEAR:    mailtxt, mailrec, lv_counter.
            REFRESH:  mailtxt, mailrec.
          ENDLOOP.
        ENDIF.
    Message was edited by: viraylab

    Hi,
    Check this...
    https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/docs/library/uuid/5931ff64-0a01-0010-2bb7-ff2f9a6165a0
    Regards
    vijay

  • How to send mail using transaction SBWP in HTML format?

    Dear All,
       When a mail is sent through SBWP transaction in HTML format,
    it is finally displayed in text format with html tags, instead of being displayed in html format.
    how to retain its HTML format?
    Please suggest some solution.
    Thanks in advance.

    Presuming you've already paired the bluetooth, just tap in the text box and you should see a cursor where you can start typing.
    Beyond that, what are you seeing or not seeing? how is it acting?

Maybe you are looking for

  • HT201317 My photo stream just stopped suddenly.

    I cannot get my photos to upload on to my PC. It used to work - now it doesnt. This all started about a month and a half ago.  I have established a new folder and also downloaded the new software - still nothing. What can I do here? I have a PC by th

  • Itunes 9 erased my video playlists for my ipod video

    I have a 5th gen 80gb video ipod. This weekend I upgraded to itunes 9 and it droppped all my video playlists, new and old. I tried changing the live update, reset my ipod, repaired the scan and fix issue, etc. The videos are still on the ipod and the

  • Turning off "authentication" in Mountain Lion.

    I just migrated from my old MacBook Pro to a new retina display MacBook Pro and have Mountain Lion on each.  Even though I've gone into both Finder and System Preferences and tried to replicate everything in the new computer that was on the old compu

  • Intermittent problem while typing in iphone5

    Sometimes the touch screen goes super responsive.Example, the space-bar key responds before I even touch it; when I touch the back-space the space bar or "enter" functions. Whenever this happens intermittently, I just close the screen and restart it.

  • Donu00B4t release tasks after releasing a phase

    Hi guys, after searching a lot and programming in dpr_events i have no further idea. Does anybody know if it´s possible to do not release a task after releasing the upper phase? I tried the method set_data_ext from cl_dpr_task_o in dpr_events but the