POP3 mail server

Hi,
Is there any sample java code which will do the activity of sending/receiving mails from/to POP3 server?
Is it a java method to redirect the mails to any specific directory in unix directory?
regards
venki

Hello Sir,
Sorry, i think i should be knowing the pop3 server host name. its my mistake. i think yahoo mail plus only providing pop3 hostname. its not possible to connect with pop3 yahoo server with normail mail user.
Ok Cool.
I have one more quetion. Is it Java having some APIs (java should be running as background process always) which processing with INBOX folder and check for new mails ,as soon as the new mail arrives, it should be redirected to other personal folder in the mail nox.
Following code is the one which process with mailbox and get all the messages and store into one dir called msg ,and get all the attachement and store them into attach folder.
code]
import com.jscape.inet.pop.*;
import com.jscape.inet.mime.*;
import com.jscape.inet.email.*;
import java.util.Enumeration;
import java.io.*;
public class Example {
private static File messagesDir = new File("msg");
private static File attachmentsDir = new File("attach");
static BufferedReader reader = new BufferedReader(new InputStreamReader(System.in));
// get messages from Pop mailbox
public void getMessages(String hostname, String username, String password)
throws PopException, MimeException, IOException {
// ensure that messages directory is valid
if(!messagesDir.exists()) {
messagesDir.mkdir();
// ensure that attachments directory is valid
if(!attachmentsDir.exists()) {
attachmentsDir.mkdir();
// connect and login
Pop pop = new Pop(hostname,username,password);
pop.connect();
System.out.println("Retrieving messsages....");
// get messages
Enumeration messages = pop.getMessages();
if(!messages.hasMoreElements()) {
System.out.println("No messages found");
// write messages to disk
int msgnum = 0;
while(messages.hasMoreElements()) {
++msgnum;
EmailMessage msg = (EmailMessage)messages.nextElement();
               String s= msg.getSubject();
               File f = new File(messagesDir,"msg" + msgnum + ".txt");
               BufferedWriter out = new BufferedWriter(new FileWriter(f) );
               String fromString = "From: "+msg.getFrom();
               out.write(fromString);
               out.newLine();
               String toString = "To: "+msg.getTo();
               out.write(toString);
               out.newLine();
               String dateString = "Sent: "+msg.getDate();
               out.write(dateString);
               out.newLine();
               String msgString =msg.getBody();
               out.write(msgString);
               out.newLine();
               //Not written to the file until enough data accumulates.
               //The data is stored in a buffer until then.
               out.close();
               //Causes any unwritten data to be flushed from
               //the buffer and written to the file.
System.out.println("Retrieved message: " + f.getAbsoluteFile());
// write attachments to disk
int attachnum = 0;
Enumeration attachments = msg.getAttachments();
while(attachments.hasMoreElements()) {
++attachnum;
Attachment attach = (Attachment)attachments.nextElement();
String attachmentFileName = attach.getFilename();
if(attachmentFileName == null) {
attachmentFileName = "attachment" + msgnum + "-" + attachnum;
String fileName = attach.getFilename();
if(fileName == null) {
fileName = System.currentTimeMillis() + ".txt";
File attFile = new File(attachmentsDir,fileName);
FileOutputStream attOut = new FileOutputStream(attFile);
try {
attOut.write(attach.getFileData());
attOut.close();
System.out.println("Retrieved attachment: " + attFile.getAbsoluteFile());
catch(Exception e) {
throw new PopException("unable to decode file attachment");
pop.disconnect();
public static void main(String[] args) {
String hostname;
String username;
String password;
try {
System.out.print("Enter Pop3 hostname (e.g. pop.yahoo.com): ");
hostname = reader.readLine();
System.out.print("Enter Pop3 Username: ");
username = reader.readLine();
System.out.print("Enter Pop3 Password: ");
password = reader.readLine();
Example example = new Example();
example.getMessages(hostname,username,password);
catch(Exception e) {
e.printStackTrace();
The above has not checking the new mail messages arriaval, it just retrieve all the messages every time. what i really need is run the java program in background live and check for new mails ,if it comes it should be save the msg/attach in the dirs and move the mails into one folder under the inbox.
Waiting for your valuable reply!
regards
venki[                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               

Similar Messages

  • 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.

  • 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

  • Alerta An error occurred with the pop3 mail server. Mail server responded;

    Boa tarde, ao receber email´s aparece a mensagem:
    Alerta An error occurred with the pop3 mail server. Mail server responded;
    Não utilizo gmail nem yahoo, outros usuários recebem normalmente os emails.
    PAra enviar está normal sem problemas.
    Obrigado.

    Isto significa que o servidor requer uma autenticação segura e você não especificou, vá em '''Ferramentas''' >> '''Configurar contas...''' na sessão '''Servidor''' especifique um modo de autenticação e faça o teste novamente.

  • ORA AS 10g as a POP3 Mail Server?

    Hi,
    - Can i use Oracle application server 10g as a POP3 Mail Server?
    - How?
    Regards
    IK

    When you add a new mail account, put the information on the first screen and hold the Option key down when you hit continue. You will then get the options to create the type of account you want.

  • Pop3 mail server error

    For some reason whenever I launch the Mail App, on my MSN account it tells me "*Cannot Get Mail, the connection to the server "pop3.live.com" failed.* "
    Do I need to change the settings or delete the account and then add it back again? Any help is greatly appreciated.

    Go into the mail account settings and make sure the POP and SMTP server names and passwords are entered correctly. You shouldn't have to delete the accounts, but if all else fails, delete and re-enter them.

  • POP3 mail server problem

    I am using Thunderbird 6 for email. Works OK after computer has been booted up. After that, trying get email doesn't work. Computer says " error with POP3 mailserver" but no details

    I can no longer send emails using iPad and live.com account. Message "incorrect password" Yest password same on phone and pc where can send emails. Why?

  • Outlook 2010 performance much slower than 2007 and 2003 when used with POP3 mail provider over slow network connection

    When received messages include embedded pictures, Outlook 2010 does not persist those pictures in the .pst file with the message text.  Instead, it redownloads the pictures every time the message is rendered for viewing or printing.
    Send/Receive to replicate a message with multiple embedded pictures from POP3 mail server (not Exchange server)
    Select and view the message - notice all the x placeholders for the embedded pictures
    Right-click any x placeholder and select to "download pictures"
    After some delay, the pictures are rendered, replacing the placeholders, to form the complete message
    Now, select "File" and "Print" -- notice that the preview is not immediately displayed.  There is a delay while thos same embedded pictures are downloaded, again.  Sometimes there will be a pop-up notification that Outlook is "communicating with
    the server"
    Eventually the message is fully rendered with all embedded pictures
    Now, select a different printer -- notice that the preview disappears and it takes time to .... yes, redownload those same pictures, again.
    Finally, click on "Print" -- notice yet another delay for a final download to rerender the message for the printer.
    Having done all that, close Outlook, disconnect from the network (turn off wireless or disconnect wire), open Outlook and view that same message.  The x placeholders are shown instead of the embedded pictures.  Although those embedded pictures
    were downloaded multiple times already, they were not persisted locally.
    Outlook 2003 and 2007 correct ask for confirmation to save the pictures locally then does so.  Printing and viewing is then possible without having to redownload those pictures.
    Is there going to be a fix for this Outlook 2010 defect?   I've been waiting, applying updates, and waiting.....

    Please do not close this thread.  The issue remains.  I apologize for not checking back sooner.  I thought I would get pinged by email when this tread was updated;  I did not.  I'll monitor more closely in the future.
    First, please note that I explicitly set Outlook to NOT download pictures automatically.  I want to be prompted to download.  However, after confirmed that I want the download, I expect pictures related to the message to be downloaded only once,
    immediately after I confirm that I want them downloaded. 
    I have confirmed many times that the behavior in this area is NOT identical between 2003, 2007 and 2010.  In particular, 2007 does download once and store locally (if user confirms to save changes when prompted), as expected, and 2010 downloads each
    view/preview/print.
    This is quite easy to verify -- simply unplug any network cable, disable wireless, etc.  In other words completely detach from the networked world.  2007 will correctly view/preview/etc. from local storage whereas 2010 always reverts to showing
    placeholders for any embedded images.  This is 100% repeatable.
    As an additional verification, simply move the .pst file to another system that is not connected to any network.  Open the .pst file with 2007 and any embedded images that were already downloaded (and saved) are there, with 2010 they are not.
    With 2010, it is bad enough that embedded images are not saved for viewing when disconnected.  Worse than that, the repeated downloads can be a significant disruption to performance.  Just get on a really slow wireless connection as is typical
    in some hotels.  Then try to view and print messages with lots of embedded pictures.  Slow takes on a whole new, even slower, meaning.
    This 2010 defect has been reproduced.  Is there a KB article, Windows Update, hotfix,.... anything available to eliminate this problem of repeated downloads of embedded pictures?

  • ICloud mail server information

    I have a mail database program I am trying to set up to use my me.com email account to send out monthly emails to our clients.  The database program is My Mail List by Avanquest.  Our computer guy installed it for me and now he has disappeared and can't be contacted.   It is requiring me to set up Email Preferences with server information:
    SMTP Mail Server:   which I think should be  smtp.mail.me.com
    POP3 Mail Server:
    Domain Name:
    User ID:
    Can anyone help me find this information?  I have been struggling trying to find this information all week.  
    Thanks for your help!

    Hi Klaus,
    Thanks for responding.   My boss uses a Mac, thus we have apple email addresses.  However, I'm on a PC. 
    He's running version 10.7.5

  • HT201320 I want to set up a POP3 email account but in all the help I have found so far I should get the option to choose IMAP or POP.  This doesn't appear and I need POP3 because I don't want anything deleted from the mail server.  I have an iPhone 5s and

    How do I set up a POP3 email account on my iPhone5s, using iOS 7.1.1.  All the help I have found tells me to select IMAP or POP but I am not given the choice.  I need to be able to set 'Don't delete from mail server' which can't be done in IMAP.

    tim.fry wrote:
    My email provider is BT and they do support POP3, that's what I have been using for a number of years
    Okay.
    Then set it up.

  • Anyone know why since May 18th I get this when checking my POP3 mail from Mail? 'The server returned the error: The attempt to send data to the server "(null)" failed.' Looked at all the debates on here, nothing works. APPLE?!

    <rant>I have seen many people complaining about this. I've seen lots of suggestions; change your POP3 SSL number, twist your knee backwards whilst standing on just your little finger. Nothing works. I'd like to not have to migrate to a new Mail software.
    </rant>
    I thank you.
    <Edited by Host>

    MY SOLUTION REPOSTED FROM ANOTHER THREAD:
    I've just solved a similar issue.
    I have a dedicated server running Plesk 9.5 and when I upgraded to iLife 11 and Snow Leopard this error appeared. I could quickly click "get mail" and I'd get all my mail, but only 3-4 of my 9 mail accounts would connect. Theo others would have the error:
    "The server error encountered was: The attempt to read data from the server..."
    I found solutions for those using IMAP mail:
    modify the /etc/courier-imap/imapd configuration file and change MAXDAEMONS from 40 to 80 and MAXPERIP from 4 to 40. This allows all the machines behind my home firewall to connect to multiple accounts on the e-mail server with mailbox caching enabled.
    I'd made this change on my server but it didn't seem to have any effect. It dawned on me that I'm using POP, not IMAP. So I found in /etc/courier-imap/pop3d the same settings. I changed the MAXDAEMONS from 40 to 80 and MAXPERIP from 4 to 40 and voila, all my connections concurrently worked.
    This has taken me more than two days to fix and I hope posting this helps someone else with the same issue.

  • How to map with GW8 Server external POP3 mail accounts ?

    I have "small" simple problem. I have GW Server 8.0.2. I have GW Internet Access (GWIA) installed. I can send e-mailes from clients to internet via built-tin SMTP protocol. It works actually.
    But... I try to find place in C1 or wherever else which is responsible for setting list of external POP3 accounts, accounts placed on my current Internet Provider's server. So my simple need is to map, to be able to connect and download as server GW and to server GW many POP3 accounts from my current e-mail Server. And than which e-mail adress (external POP3 account) should be saved to which mailbox / user in my GW Server. I'm not talking about mapping that accounts indirectly, via setting in Clients !!! Everything must go via GW Server and automatically.
    I dont want to change that state of course (= reach e-mailes from Internet directly to my local GW Server changing MX in DNS of my domain). Nope. I just want to map, to download posts from external mailboxes via POP3 or IMAP protocole. Nothing else.
    I'm fluent in Microsoft systems. There is just simply POP3 Connector for Exchange. SMall utility whish is simple list of login, pass, POP3 server adress and name of mailbox where to save such downloaded e-mailes. I just need the same functionally utility or page in C1 or any other place ;-)))
    ANY HELP ?
    Cause Google are blind for that simple "problem" :-((( I know - Novell describes POP3 solution in GW8 Admin book, but... only as I want to be POP3 Server for external clients. This is slightly different, reversed sittuation :-]]] I want to connect to POP3 accounts, not to server POP3 accounts :-]]]]

    Originally Posted by vatim_kk
    I have "small" simple problem. I have GW Server 8.0.2. I have GW Internet Access (GWIA) installed. I can send e-mailes from clients to internet via built-tin SMTP protocol. It works actually.
    But... I try to find place in C1 or wherever else which is responsible for setting list of external POP3 accounts, accounts placed on my current Internet Provider's server. So my simple need is to map, to be able to connect and download as server GW and to server GW many POP3 accounts from my current e-mail Server. And than which e-mail adress (external POP3 account) should be saved to which mailbox / user in my GW Server. I'm not talking about mapping that accounts indirectly, via setting in Clients !!! Everything must go via GW Server and automatically.
    I dont want to change that state of course (= reach e-mailes from Internet directly to my local GW Server changing MX in DNS of my domain). Nope. I just want to map, to download posts from external mailboxes via POP3 or IMAP protocole. Nothing else.
    I'm fluent in Microsoft systems. There is just simply POP3 Connector for Exchange. SMall utility whish is simple list of login, pass, POP3 server adress and name of mailbox where to save such downloaded e-mailes. I just need the same functionally utility or page in C1 or any other place ;-)))
    ANY HELP ?
    Cause Google are blind for that simple "problem" :-((( I know - Novell describes POP3 solution in GW8 Admin book, but... only as I want to be POP3 Server for external clients. This is slightly different, reversed sittuation :-]]] I want to connect to POP3 accounts, not to server POP3 accounts :-]]]]
    You need to use an "old" tool called pfa (pop forwarding agent) that came with SBS.
    You set the external email server credentials in the user's object via C1 and the java applet runs on the same box as your gwia.
    Cool Solutions: How to get your POP Mail into GroupWise

  • Log onto incoming mail server (POP3): Your server does not support the connection encryption type you have specified. Try changing the encryption method. Contact your mail server administrator or Internet service provider (ISP) for additional assistance.

    Hi All,
    This is my first post to ms exchange forum am getting  Log onto incoming mail server (POP3): Your server does not support the connection encryption type you have specified. Try changing the encryption method. Contact your mail server administrator
    or Internet service provider (ISP) for additional assistance. in my outlook clients, till last Sunday (12.04.15) my exchange was well & good, Monday morning suddenly the problem started like none of our outlook pop3 clients are able to communicate
    with exchange (rest  IMAP, SMTP & Exchange accounts are working fine). i have tried with all port no but no luck. please help me to get raid of this one.
    Exchange 2013 CU6 with server 2012 Std 64Bit
    Thanks,
    Murali 

    Dear All,
    I have found the solution for above problem, the problem has occur due to PopProxy inactivity
    please find relevant exchange management shell commends below.
    1. Get-ServerComponentstate -Identity <yourmailserver.com> 
    Server Component State
    yourmailserver.com ServerWideOffline Active
    yourmailserver.com HubTransport Active
    yourmailserver.com FrontendTransport Active
    yourmailserver.com Monitoring Active
    yourmailserver.com RecoveryActionsEnabled Active
    yourmailserver.com AutoDiscoverProxy Active
    yourmailserver.com ActiveSyncProxy Active
    yourmailserver.com EcpProxy Active
    yourmailserver.com EwsProxy Active
    yourmailserver.com ImapProxy Active
    yourmailserver.com OabProxy Active
    yourmailserver.com OwaProxy Active
    yourmailserver.com PopProxy Inactive
    yourmailserver.com PushNotificationsProxy Active
    yourmailserver.com RpsProxy Active
    yourmailserver.com RwsProxy Active
    yourmailserver.com RpcProxy Active
    yourmailserver.com UMCallRouter Active
    yourmailserver.com XropProxy Active
    yourmailserver.com HttpProxyAvailabilityGroup Active
    yourmailserver.com ForwardSyncDaemon Active
    yourmailserver.com ProvisioningRps Active
    yourmailserver.com MapiProxy Active
    yourmailserver.com EdgeTransport Active
    yourmailserver.com HighAvailability Active
    yourmailserver.com SharedCache Active
    2. Set-ServerComponentState -Identity <yourmailserver.com> -Component PopProxy -Requester HealthAPI
    -State Active
    3. Get-ServerComponentstate -Identity <yourmailserver.com> 
    Server Component State
    yourmailserver.com ServerWideOffline Active
    yourmailserver.com HubTransport Active
    yourmailserver.com FrontendTransport Active
    yourmailserver.com Monitoring Active
    yourmailserver.com RecoveryActionsEnabled Active
    yourmailserver.com AutoDiscoverProxy Active
    yourmailserver.com ActiveSyncProxy Active
    yourmailserver.com EcpProxy Active
    yourmailserver.com EwsProxy Active
    yourmailserver.com ImapProxy Active
    yourmailserver.com OabProxy Active
    yourmailserver.com OwaProxy Active
    yourmailserver.com PopProxy Active
    yourmailserver.com PushNotificationsProxy Active
    yourmailserver.com RpsProxy Active
    yourmailserver.com RwsProxy Active
    yourmailserver.com RpcProxy Active
    yourmailserver.com UMCallRouter Active
    yourmailserver.com XropProxy Active
    yourmailserver.com HttpProxyAvailabilityGroup Active
    yourmailserver.com ForwardSyncDaemon Active
    yourmailserver.com ProvisioningRps Active
    yourmailserver.com MapiProxy Active
    yourmailserver.com EdgeTransport Active
    yourmailserver.com HighAvailability Active
    yourmailserver.com SharedCache Activ
    Replace yourmailserver.com with your server host name.
    Thanks

  • When i configure mail account using POP3, i am not getting any sync option to sync from mail server, Any solution ? don't ask me to configure using IMAP

    And in IMAP mail server ctrl+shift+M (to copy same mail to target folder ) shortcut is also not working.

    POP account do not sync. They are one way communication from the server. There is no need for s sync option with POP.

  • Sbcglobal(yahoo) and POP3/IMAP Settings to Keep/Remove From Mail Server

    First iPhone and I've researched and can't seem to find a clear answer to probably a simple question.
    I have set up two email accounts (one work/one personal) on the iPhone. I'm not clearly understanding the Advanced Mail Server Settings on Removing Deleted Messages. The options listed are "Never", "After One Day", "After One Week", "After One Month".
    First, if I select one of these options and then later download the mail to my laptop, how does that affect what's been download to the iPhone? Will it sync again with what's on the mail server? Which, after downloading to the laptop, would be nothing and remove what's in my iPhone inbox? (No Exchange Servers in use unfortunately.)
    And, this same question would apply to any I've deleted from the iPhone. Would the iPhone then sync again with the mail server and remove the deleted message from there -- so it would not be downloaded to the laptop?
    I hope I've made sense. Any extra explanation on how these settings work would be sincerely appreciated.

    That's not how IMAP works. If you want to keep the inbox clean, but not delete the messages, create folders and move the messages into them for later review.

Maybe you are looking for

  • Posting to a URL connection and receiving a response...please help!

    Ok, here's the deal. Im trying to connect to a site, submit my username and password, and then retrieve the HTML source code for the page after I'm logged in so I can parse it and further manipulate it. So far, I'm establishing a connection and posti

  • Having trouble setting up my AirPort

    I'm not tech-savvy in the least bit, so I need a lot of help right now! I'm trying to connect my Mac Book Pro to the AirPort. It's created a network but will not connect to the internet at all. I'm having trouble understanding what I'm exactly suppos

  • Can't update to iOS 4.2.1. Please help

    Hello everyone, I have got a Second Generation iPod touch, which is running on iOS 4.0.2, and I thought it should be updated. Now I've downloaded iOS 4.2.1 directly from iTunes, this is the last firmware the 2G iPod touch can handle, but anytime I wa

  • Tell me where to go-I have bought logic express 8 - Recording live music.

    I have Macbook 2 Presonus Firepod 8 in PA gear 500 gig Firewire drive We play live and I just want to hit record and play. I stop at breaks and save the files. All of this works great! Now any advice for someone who has five hours of music recorded w

  • AC 5.21/5.30 - Profile Deployment - WPA Key

    Hi Together, I'm currently tuning our setup for installing our new T400 laptops, and I'm haning at the location profiles. I want to include the WPA Key in the LOA File, everywhere is written that its no problem, but I actually can't find a point to a