Retrieve 7 bit mail

my code is a very normal retrieve mail from the sample demo from javamail 1.4....
i have trouble to retrieve 7 bit mail...
pls provide me a solution.....
Message from yahoo.com.
Unable to deliver message to the following address(es).
<[email protected]>:
This user doesn't have a yahoo.com account ([email protected]) [0]
<[email protected]>:
This user doesn't have a yahoo.com account ([email protected]) [0]
--- Original message follows.
X-Originating-IP: [202.190.203.15]
Return-Path: <[email protected]>
Authentication-Results: mta307.mail.mud.yahoo.com  from=emi-solutions.biz; domainkeys=neutral (no sig)
Received: from 202.190.203.15  (EHLO emg-mrk04.localdns.com) (202.190.203.15)
  by mta307.mail.mud.yahoo.com with SMTP; Tue, 10 Apr 2007 18:51:44 -0700
Received: from emi-sap ([218.208.222.212])
        by emg-mrk04.localdns.com (@Net Mail v3.60a) with ASMTP id QFK76541;
        Wed, 11 Apr 2007 09:51:41 +0800
Message-ID: <26960868.1176256269906.JavaMail.SAPServiceN01@emi-sap>
Date: Wed, 11 Apr 2007 09:51:09 +0800 (SGT)
From: [email protected]
To: [email protected], [email protected]
Subject: 2 mail same host yahoo
Mime-Version: 1.0
Content-Type: text/plain
Content-Transfer-Encoding: 7bit
2 mail same host yahoo
*** MESSAGE TRUNCATED ***
public void dumpPart(Part p, PrintWriter out, InMailBean inMailBean, Collection detailCol,InvalidMailAck invalidMailAck) throws Exception {
          Util util = new Util();
          InMailDetailsBean inMailDetailsBean = new InMailDetailsBean();
          System.err.println("In dumpPart");
          if (p instanceof Message)
               dumpEnvelope((Message)p, out, inMailBean,invalidMailAck);
          /** Dump input stream ..
          InputStream is = p.getInputStream();
          // If "is" is not already buffered, wrap a BufferedInputStream
          // around it.
          if (!(is instanceof BufferedInputStream))
               is = new BufferedInputStream(is);
          int c;
          while ((c = is.read()) != -1)
               System.out.write(c);
          String ct = p.getContentType();
          try {
               //out.println("<P>" + "CONTENT-TYPE: " + (new ContentType(p.getContentType())).toString()+ "</P>");
               out.println("<P>" + "CONTENT-TYPE: " + (new ContentType(ct)).toString()+ "</P>");
          } catch (ParseException pex) {
               //System.err.println("BAD CONTENT-TYPE: " + p.getContentType());
               System.err.println("BAD CONTENT-TYPE: " + ct);
          String filename = p.getFileName();
          if (filename != null){
               out.println("<P>" + "FILENAME:" + filename + "</P>");
               System.err.println("FILENAME: " + filename);
               inMailDetailsBean.setAttachmentId(util.getUniqueId());
               inMailDetailsBean.setEmailId(inMailBean.getEmailId());
               inMailDetailsBean.setAttachmentName(getNewFileName(filename));     
           * Using isMimeType to determine the content type avoids
           * fetching the actual content data until we need it.
          if (p.isMimeType("text/plain")) {
               System.err.println("**** plain text ****");
               out.println("<P>" + "This is plain text"+ "</P>");
               out.println("<P>" + "---------------------------"+ "</P>");
               //if (!showStructure && !saveAttachments)
               String strContent=(String)p.getContent();
               System.err.println("strContent :" +strContent);
               out.println("<P>" + strContent + "</P>");
               String newContent=replace(strContent);
               System.err.println("newContent:" +newContent);
               out.println("<P>" + newContent + "</P>");
               String[] arrResult=parseMailAddress(strContent);
               String strInvalidAdd="";
               for(int i=0;i<arrResult.length;i++){
                    out.println("<p> Invalid Address :<b>" +arrResult.toString() +"</b></p>");
                    System.err.println("InvAdd:" +arrResult[i].toString());
                    strInvalidAdd+=arrResult[i].toString();
                    System.err.println("strInvalidAdd: " +strInvalidAdd);
               System.err.println("strInvalidAdd 2: " +strInvalidAdd);
               invalidMailAck.setInvalidAddress(strInvalidAdd);
               arrInvalidMail.add(invalidMailAck); //after dump envelope that add sender subject , we add invalid address
               System.err.println("Invalid address:" +strInvalidAdd);
               //out.println("<P>" + (String)p.getContent() + "</P>"); //added by won to eliminate <> () from invalid address
               //added by won
               //start
               Object o = p.getContent();
               if (o instanceof String) {
                    String str = (String)o;
                    inMailBean.setMessage(str.getBytes());
                    out.println("<P>" + "This is a string"+ "</P>");
                    out.println("<P>" + "---------------------------"+ "</P>");
                    out.println("<P>" + str + "</P>"); //added by won to eliminate <> () from invalid address
               }else{
                    String str="";
                    inMailBean.setMessage(str.getBytes());
               //end
          }else if(p.isMimeType("multipart/report")){   //p.isMimeType("multipart/report") ||p.isMimeType("message/delivery-status");
               deliveryStatusFailed=true;
          //add by won to handle delivery status
          System.err.println("This is a Multipart Report");
          System.err.println("---------------------------");
          out.println("<p>" +"This is a Multipart Report"+"<p>");
          out.println("<p>" +"---------------------------"+"<p>");
          System.err.println("content type:" +p.getContentType());
          Multipart mp = (Multipart)p.getContent();
          level++;
          System.err.println("before level:" + level);
          int count = mp.getCount();
          System.err.println("count:" + count);
          for (int i = 0; i < count; i++)
               //*************commented out by won ****************************************************
               dumpPart(mp.getBodyPart(i), out, inMailBean, detailCol,invalidMailAck);
               //dumpPart2(mp.getBodyPart(i), out, inMailBean, detailCol);
               level--;
          System.err.println("after level:" + level);
          Object o=p.getContent();                                   
          if(o instanceof MultipartReport){
               MultipartReport mr = (MultipartReport)p.getContent();
               System.err.println("cast multipart/report");
                                   level++;
                                   System.err.println("Report Text");
                                   try {
                                        String t = mr.getText();
                                        if (t == null)
                                             System.err.println("NULL");
                                        //else if (showStructure)
                                        // System.err.println("Size: " + t.length());
                                        else
                                             System.err.println(t);
                                   } catch (MessagingException ex) {
                                        System.err.println(ex.toString());
                                   System.err.println("Delivery Status");
                                   DeliveryStatus ds = mr.getDeliveryStatus();
                                   if (ds == null)
                                        System.err.println("NULL");
                                   else
                                        System.err.println(ds.toString());
                                   MimeMessage rm = mr.getReturnedMessage();
                                   if (rm != null) {
                                        if (rm instanceof MessageHeaders) {
                                             System.err.println("Returned Message Headers");
                                             System.err.println("---------------------------");
                                             level++;
                                             System.err.println("before level:" + level);
                                             dumpEnvelope(rm,out, inMailBean,invalidMailAck);
                                             level--;
                                        } else {
                                             System.err.println("Returned Message");
                                             System.err.println("---------------------------");
                                             level++;
                                             dumpPart(rm,out, inMailBean, detailCol,invalidMailAck);
                                             //dumpPart(rm);
                                             level--;
                                   level--;
                    }else{
                         System.err.println("content type:" +p.getContentType());
          } else if (p.isMimeType("multipart/*")) {
               System.err.println("**** multipart ****");
               out.println("<P>" + "This is a Multipart"+ "</P>");
               out.println("<P>" + "---------------------------"+ "</P>");
               Multipart mp = (Multipart)p.getContent();
               level++;
               System.err.println("before level:" + level);
               int count = mp.getCount();
               System.err.println("count:" + count);
               for (int i = 0; i < count; i++)
                    dumpPart(mp.getBodyPart(i), out, inMailBean, detailCol,invalidMailAck);
               level--;
               System.err.println("after level:" + level);
          } else if (p.isMimeType("message/rfc822")) {
               System.err.println("**** Nested Message ****");
               out.println("<P>" + "This is a Nested Message"+ "</P>");
               out.println("<P>" + "---------------------------"+ "</P>");
               level++;
               System.err.println("before level:" + level);
               dumpPart((Part)p.getContent(), out, inMailBean, detailCol,invalidMailAck);
               level--;
               System.err.println("after level:" + level);
          }else {
               //if (!showStructure && !saveAttachments) {
               * If we actually want to see the data, and it's not a
               * MIME type we know, fetch it and check its Java type.
               Object o = p.getContent();
               if (o instanceof String) {
                    String str = (String)o;
                    inMailBean.setMessage(str.getBytes());
                    out.println("<P>" + "This is a string"+ "</P>");
                    out.println("<P>" + "---------------------------"+ "</P>");
                    out.println("<P>" + str + "</P>");
               } else if (o instanceof InputStream) {
                    //remark out by won
                    //inMailBean.setMessage(convertInputStreamToByteArray((InputStream)o));
                    out.println("<P>" + "This is just an input stream"+ "</P>");
                    out.println("<P>" + "---------------------------"+ "</P>");
               //     InputStream is = (InputStream)o;
               //     int c;
               //     while ((c = is.read()) != -1)
               //          out.write(c);
               } else {
                    //remark out by won
                    //inMailBean.setMessage(o.toString().getBytes());
                    out.println("<P>" + "This is an unknown type"+ "</P>");
                    out.println("<P>" + "---------------------------"+ "</P>");
                    //out.println("<P>" + o.toString()+ "</P>");
          * If we're saving attachments, write out anything that
          * looks like an attachment into an appropriately named
          * file. Don't overwrite existing files to prevent
          * mistakes.
          InputStream is = null;
          if (saveAttachments && level != 0 && !p.isMimeType("multipart/*")) {
               String disp = p.getDisposition();
               // many mailers don't include a Content-Disposition
               if (disp == null || disp.equalsIgnoreCase(Part.ATTACHMENT)) {
                    if (filename == null){
                         filename = "Attachment" + attnum++;
                         System.err.println("Saving attachment to file " + filename);
                    }else{
                         try {
                              File f = new File(filename);
                              //if (f.exists()){
                                   //     XXX - could try a series of names
                              //     throw new IOException("file exists");     
                              is = ((MimeBodyPart)p).getInputStream();
                              //TODO save f to the blob
                              //byte[] fileBytes = new byte[is.available()];
//                              Read in the bytes
                              //int offset = 0;
                              //int numRead = 0;
                              //while ( (offset < fileBytes.length)&&((numRead=is.read(fileBytes, offset, fileBytes.length-offset)) >= 0) ) {
                         //          offset += numRead;
                              // if(f.length()>0){
                              //     fileBytes = new byte[(int)f.length()];     
                              // }else{
                              //     fileBytes = new byte[]{1};      
                              inMailDetailsBean.setAttachment(convertInputStreamToByteArray(is));
                              detailCol.add(inMailDetailsBean);
                         } catch (IOException ex) {
                              System.err.println("Failed to save attachment: " + ex);
                         System.err.println("------------------------------------------");
public void dumpEnvelope(Message m, PrintWriter out, InMailBean inMailBean,InvalidMailAck invalidMailAck) throws Exception {
          Util util = new Util();
          System.err.println("In dumpEnvelope");
          out.println("<P>" + "This is the message envelope"+ "</P>");
          out.println("<P>" + "---------------------------"+ "</P>");
          Address[] a;
          // FROM
          if ((a = m.getFrom()) != null) {
               for (int j = 0; j < a.length; j++){
                    out.println("<P>" + "FROM:<b> " + a[j].toString()+ "</b></P>");
                    inMailBean.setSender(a[j].toString().trim());
                    invalidMailAck.setSender(a[j].toString().trim());
          // TO
          if ((a = m.getRecipients(Message.RecipientType.TO)) != null) {
               for (int j = 0; j < a.length; j++) {
                    out.println("<P>" + "TO:<b> " + a[j].toString()+ "</b></P>");
                    //inMailBean.setReceipient(a[j].toString()); //TODO getting fr configuration
               /*     InternetAddress ia = (InternetAddress)a[j];
                    if (ia.isGroup()) {
                         InternetAddress[] aa = ia.getGroup(false);
                         for (int k = 0; k < aa.length; k++)
                         System.err.println(" GROUP: " + aa[k].toString());
          // SUBJECT
          out.println("<P>" + "SUBJECT:<b> " + m.getSubject()+ "</b></P>");
          inMailBean.setSubject(m.getSubject().trim());
          invalidMailAck.setSubject(m.getSubject().trim());
          out.println("<P>" + "Desc: " + m.getDescription()+ "</P>");
          //out.println("<P>" + "Header: " + m.getHeader("Disposition-Notification-To").toString()+ "</P>");
          // DATE
          Date d = m.getSentDate();
          inMailBean.setDateReceive(util.convertDateToStringFormat(d));
          inMailBean.setDateIn(util.convertDateToStringFormat(new Date()));
          inMailBean.setDateAck(inMailBean.getDateIn());
          //if(deliveryStatusFailed==true){
          //     inMailBean.setAckDelivery(util.getNotAckDelivery());
          //}else{
          //     inMailBean.setAckDelivery(util.getAckDelivery());
          inMailBean.setAckDelivery(util.getAckDelivery());
          inMailBean.setTimeReceive(util.convertStringToLongDateFormat(inMailBean.getDateReceive()));
          inMailBean.setTimeIn(util.convertStringToLongDateFormat(inMailBean.getDateIn()));
          inMailBean.setTimeAck(inMailBean.getTimeIn());
          //out.println("<P>" + "SendDate: " +(d != null ? util.convertDateToStringFormat(d) : "UNKNOWN")+ "</P>");
          out.println("<P>" + "SendDate: " +(d != null ? d.toString() : "UNKNOWN")+ "</P>");
          // FLAGS
          Flags flags = m.getFlags();
          StringBuffer sb = new StringBuffer();
          Flags.Flag[] sf = flags.getSystemFlags(); // get the system flags
          boolean first = true;
          for (int i = 0; i < sf.length; i++) {  //check the message flag
               String s;
               Flags.Flag f = sf[i];
               if (f == Flags.Flag.ANSWERED)
               s = "\\Answered";
               else if (f == Flags.Flag.DELETED)
               s = "\\Deleted";
               else if (f == Flags.Flag.DRAFT)
               s = "\\Draft";
               else if (f == Flags.Flag.FLAGGED)
               s = "\\Flagged";
               else if (f == Flags.Flag.RECENT)
               s = "\\Recent";
               else if (f == Flags.Flag.SEEN)
               s = "\\Seen";
               else
                    continue;     // skip it
               if (first)
                    first = false;
               else
                    sb.append(' ');
               sb.append(s);
          String[] uf = flags.getUserFlags(); // get the user flag strings
          for (int i = 0; i < uf.length; i++) {
               if (first)
                    first = false;
               else
                    sb.append(' ');
               sb.append(uf[i]);
          out.println("<P>" + "FLAGS: " + sb.toString()+ "</P>");
          // X-MAILER
          String[] hdrs = m.getHeader("X-Mailer");
          if (hdrs != null)
               out.println("<P>" +"X-Mailer: " + hdrs[0]+ "</P>");
          else
               out.println("<P>" +"X-Mailer NOT available"+ "</P>");
Message was edited by:
yzmewon

You have an awfully large amount of code there. Often it is a good idea to write a small program to test out some feature you are having a problem with. Then when you have it working, incorporate the correct code into your large program.
Besides, people will not read large badly-formatted programs here anyway.

Similar Messages

  • Since I upgraded memory, I can't retrieve/send Mail.  Also can't remember password.  I'm a mess!  Help!!

    Since I upgraded memory, I can't retrieve/send Mail.  Also can't remember password.  Need HELP!!

    Upgrading to firefox 5 and updating my plug-ins helped a bit. Frog is less 'sticky' now, but it's not solved the problem. Java needs to be up to speed or the frog goes into stasis....

  • How can I retrieve a mail message that was accidentally deleted.  It's not in the trashcan.

    How can I retrieve a mail message that was accidentally deleted.  It's not in the trashcan. 

    Which trashcan, mail or osx

  • I cannot retrieve my mail from the verizon website

    I have a question. When I am at a different computer how do I retrieve my mail. I logged in and put my username and password in. Everything shows up but all my messages arent' in the inbox. It is blank...Only my home computer has messages in it.

    maddie7 wrote:
    I have a question. When I am at a different computer how do I retrieve my mail. I logged in and put my username and password in. Everything shows up but all my messages arent' in the inbox. It is blank...Only my home computer has messages in it.
    Sounds like you're using a pop3 client on your home machine with the settings set to remove immediately off server once delivered to client.

  • I don't get email on my iPad, but I can get it on my laptop so itwifi. How do I retrieve my mail on the iPad?

    I don't get email on my iPad, but I can get it on my laptop so it is not a problem with my wifi. How do I retrieve my mail on the iPad? I used to be able to...

    Try either rebooting ur device, signing out, then signing back in or try : https://ssl.apple.com/emea/support/itunes/contact.html (if this works, please click on "this solved my problem) thanks

  • Retrieve E-mail on N95 8GB

    I cannot get my N95 to retrieve e-mail from my sky.com e-mail account. The sky account is enabled for IMAP and POP3 and they provide all the settings for mobile devices. These have been set in my handset but when ever I go to retrieve e-mail the handset keeps asking me to confirm e mail name and password and keeps looping back to this. I have checked the settings so many times but cannot get it to retreive. Any help would be much appreciated.
    SteveS

    Is that who your mobile contract is with as well as your email account?
    Message Edited by thelurker on 25-Jul-2008 01:17 AM

  • Why Can't My iMac Retrieve E-Mail from Yahoo?

    I am having persistent difficulties consistently connecting to Yahoo! in order to send and retrieve e-mail.  Nothing has been changed except the password, which I've updated.  I can retrieve e-mail from my Yahoo account via Safari, but for some reason my iMac's mail application cannot.
    Does anyone have any ideas?
    Fred

    Have opened Mail, under Mail select Preferences, select the Yahoo account and delete the password and the renter it?  Some times it is necessary to delete the account then reestablish the account info to clear problems.

  • Retrieve e-mail from Entourage

    Hello there,
    I just upgraded to OS X Lion on my MacBook Pro, and found out my Microsoft Office 2004 no longer is compatible with it. Does anyone know how I can retrieve e-mails from Entourage. I had some important e-mails saved in folders. Any help would be appreciated.
    Thanks,
    Guillermo

    Install Office 2008 or 2011 and it will import the mail.
    Otherwise, I suggest you post your question on Microsoft's own forums for their Mac software as Apple Communities only provide support for Apple products and the MS forums are obviously geared more toward your question.
    http://www.officeformac.com/productforums

  • How do I retrieve deleted mail?

    Mail was deleted accidentally, how do I retrieve that mail?

    Hello Laurapo,
    Thank you for contacting Apple Support Communities.
    This article covers deleting mail and how to view deleted mail:
    Mail (Mavericks): Delete messages
    http://support.apple.com/kb/PH14900
    Specifically:
    View deleted messages
    If the option to move deleted messages to the Trash mailbox is set (in the Mailbox Behaviors pane of the account), you can view the messages in that mailbox until they’re permanently erased. To retrieve a deleted message, drag it from the Trash mailbox to another mailbox.
    If deleted messages aren’t moved to the Trash mailbox, the messages may temporarily remain in their original location, but are dimmed or hidden. To show or hide them, if available, choose View > Show Deleted Messages or View > Hide Deleted Messages.
    Regards,
    Jeff D.

  • Regular panic.crashes when retrieving e-mail

    My iPhone started to panic crash all 20-30 minutes when not being used about 2 weeks ago. Resetting and restoring it from backup didn't bring any change. I've also sent it to Apple for repair, but they said, they couldn't find anything.
    Now I've found out that it seems to happen whenever it retrieves e-mail from the server. Now, that I deactivated push (which was only used by my Mobile-me account) it seems like it doesn't crash anymore – but that can't be the solution.
    Here is, what the crash-log says:
    Incident Identifier: 7E0B7B8F-C350-43C3-B934-B8E824BA3B32
    CrashReporter Key: b45bb035202947022e162c281f5a77e3c8a8abb4
    Hardware Model: iPhone3,1
    Date/Time: 2011-03-01 19:14:43.296 +0100
    OS Version: iPhone OS 4.2.1 (8C148)
    panic(cpu 0 caller 0x80502103): "CDMA: client driver(s) left channel(s) 0x 10 active when sleeping"@/SourceCache/AppleS5L8920X/AppleS5L8920X-257.21/AppleCDMA/AppleCDMA.c pp:296
    Debugger message: panic
    OS version: 8C148
    Kernel version: Darwin Kernel Version 10.4.0: Wed Oct 20 20:14:45 PDT 2010; root:xnu-1504.58.28~3/RELEASEARMS5L8930X
    iBoot version: iBoot-931.71.16
    secure boot?: YES
    Paniclog version: 1
    Epoch Time: sec usec
    Boot : 0x4d6d181d 0x00000000
    Sleep : 0x4d6d2deb 0x00008cec
    Wake : 0x00000000 0x00000000
    Calendar: 0x4d6d2deb 0x0000adf2
    Task 0x811e8d3c: 8811 pages, 92 threads: pid 0: kernel_task
    thread 0xc095ab20
    kernel continuation: 0x8001ddc1
    Task 0x811e8b58: 174 pages, 3 threads: pid 1: launchd
    Task 0x811e83c8: 122 pages, 4 threads: pid 13: syslogd
    Task 0x8410fd3c: 481 pages, 2 threads: pid 16: lockdownd
    Task 0x8410f974: 1259 pages, 22 threads: pid 18: mediaserverd
    Task 0x8410f790: 325 pages, 3 threads: pid 19: mediaremoted
    Task 0x8410f5ac: 330 pages, 3 threads: pid 20: mDNSResponder
    Task 0x8410f3c8: 1212 pages, 10 threads: pid 21: locationd
    Task 0x8410f1e4: 502 pages, 2 threads: pid 22: imagent
    Task 0x8410f000: 446 pages, 1 threads: pid 23: fairplayd.N90
    Task 0x841afd3c: 1721 pages, 9 threads: pid 24: dataaccessd
    Task 0x841afb58: 757 pages, 15 threads: pid 25: configd
    Task 0x841af974: 316 pages, 2 threads: pid 26: calaccessd
    Task 0x841af790: 406 pages, 4 threads: pid 27: awd_ice3
    Task 0x841af5ac: 212 pages, 2 threads: pid 28: accessoryd
    Task 0x841af3c8: 5614 pages, 18 threads: pid 29: SpringBoard
    Task 0x84311b58: 675 pages, 12 threads: pid 33: CommCenter
    Task 0x84311974: 355 pages, 3 threads: pid 34: BTServer
    Task 0x84311790: 765 pages, 4 threads: pid 35: aosnotifyd
    Task 0x843115ac: 128 pages, 2 threads: pid 36: notifyd
    Task 0x841af000: 418 pages, 3 threads: pid 50: apsd
    Task 0x811e85ac: 216 pages, 2 threads: pid 51: lsd
    Task 0x843111e4: 1421 pages, 5 threads: pid 54: MobilePhone
    Task 0x87260000: 1756 pages, 8 threads: pid 59: MobileMail
    Task 0x87260974: 3563 pages, 5 threads: pid 88: MobileSMS
    Task 0x811e8790: 6231 pages, 7 threads: pid 103: WhatsApp
    Task 0x87260d3c: 150 pages, 2 threads: pid 114: SCHelper
    has anyone any idea?

    I have the same issue just start to come up.  Did you find a solution?

  • I can't retrieve my mail!

    Hello,
    Since last friday I can't retrieve mail mail in apple mail. I didn't change any settings. I was able to retrieve my mail fine before that. I have double checked that the setting are all correct and entered. I have restarted my computer. I have updated all and any software updates through mac.
    I use 2 different accounts in my apple mail. One through my ISP and the other is an email attached to my website through go daddy.com. My ISP account still works fine. When I go through the web to this email account I can see all 30 or so emails just sitting there.
    I have deleted my account in apple mail and created a new one for my website account. For some reason when I do that it is able to download 2 emails that I had on my email account still from last year. But doesn't download any new emails.
    Then I tried entourage and created an account for my website email account and was able to download them all. I set preferences so to not delete emails off the server after retrieving mail.
    Being able to retrieve my emails through entourage makes me believe it's an apple mail issue and not the godaddy.com issue as it works fine there.
    I don't want to convert to entourage! please help
    Has anyone encountered this or have any solutions??
    thank you

    You’re welcome.
    Sometimes messages left on the server clog up the account there, or Mail chokes on a message it cannot download and that prevents it from downloading the rest as well. Solving this problem will probably require removing one or more messages from the server. What are your Preferences > Accounts > Advanced > Remove copy from server settings for this account?
    You may tell Mail to remove from the server all the messages that have already been downloaded by means of Preferences > Accounts > Advanced > Remove now. Alternatively, you may use the Account Info window to remove specific messages from the server. And if the account allows web access, you may also remove messages from the server that way.
    Try removing from the server messages that have already been downloaded and/or the first message not downloaded yet (i.e. the message that Mail appears to be choking on).
    You may want to try to download those messages with another mail client such as Thunderbird first, to avoid losing them — and use Eudora Mailbox Cleaner to import them back into Mail afterwards if you wish.

  • Unable to retrieve e mail, says wrong password,

    Unable to retrieve e mail.  Saying wrong password.  Can I reset password

    You can only do it with your e-mail provider.

  • Can't retrieve sky mail after upgrade to IOS6

    I can't retrieve sky mail on my iPad 2 after update to IOS6, I can still get it on my iPhone 4 that hasn't been updated yet, so the problem is not with sky ? Any suggestions appreciated.

    I have the same problem after upgrading my iPhone. I get my mail on iPad still - so it has nothing to do with provider. What's more I can send mails - they go through. But I can't retrieve any. Help/suggestions appreciated.

  • TS3899 how do i retrieve a mail message that i deleted by mistake?

    how do i retrieve a mail message that i deleted by mistake?

    if you have a backup from before you deleted it you can restore that
    otherwise I would take contact to the mail provider and ask if they'd let you restore it
    all mails are org stored on their servers

  • Sent Mail retrieval in Mail 1.3.11

    My wife's has a PowerBook G4,and she cannot retrieve,read or do anything with her sent e-mails for months now.Everytime she clicks on a sent mail(in her sent mail mailbox) this is what she gets :
    The message from Louise Vasvari <[email protected]> concerning “description of apt.” has not been downloaded from the server. You need to take this account online in order to download it.
    It wasn't like that ebfore,so we don't know what happened or what to do so that she can read and retrieve sent mails again?
    Thank you.

    Hello cybarch. Welcome to Apple discussions.
    Click on this link for assistance.
    http://support.apple.com/kb/TS1895

Maybe you are looking for

  • Is it possible to upgrade GPU on my Satellite L750?

    I have a Satellite L750,Windows 7 Home Premium 64-bit,Intel Core i3-380M Processor,640 GB in hard disk,4,096 MB DDR3 RAM (1,066 MHz),Intel Graphics Media Accelerator HD. I'm sure by now you know why i want to upgrade my graphic card,everything is goo

  • Getting error in Connection with SAP 2007 with SQL 2005

    Hi I am getting the error while running the Sample code of "UsingSBObob" Run-time error '-111 Connection to SBO-Common has failed Please provide the solution

  • How to create Caller Groups in J2ME

    Hi, I am developing an application in which, I am collecting all contacts from the PIM using PIM attributes. Now I want to make a groups of these contacts like available in our devices *"Caller Groups"*. It is possible to do the same programmatically

  • Dialup to Serial (non-PPP) modem?

    Hi,  I just got my first Blackberry 8820 and really like it so far.  I can do everything I need at work with it, except for one thing I haven't figured out yet.  I have already figured out how to connect my laptop to the blackberry and get Internet a

  • Audio clip editing in timeline

    I have seen some threads on this but they do not completely answer my question and are already marked answer. I want to edit out small segments of audio only.  There is no sound track or anything.  For example I want to remove a phone ringing.  I kno