Author |
|
sisodia_16 Newbie
Joined: 07 December 2006 Location: India
Online Status: Offline Posts: 6
|
Posted: 07 December 2006 at 12:24am | IP Logged
|
|
|
Hi,
We are facing a strange problem with MailBee.Net POP3 connection. We had a trial version and then we bought the license for the component. The trial version was working fine, but the when we switched to the connection between the server and client gets disconnected after exactly 1 minute (even if we are in middle of downloading the message). It would be great if we could get the possible causes for the same.
Thanks and regards,
Saurabh
|
Back to Top |
|
|
Andrew AfterLogic Support
Joined: 28 April 2006 Location: United States
Online Status: Offline Posts: 1189
|
Posted: 07 December 2006 at 4:26am | IP Logged
|
|
|
To let us investigate the issue, could you please enable logging POP3 session into a file, reproduce the problem, and send us the log file for examination? You can enable logging as follows:
Code:
// C# syntax
Pop3 pop = new Pop3();
pop.Log.Enabled = true;
pop.Log.Filename = @"C:\log.txt";
pop.Log.Clear();
' VB.NET syntax
Dim pop As New Pop3
pop.Log.Enabled = True
pop.Log.Filename = "C:\log.txt"
pop.Log.Clear()
|
|
|
Please make sure the application has permission to write into the specified location. You can send the log file to support@afterlogic.com.
Best regards,
Andrew
|
Back to Top |
|
|