| Author |  | 
      
        | sekhar.jaji Newbie
 
  
  
 Joined: 05 February 2007
 Location: India
 Online Status: Offline
 Posts: 3
 | 
          Hi,
           | Posted: 07 February 2007 at 4:28am | IP Logged |   |  
           | 
 |  
 Is there any limit on the number of messages that can be downloaded per connection?
 
 | 
       
        | Back to Top |     | 
       
       
        |  | 
        | Andrew AfterLogic Support
 
  
 
 Joined: 28 April 2006
 Location: United States
 Online Status: Offline
 Posts: 1189
 | 
          Actually, MailBee.NET Objects doesn't limit the number of messages that can be downloaded per connection. But some mail server applies various limitations which may look like such limitation (for instance, mail server can terminate the connection by its internal timeout).
           | Posted: 07 February 2007 at 6:16am | IP Logged |   |  
           | 
 |  
 If your mail server doesn't apply any limitations of such kind, MailBee.NET Objects can download unlimited number of messages. If you encounter a problem, please enable logging into a file, reproduce the problem and analyze the log file (or provide us), in most cases, logs allow to investigate the issue. You can enable logging as follows (C# syntax):
 
 
 
| Code: 
 
    
    | 
      
       | Pop3 pop = 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.
 
 
 Best regards,
 Andrew
 | 
       
        | Back to Top |     | 
       
       
        |  |