0 votes

I am using pop3 for connecting mail server box. I am using following code for this:

using (Pop3 Inbox = new Pop3())
{
     Inbox.Connect(host);
     Inbox.Login(username, password); 
}

I am getting error on login. Following is the StackTrace of exception:

Limilabs.Client.POP3.Pop3ResponseException: Logon Failure
at Limilabs.Client.POP3.Pop3.(Byte[] , Boolean )
at Limilabs.Client.POP3.Pop3.Login(String user, String password)
at PlanetreMailProcessingService.PlanetreMailEngine.ProcessMails()

Note that I am using correct host and username/Password. I am using purchases software for this.

Please let me know issue, your help is greatly appreciated. Thanks

by (400 points)

1 Answer

0 votes

This error is returned by your server.

Most likely you are using incorrect credentials. Please make sure those are correct. You can try using full email address as login.

Please turn on logging:
https://www.limilabs.com/blog/logging-in-mail-all

and contact your server administrator.

by (297k points)
...