Exception when fetch message from pop3 mail server

below exception occur whenever i fetched message from pop3 mail server. Its occur for perticular message. so i catched javax.mail.MessagingException but this is not working and rest of the messages skips.
plz help me , its urgent.
javax.mail.MessagingException: error loading POP3 headers;
  nested exception is:
        java.io.IOException: Unexpected response: ------=_NextPart_000_01B9_01C8
A1AB.148BE090
        at com.sun.mail.pop3.POP3Message.loadHeaders(POP3Message.java:467)
        at com.sun.mail.pop3.POP3Message.getHeader(POP3Message.java:275)
        at javax.mail.internet.MimeMessage.getSubject(MimeMessage.java:717)
        at fetch1.<init>(fetch1.java:92)
        at fetch1.main(fetch1.java:185)
Caused by: java.io.IOException: Unexpected response: ------=_NextPart_000_01B9_0
1C8A1AB.148BE090
        at com.sun.mail.pop3.Protocol.simpleCommand(Protocol.java:361)
        at com.sun.mail.pop3.Protocol.multilineCommand(Protocol.java:373)
        at com.sun.mail.pop3.Protocol.top(Protocol.java:271)
        at com.sun.mail.pop3.POP3Message.loadHeaders(POP3Message.java:451)
        ... 4 more
Press any key to continue...Code :-
import java.util.*;
import java.io.*;
import javax.mail.*;
import javax.mail.Flags.*;
import javax.mail.internet.*;
import javax.activation.*;
public class fetch3
     fetch3()
          try
               // Setup properties
               Properties props = System.getProperties();
               props.put("mail.pop3.host","myMailserver ip");     
               // Setup authentication, get session
               Authenticator auth = new PopupAuthenticator();
               Session session = Session.getDefaultInstance(props, auth);
               // Get the store
               Store store = session.getStore("pop3");
               store.connect();
               // Get folder
               Folder folder = store.getFolder("INBOX");
               folder.open(Folder.READ_WRITE);
               Flags flag = folder.getPermanentFlags();
               // Get directory
               Message message[] = folder.getMessages();
               // Display from (only first) and subject of messages
               for (int i=0, n=message.length; i<n; i++)
               System.out.println ("------------------------------------------------------");
                    System.out.println(" From     : "+message.getFrom()[0]);
                    System.out.println(" To : "+message[i].getAllRecipients()[0]+" "+message[i].getAllRecipients().length);
                    System.out.println(" Replyto : "+message[i].getReplyTo()[0]);
                    System.out.println(" Subject : "+message[i].getSubject());
                    System.out.println ("type "+message[i].getContent());
                    Part messagePart=message[i];
                    Object content=messagePart.getContent();
                    // -- or its first body part if it is a multipart message --
                    if (content instanceof Multipart)
                         messagePart=((Multipart)content).getBodyPart(0);
                    //     System.out.println("[ Multipart Message ]");
                    // -- Get the content type --
                    String contentType=messagePart.getContentType();
                    // -- If the content is plain text, we can print it --
                    System.out.println("CONTENT:"+contentType);
                    if (contentType.startsWith("text/plain") || contentType.startsWith("text/html") || contentType.startsWith("multipart/alternative"))
                         InputStream is = messagePart.getInputStream();
                         BufferedReader reader
                         =new BufferedReader(new InputStreamReader(is));
                         String thisLine=reader.readLine();
                         while (thisLine!=null)
                              System.out.println(thisLine);
                              thisLine=reader.readLine();
                    System.out.println ("------------------------------------------------------");
               // Close connection
               folder.close(false);
               store.close();
          catch(Exception e)
               e.printStackTrace();
     public static void main(String s[])
          new fetch3();
Regards 
Sagar
Edited by: sagar_birari on 23 Apr, 2008 1:18 PM
Edited by: sagar_birari on 23 Apr, 2008 4:30 PM                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       

