Author |
|
Shailesh Newbie
Joined: 15 April 2012
Online Status: Offline Posts: 1
|
Posted: 15 April 2012 at 8:59pm | IP Logged
|
|
|
I have a below code:
pop3 = new Pop3();
pop3.Log.Enabled = true;
pop3.Log.Filename = @"C:\a.txt";
pop3.Connect(Settings.Default.pop3server, Settings.Default.pop3port);
if (pop3.IsConnected)
{
return pop3.Login(AppSettingsHelper.GetEmailAccountName(), AppSettingsHelper.GetEmailPassword());
}
The code returns error at pop3.Connect method.It doesn't go to pop3.login method but gives authentication failure.Please let me know if you have any inputs.
Error details:
[09:25:54.63] [INFO] Assembly version: 7.1.4.340.
[09:25:54.60] [INFO] Will resolve host "pop.xxxxxx.com".
[09:25:54.65] [INFO] Host "pop.xxxxxx.com" resolved to IP address(es) 10.192.23.107.
[09:25:54.65] [INFO] Will connect to host "pop.xxxxxx.com" on port 995.
[09:25:54.90] [INFO] Socket connected to IP address xx.xxx.xx.xxx on port 995.
[09:25:55.24] [INFO] Error: Socket connection has been refused by remote host. InnerException message follows: Authentication failed because the remote party has closed the transport stream.
[09:25:58.35] [INFO] Error: IOException occurred. InnerException message follows: Authentication failed because the remote party has closed the transport stream.
|
Back to Top |
|
|
Alex AfterLogic Support
Joined: 19 November 2003
Online Status: Offline Posts: 2206
|
Posted: 16 April 2012 at 11:46am | IP Logged
|
|
|
Are you able to connect from the same IP address to this server with another POP3 client? Looks like the server rejects your connection (at least in SSL mode).
Regards,
Alex
|
Back to Top |
|
|
smurt Newbie
Joined: 09 August 2013 Location: Ukraine
Online Status: Offline Posts: 1
|
Posted: 09 August 2013 at 1:01am | IP Logged
|
|
|
Hello
Have same error on Windows XP SP3, when connect from new MailBee version library (Assembly version: 7.2.4.366), with old library (Assembly version: 5.7.2.169) all work fine
With Windows 7 error not reproduced
*** Begin of MailBee.NET native log:
[08:58:58.43] [INFO] Assembly version: 7.2.4.366.
[08:58:58.43] [INFO] Will resolve host "smtp.meta.ua".
[08:58:58.44] [INFO] Host "smtp.meta.ua" resolved to IP address(es) 194.0.131.41.
[08:58:58.44] [INFO] Will connect to host "smtp.meta.ua" on port 465.
[08:58:58.46] [INFO] Socket connected to IP address 194.0.131.41 on port 465.
[08:58:58.52] [INFO] Error: Socket connection has been refused by remote host. InnerException message follows: Authentication failed because the remote party has closed the transport stream.
*** End of MailBee.NET native log
*** Begin of MailBee.NET native log:
[08:59:05.18] [INFO] Assembly version: 7.2.4.366.
[08:59:05.18] [INFO] Will resolve host "pop.meta.ua".
[08:59:05.19] [INFO] Host "pop.meta.ua" resolved to IP address(es) 194.0.131.33.
[08:59:05.19] [INFO] Will connect to host "pop.meta.ua" on port 995.
[08:59:05.19] [INFO] Socket connected to IP address 194.0.131.33 on port 995.
[08:59:05.21] [INFO] Error: Socket connection has been refused by remote host. InnerException message follows: Authentication failed because the remote party has closed the transport stream.
*** End of MailBee.NET native log
|
Back to Top |
|
|
Igor AfterLogic Support
Joined: 24 June 2008 Location: United States
Online Status: Offline Posts: 6104
|
Posted: 09 August 2013 at 1:31am | IP Logged
|
|
|
The first thing to do here is to try the latest DLL build and see if it affects the behavior. Also, make sure you're not running any protective software (antivirus, firewall etc.) which might prevent from establishing connection successfully.
If you're willing to get any further assistance from AfterLogic team directly, feel free to open a ticket at our HelpDesk. We can provide support in Russian if that might help us help you better. Ukrainian is an option too
--
Regards,
Igor, AfterLogic Support
|
Back to Top |
|
|