|
I am evaluating the Rebex with POP.NET. I can successfully make conenction and download messages. How do I keept track of the message or "leave a message on server" for a period of time. THis is like most of the pop client. To leave a copy on the server for other device to pop. Is this possible in the control or I have to write my own code to keep track? Thanks, Eddie |
|
POP3 server assigns a unique ID to each mail in the mailbox. This unique ID is the same each time you connect. This makes it possible for an application to keep track of the IDs of mails it retrieved (and that's what most POP3 client applications do) The drawback of this is that some kind of persistent storage for the unique IDs is needed, so this is not an appropriate task for a POP3 library like Rebex POP3 for .NET. This means that you have to keep track of unique IDs yourself in your application. To retrieve the list of mails including unique IDs, use GetMessageList method. For mor information about unique IDs and sequence numbers, check out the tutorial. Hi Lukas, that is exactly what I am looking for. No problem, I can keep all the processed messages by their unique IDs using MYSQL Database. The control is great. Will send order soon. Thank you Lukas M. for his contribution as well.
(11 May '10, 07:46)
Eddie
|
|
Downloaded messages are not deleted from the POP3 server. To delete them you need to call the Deleted messages can be restored by calling the |