0 votes
by (150 points)
edited

Hi All I am a new user for rebex POP3 I tried to get list of my mail messages on gmail but the error above appeared

    Pop3 client = new Pop3();


    client.Connect("pop.gmail.com");

please any one tell me if "pop.gmail.com" is not correct, or what is the problem? also I tried to enable ssl,but the error still hold

thanks in advance

Applies to: Rebex Secure Mail

1 Answer

0 votes
by (144k points)
edited
 
Best answer

Gmail's POP3 server uses implicit SSL, which means that Pop3Security.Implicit and port 995 need to be specified when calling the Imap object's Connect method.

Please have a look at How to connect to Gmail using POP3 for more information and sample code.

...