it shows below output
C:\>java -Dmail.debug=true fetch1
DEBUG: JavaMail version 1.4ea
DEBUG: java.io.FileNotFoundException: C:\Program Files\Java\jre1.5.0_06\lib\java
mail.providers (The system cannot find the file specified)
DEBUG: !anyLoaded
DEBUG: not loading resource: /META-INF/javamail.providers
DEBUG: successfully loaded resource: /META-INF/javamail.default.providers
DEBUG: Tables of loaded providers
DEBUG: Providers Listed By Class Name: {com.sun.mail.smtp.SMTPSSLTransport=javax
.mail.Provider[TRANSPORT,smtps,com.sun.mail.smtp.SMTPSSLTransport,Sun Microsyste
ms, Inc], com.sun.mail.smtp.SMTPTransport=javax.mail.Provider[TRANSPORT,smtp,com
.sun.mail.smtp.SMTPTransport,Sun Microsystems, Inc], com.sun.mail.imap.IMAPSSLSt
ore=javax.mail.Provider[STORE,imaps,com.sun.mail.imap.IMAPSSLStore,Sun Microsyst
ems, Inc], com.sun.mail.pop3.POP3SSLStore=javax.mail.Provider[STORE,pop3s,com.su
n.mail.pop3.POP3SSLStore,Sun Microsystems, Inc], com.sun.mail.imap.IMAPStore=jav
ax.mail.Provider[STORE,imap,com.sun.mail.imap.IMAPStore,Sun Microsystems, Inc],
com.sun.mail.pop3.POP3Store=javax.mail.Provider[STORE,pop3,com.sun.mail.pop3.POP
3Store,Sun Microsystems, Inc]}
DEBUG: Providers Listed By Protocol: {imaps=javax.mail.Provider[STORE,imaps,com.
sun.mail.imap.IMAPSSLStore,Sun Microsystems, Inc], imap=javax.mail.Provider[STOR
E,imap,com.sun.mail.imap.IMAPStore,Sun Microsystems, Inc], smtps=javax.mail.Prov
ider[TRANSPORT,smtps,com.sun.mail.smtp.SMTPSSLTransport,Sun Microsystems, Inc],
pop3=javax.mail.Provider[STORE,pop3,com.sun.mail.pop3.POP3Store,Sun Microsystems
, Inc], pop3s=javax.mail.Provider[STORE,pop3s,com.sun.mail.pop3.POP3SSLStore,Sun
Microsystems, Inc], smtp=javax.mail.Provider[TRANSPORT,smtp,com.sun.mail.smtp.S
MTPTransport,Sun Microsystems, Inc]}
DEBUG: successfully loaded resource: /META-INF/javamail.default.address.map
DEBUG: !anyLoaded
DEBUG: not loading resource: /META-INF/javamail.address.map
DEBUG: java.io.FileNotFoundException: C:\Program Files\Java\jre1.5.0_06\lib\java
mail.address.map (The system cannot find the file specified)
DEBUG: getProvider() returning javax.mail.Provider[STORE,pop3,com.sun.mail.pop3.
POP3Store,Sun Microsystems, Inc]
DEBUG POP3: connecting to host "pop3_server_ip", port 110, isSSL false
S: +OK Hello there.
C: USER [email protected]
S: +OK Password required.
C: PASS mypass
S: +OK logged in.
DEBUG: setDebug: JavaMail version 1.4ea
C: STAT
S: +OK 16 143077
C: NOOP
S: +OK Yup.Edited by: sagar_birari on 24 Apr, 2008 1:16 PM
Edited by: sagar_birari on 24 Apr, 2008 1:18 PM

Similar Messages

  • Updated my iphone 3gs to the ios4.3.5. Now the mail application doesn't function properly. App doesn't sync mail from server - deleting mail hardly works now. When the phone downloads messages from the mail server, it bounces/flashes between accounts too

    I recently upgraded to Lion and then updated my iphone to iOS 4.3.5. Now my mail app on the phone seems all messed up. When I check mail, it pulls down mail from the server but I have to go into each individual account to make that happen but even then the view automatically bounces from one mail account to another but never to the Microsoft Exchange server. It also doesn't let me delete mail

    I have wasted much time trying different combinations to have push and gmail "send mail as". I guess I have tried so much because it seems like a no brainer.
    If you set up as exchange you can at least add in the extra comma and address, but it disappears when you go to send an email.
    very frustrating indeed. my solution is to use the gmail app for notifications of new email.

  • Mail wants to re-download 1500 messages from my POP server

    I tried the delete the "MessageUidsAlreadyDownloaded2" file trick and it's not working... (I don't know why there's a number 2 at the end"
    Everything's been fine with me and Mail.app for the few weeks I've been using it. Last week, however, I noticed that Mail could no longer tell me which messages had been Removed From my Machine (in order to delete them from the server).
    Now, Mail wants to download all 1500 messages from my POP server. I noticed this only by accident in the Activity Viewer.
    How can I slap Mail and tell it to only download previously un-downloaded messages?
    Thanks!
    Dual 2.3 G5   Mac OS X (10.4.3)   Mail v2.0.5 (746/746.2)

    I tried the delete the "MessageUidsAlreadyDownloaded2"
    file trick and it's not working...
    What does "it's not working" mean? It seems to me that it's working pretty well. You deleted it, and now Mail downloads everything still on the server again, which is exactly what deleting that file accomplishes...
    I don't know why there's a number 2 at the end
    Because Mail 2.0 uses a different file than what Mail 1.x used. It was called MessageUidsAlreadyDownloaded (without the 2) in Mail 1.x.
    Everything's been fine with me and Mail.app for the
    few weeks I've been using it. Last week, however, I
    noticed that Mail could no longer tell me which
    messages had been Removed From my Machine (in order
    to delete them from the server).
    I don't understand what you mean here.
    How can I slap Mail and tell it to only download
    previously un-downloaded messages?
    By restoring the MessageUidsAlreadyDownloaded2 file that you deleted previously.
    Alternatively, you can choose Get Info (⌘I) from the Action menu located below the list of mailboxes in the main Mail window to open the Account Info window -- type "Account Info" in the search field of Mail Help for more information on this feature. This allows you to selectively remove any messages from the server without having to download them.

  • If I move a mailbox from my imap account to "on my mac" can I safely delete the folder from the mail server and still be able to read the messages?

    If I move a mailbox from my imap account to "on my mac" can I safely delete the folder from the mail server and still be able to read the messages?

    You certainly can.
    Be aware that the emails you move to local storage ("on my Mac") will be the only copies that remain.

  • How to retrieve mails from a Mail Server ? PLEASE REPLY IF YOU KNOW !

    Hello,
    I am trying to retrieve mail from a mail server using the example from JGuru. The command line is as follows:
    java GetMessageExample mail.wlfdle1.on.home.com (Mail Server Name) <username> <password>
    I should be prompted to read the messages in your INBOX. Enter YES to see the message content.
    0: [email protected] Thanks.
    Do you want to read message? [YES to read/QUIT to end]
    YES
    Blah Blah Blah
    1: [email protected] No Thanks.
    Do you want to read message? [YES to read/QUIT to end]
    YES
    Blah Blah Blah Blah
    I do not get any error or any output.
    Any Clue or any idea how I can get some result ??
    Response will be appreciated.
    Thanks.

    This is the sample program from jguru. After executing the following command (replacing the mail server, username, and password):
    java GetMessageExample POP.Server username password
    You'll be prompted to read the messages in your INBOX. Enter YES to see the message content.
    0: [email protected] Thanks.
    Do you want to read message? [YES to read/QUIT to end]
    YES
    Blah Blah Blah
    1: [email protected] No Thanks.
    Do you want to read message? [YES to read/QUIT to end]
    YES
    Blah Blah Blah Blah
    import java.io.*;
    import java.util.Properties;
    import javax.mail.*;
    import javax.mail.internet.*;
    public class GetMessageExample {
    public static void main (String args[]) throws Exception {
    String host = args[0];
    String username = args[1];
    String password = args[2];
    // Create empty properties
    Properties props = new Properties();
    // Get session
    Session session = Session.getDefaultInstance(props, null);
    // Get the store
    Store store = session.getStore("pop3");
    // Connect to store
    store.connect(host, username, password);
    // Get folder
    Folder folder = store.getFolder("Inbox");
    // Open read-only
    folder.open(Folder.READ_ONLY);
    BufferedReader reader = new BufferedReader (
    new InputStreamReader(System.in));
    // Get directory
    Message message[] = folder.getMessages();
    System.out.println(folder.getMessages());
    for (int i=0, n=message.length; i<n; i++) {
    // Display from field and subject
    System.out.println(i + ": " + message.getFrom()[0]
    + "\t" + message[i].getSubject());
    System.out.println("Do you want to read message? [YES to read/QUIT to end]");
    String line = reader.readLine();
    if ("YES".equals(line)) {
    // Display message content
    System.out.println(message[i].getContent());
    } else if ("QUIT".equals(line)) {
    break;
    // Close connection
    folder.close(false);
    store.close();
    Please help me on this.
    thanks.

  • Creating accounts and receiving email from a mail server

    Hi,
    I'm wanting to create a web application that creates a new email account for a user when they sign-up on my website. My application will process any email that is sent to that email address and extract parts of the email to store in a database.
    I think I can use JavaMail to poll the email accounts for new emails which will then be parsed and inserted into my database but I don't know how to programmatically create the email account for each user. I'm looking at using either sendmail or postfix as my mail server and this is on either *nix or os x.
    Any advice/pointers to Java APIs would be appreciated. If there's nothing available in Java that can do this kind of thing I'd love to hear about other solutions people know of or think might work :)
    Thanks!
    - E

    Hi there!
    Do the following
    message.setFlag(Flags.Flag.DELETED,true);
    folder.close(true);
    store.close();
    these 3 statements will delete email from the mail server.
    get back to me after u try this.
    ciao
    vivek

  • Authorization control when fetching data from PA OM tables

    Hi all,
    I want to know how to control DB level authorization using HR_READ_INFOTYPE and RP_READ_INFOTYPE. Taht is, i want to check whetehr the user who is executing a report is having read authorization for that infotype. If not, i should not fetch the data and the report should return error message?
    Instead of authorization (std, custom) object, i want to control when fetching data from PA and OM tables in HR. How to achieve the same?

    As EJP said, your query might have problem with the using clause. Post your query.
    It gives an exception when I try to run the query, and I'm trying to fetch all columns not only 'taskid'
    java.sql.SQLException: ORA-25154: column part of USING clause cannot have qualifier
    Yes, with the exact sql query he posted. It gives that exception.I guess you are trying to fetch all the columns by using the above query which i posted. No you should not fetch all the columns. Because the rs will only the three columns.
    Also, use 'as' with that query like,
    select t1.taskid as t1_taskid, t2.taskid as t2_taskid ,t3.taskid as t3_taskid from...Edited by: Ram on Aug 23, 2011 6:20 PM

  • Error occurred with the POP3 mail server

    When I first launch my email icon the following error pops up: An error occurred with the POP3 mail server. Mail server mail.midland-webhosting.com responded
    What can I do so that I can access my email? Thanks!

    Ok I will write lots and lots.
    The mail server responded what is that question. You posted what looks like half the error message. So like you I do not understand. Those message have a second half that explains what the problem is.

  • IPad Mail messages from Apple mail

    New ipad getting 10,000 old messages from Apple Mail application (or Comcast server). How do I stop it and get only new messages as of today?

    These are emails stored in the Sent folder in Mail, in 2 email accounts. Some are quite old, some recent. In addition, the Mail Inboxes were emptied, leaving only those emails that had been unopened. Those still on the server (I looked at Get Account Info in mail on different Mac to identify which) were downloaded and are in place in the ipad . In short, those lost were emails received and sent, stored locally on the ipad.
    When I did the update, it said there was an error so I had to backup and restore, via itunes. I thought emails would be backed up in this proces. I don't use icloud. Thanks

  • Iphone receiving read messages from mac mail

    My iphone used to only receive unread emails as long as entourage on my mac wasnt open. Now i have moved to mac mail and my phone is receiving read messages from mac mail. Is there a setting im missing that will make my phone only receive new messages?
    I still want my mac mail to receive these same emails later as it used to work.

    You would still receive read e-mails in the inbox on your iPhone (and vice-versa) if you used IMAP but they would show as having been read and not as new. IMAP keeps all mail clients synchronised. The only alternative would be to use POP to download to your phone and IMAP to download to your laptop and create another folder on your computer and move mail over to it when read. By default, POP only downloads from the inbox so your phone would not download it again. IMAP would leave a copy in the folder you have created on the server in case you have problems with your laptop. If you delete read e-mails on your laptop, you can set it to remove them from the server after a fixed time and they would remain there until then but your phone would not download them again.

  • SMTP error from remote mail server 522 IP REPUTATI...

    I have a hosting business, and one of my clients on BTinternet, using BT Mail is now having mail bounce back to sender when forwarded from her domain mailbox.
    Here is an example of the bounced errors -
    A message that you sent could not be delivered to one or more of its
    recipients. This is a permanent error. The following address(es) failed:
    [email protected]
    (ultimately generated from [email protected])
    host mx.bt.lon5.cpcloud.co.uk [65.20.0.49]
    SMTP error from remote mail server after MAIL FROM:<[email protected]> SIZE=3749:
    522 IP REPUTATION BAD (please check for IP address listing on reputation services)
     I've changed the actual addresses above. The server the mail is being forwarded from has an IP address 138.128.161.22
    It seems that BT believes that the  server the mail is forwarded from is blacklisted. However, I am unable to discover any blacklist issue for this server. As you can see from the MXToolbox enquiry, there are no blacklists reported -
    http://mxtoolbox.com/SuperTool.aspx?action=blacklist%3a138.128.161.22&run=toolpage
    Can anybody from BT tell me who I need to contact to find out why they are not accepting mail from my server? I'm not having a problem with mail forwarded to any other ISP, and it seems to be just BT that is rejecting the mail.
    I hope someone can advise.
    Myles

    Hi @magicalwonders
    Have a look at http://bt.custhelp.com/app/answers/detail/a_id/47055/kw/postmaster/c/346,6592/session/L3RpbWUvMTQyOD...
    Also have a look at this post: https://community.bt.com/t5/Email/BT-Email-bounce-backs/m-p/1477146/highlight/true#M34004
    Openwave messaging (was Critical Path) is the company who designed and implemented the BT consumer email system and platform may require you to correctly set up a SPF record.
    Also have a look at:
    https://community.bt.com/t5/Email/BTinternet-rejecting-all-our-emails/m-p/1480775/highlight/true#M34...
    jac_95 | BT.com Help Site | BT Service Status
    Someone Solved Your Question?
    Please let other members know by clicking on ’Mark as Accepted Solution’
    Try a Search
    See if someone in the community had the same problem and how they got it resolved.

  • Problem receiving messages from M$ ISA Server...

    I'm having a problem receiving messages on our Ironport from a M$ ISA Server cluster at another organization. When they try to send us messages and they leave a specific machine (x.x.169.233) it doesn't work. When the messages leave the other machine (x.x.169.237), it works just fine. However, if the .233 machine gets turned off, the .237 machines then fails to send us messages as well. See the following injection debug logfile for specifics:
    Tue Jun 14 15:41:33 2005 Info: 18064693 Sent to 'x.x.169.233': '220 mta1.RecipientDomain.edu ESMTP\r\n'
    Tue Jun 14 15:41:33 2005 Info: 18064693 Rcvd from 'x.x.169.233': 'EHLO smtp.SenderDomain.edu\r\n'
    Tue Jun 14 15:41:33 2005 Info: 18064693 Sent to 'x.x.169.233': '250-mta1.RecipientDomain.edu\r\n250-8BITMIME\r\n250 SIZE 209715200\r\n'
    Tue Jun 14 15:41:33 2005 Info: 18064693 Rcvd from 'x.x.169.233': 'MAIL FROM:<[email protected]> SIZE=4228\r\n'
    Tue Jun 14 15:41:33 2005 Info: 18064693 Sent to 'x.x.169.233': '250 sender <[email protected]> ok\r\n'
    Tue Jun 14 15:41:33 2005 Info: 18064693 Rcvd from 'x.x.169.233': 'RCPT TO:<[email protected]>\r\n'
    Tue Jun 14 15:41:33 2005 Info: 18064693 Sent to 'x.x.169.233': '250 recipient <[email protected]> ok\r\n'
    Tue Jun 14 15:41:33 2005 Info: 18064693 Rcvd from 'x.x.169.233': 'DATA\r\n'
    Tue Jun 14 15:41:33 2005 Info: 18064693 Sent to 'x.x.169.233': '354 go ahead\r\n'
    Tue Jun 14 15:41:45 2005 Info: 18064718 Sent to 'x.x.169.233': '220 mta1.RecipientDomain.edu ESMTP\r\n'
    Tue Jun 14 15:41:45 2005 Info: 18064718 Rcvd from 'x.x.169.233': 'EHLO smtp.SenderDomain.edu\r\n'
    Tue Jun 14 15:41:45 2005 Info: 18064718 Sent to 'x.x.169.233': '250-mta1.RecipientDomain.edu\r\n250-8BITMIME\r\n250 SIZE 209715200\r\n'
    Tue Jun 14 15:41:45 2005 Info: 18064718 Rcvd from 'x.x.169.233': 'MAIL FROM:<[email protected]> SIZE=4211\r\n'
    Tue Jun 14 15:41:45 2005 Info: 18064718 Sent to 'x.x.169.233': '250 sender <[email protected]> ok\r\n'
    Tue Jun 14 15:41:45 2005 Info: 18064718 Rcvd from 'x.x.169.233': 'RCPT TO:<[email protected]>\r\n'
    Tue Jun 14 15:41:45 2005 Info: 18064718 Sent to 'x.x.169.233': '250 recipient <[email protected]> ok\r\n'
    Tue Jun 14 15:41:45 2005 Info: 18064718 Rcvd from 'x.x.169.233': 'DATA\r\n'
    Tue Jun 14 15:41:45 2005 Info: 18064718 Sent to 'x.x.169.233': '354 go ahead\r\n'
    Tue Jun 14 15:45:17 2005 Info: 18065031 Sent to 'x.x.169.233': '220 mta1.RecipientDomain.edu ESMTP\r\n'
    Tue Jun 14 15:45:17 2005 Info: 18065031 Rcvd from 'x.x.169.233': 'EHLO smtp.SenderDomain.edu\r\n'
    Tue Jun 14 15:45:17 2005 Info: 18065031 Sent to 'x.x.169.233': '250-mta1.RecipientDomain.edu\r\n250-8BITMIME\r\n250 SIZE 209715200\r\n'
    Tue Jun 14 15:45:17 2005 Info: 18065031 Rcvd from 'x.x.169.233': 'MAIL FROM:<[email protected]> SIZE=4211\r\n'
    Tue Jun 14 15:45:17 2005 Info: 18065031 Sent to 'x.x.169.233': '250 sender <[email protected]> ok\r\n'
    Tue Jun 14 15:45:17 2005 Info: 18065031 Rcvd from 'x.x.169.233': 'RCPT TO:<[email protected]>\r\n'
    Tue Jun 14 15:45:17 2005 Info: 18065031 Sent to 'x.x.169.233': '250 recipient <[email protected]> ok\r\n'
    Tue Jun 14 15:45:17 2005 Info: 18065031 Rcvd from 'x.x.169.233': 'DATA\r\n'
    Tue Jun 14 15:45:17 2005 Info: 18065031 Sent to 'x.x.169.233': '354 go ahead\r\n'
    Tue Jun 14 15:45:19 2005 Info: 18065033 Sent to 'x.x.169.233': '220 mta1.RecipientDomain.edu ESMTP\r\n'
    Tue Jun 14 15:45:19 2005 Info: 18065033 Rcvd from 'x.x.169.233': 'EHLO smtp.SenderDomain.edu\r\n'
    Tue Jun 14 15:45:19 2005 Info: 18065033 Sent to 'x.x.169.233': '250-mta1.RecipientDomain.edu\r\n250-8BITMIME\r\n250 SIZE 209715200\r\n'
    Tue Jun 14 15:45:19 2005 Info: 18065033 Rcvd from 'x.x.169.233': 'MAIL FROM:<[email protected]> SIZE=4228\r\n'
    Tue Jun 14 15:45:19 2005 Info: 18065033 Sent to 'x.x.169.233': '250 sender <[email protected]> ok\r\n'
    Tue Jun 14 15:45:19 2005 Info: 18065033 Rcvd from 'x.x.169.233': 'RCPT TO:<[email protected]>\r\n'
    Tue Jun 14 15:45:19 2005 Info: 18065033 Sent to 'x.x.169.233': '250 recipient <[email protected]> ok\r\n'
    Tue Jun 14 15:45:19 2005 Info: 18065033 Rcvd from 'x.x.169.233': 'DATA\r\n'
    Tue Jun 14 15:45:19 2005 Info: 18065033 Sent to 'x.x.169.233': '354 go ahead\r\n'
    It seems to be failing consistently right after the DATA command. Has anyone else seen anything like this? M$ says they don't see anything wrong with the source system and they made vague references to "having problems sending to e-mail appliances in the past".
    Randle

    We've run into problems SENDING to MS servers in the past, when there was a SonicWall TZ170 between them, but I have never had a problem (that I am aware of) RECEIVING from an MS server. The symtoms were sortof similar though. We would send a period on a line by itself to terminate the message, but would never get the 250 Message Accepted message from the MS server. We found out that the TZ170 was dropping the packet. There was a firmware revision released about this time last year for the TZ170 that corrected the issue.
    Since this probably isn't exactly the case, but appears similar, you may want to sniff the connection and see if a packet is getting dropped by a firewall/router in the middle.

  • Hi, I recently got the iPhone 6, a bit of mucking around with iMessage, over it to be honest. When i message from my macbook air my recipients receive my message from my email. HELP! it never used to do this. its so annoyingly frustrating.

    Hi, I recently got the iPhone 6, a bit of mucking around with iMessage, over it to be honest. When i message from my macbook air my recipients receive my message from my email. HELP! it never used to do this. its so annoyingly frustrating.

    Please read this whole message before doing anything.
    This procedure is a diagnostic test. It’s unlikely to solve your problem. Don’t be disappointed when you find that nothing has changed after you complete it.
    The purpose of this exercise is to determine whether the problem is caused by third-party system modifications that load automatically at startup or login. Disconnect all wired peripherals except those needed for the test, and remove all aftermarket expansion cards. Boot in safe mode and log in to the account with the problem. The instructions provided by Apple are as follows:
    Be sure your Mac is shut down.
    Press the power button.
    Immediately after you hear the startup tone, hold the Shift key. The Shift key should be held as soon as possible after the startup tone, but not before the tone.
    Release the Shift key when you see the gray Apple icon and the progress indicator (looks like a spinning gear).
    Safe mode is much slower to boot and run than normal, and some things won’t work at all, including wireless networking on certain Macs.
    The login screen appears even if you usually log in automatically. You must know your login password in order to log in. If you’ve forgotten the password, you will need to reset it before you begin.
    Test while in safe mode. Same problem(s)?
    After testing, reboot as usual (i.e., not in safe mode.)

  • SMTP error from remote mail server after initial connection:

    Hello folks. I having some serious issues sending email to clients with .mac accounts. I keep on getting the following error. Can someone help? I have replaced email address names with "Blank@...) for obvious reasons.
    This message was created automatically by mail delivery software.
    A message that you sent could not be delivered to one or more of its
    recipients. This is a permanent error. The following address(es) failed:
    [email protected]
    SMTP error from remote mail server after initial connection:
    host smtp-mx1.mac.com [17.148.20.64]: 452 try later:
    retry timeout exceeded
    ------ This is a copy of the message, including all the headers. ------
    Return-path: <[email protected]>
    Received: from ip72-207-229-240.br.br.cox.net ([72.207.229.240] helo=[192.168.0.102])
    by srv3.purenrg.com with esmtp (Exim 4.68)
    (envelope-from <[email protected]>)
    id 1JFeOb-0001FZ-5F
    for [email protected]; Thu, 17 Jan 2008 18:43:41 -0500
    Message-Id: <[email protected]>
    From: "[email protected]" <[email protected]>
    To: Cindy Barnes <[email protected]>
    Content-Type: multipart/alternative; boundary=Apple-Mail-3--1032078955
    Mime-Version: 1.0 (Apple Message framework v915)
    Subject: invoice 520 is overdue
    Date: Thu, 17 Jan 2008 17:43:40 -0600
    X-Mailer: Apple Mail (2.915)
    X-PopBeforeSMTPSenders: [email protected]{
    --Apple-Mail-3--1032078955
    Content-Type: text/plain;
    charset=US-ASCII;
    format=flowed
    Content-Transfer-Encoding: 7bit

    I'm sure someone will give more detail, but it looks like the server blocked your address because it thinks it's a spam source.  If you're not spamming, then it might be someone on the same network spamming, or malware on your computer doing it.  Or it could just be a mistake.  try calling whoever runs your mail server and see if they can give you more information.

  • Deleting messages from 'All mail'

    Hi
    I use Mail v 5.3 om my MacBook Air.(In the UK)
    We have 2 accounts running on it. One is *****.*****@virginmedia.com
    The other is ******.*****@ntlworld.com.
    I am not certain but am led to believe that these are, in fact, gmail accounts.
    The problem is that it appears impossible to delete messages from each of the 2  'All Mail' mailboxes so that each now contains approx 6000 messages.
    Messages can be deleted but after a few minutes they re-appear in All Mail mailbox.
    I am not that savvy and have read some stuff on the forums but so far nothing has worked e.g. I have tried setting the Trash mailbox to 'Use for Trash'. If I then delete messages they go away for a short time then re-appear. Is it because they are being reloaded from the mail server and, if so, how do I prevent this?
    To get an answer to this I suspect I may have to give more info so feel free to interrogate me!
    Thank you

    Ironically it looked like someone had this question about a year ago with the same ISP.
    https://discussions.apple.com/message/16472415#16472415
    GMail (Google Apps Mail) allows you to choose which folders will sync with an IMAP configured client. Let's try these steps:
    1.) Click on the gear wheel in the upper right hand corner of the GMail interface and then select Settings.
    2.) Then go to the Labels heading and click it.
    3.) On the far right column you should have a check box option called, Show in IMAP. In this case you'll want to uncheck the All Mail box it sounds like.
    I had to wait about 2-3 minutes and relaunch Apple Mail after checking/unchecking boxes before they propagated in Mail.

Maybe you are looking for