I'm looking for an IMAP4 library for .NET (preferably working on Mono out of the box) which can Create new messages in mailbox, returns the ID of this new message allowing later to delete the message by that ID. None of the ones I tried (Lumisoft, AE.Net.Mail, ImapX) can do this simple stuff. Is there any full-featured IMAP4 implementation for .NET?

link|improve this question

48% accept rate
feedback

2 Answers

up vote 1 down vote accepted

Take a look at Mail.dll IMAP library.

It supports UIDPLUS:

long? uid = imap.UploadMessage("[Gmail]/Sent Mail", email);

imap.DeleteMessageByUID((long)uid);

Please note that this is a commercial product I created.

link|improve this answer
Thanks, but I finally got away from storing data in IMAP enabled mailbox. The protocol is just too bad and handles message updates terribly ineffectively. I will be doing my own webservice instead. – aloneguid Feb 2 at 17:25
feedback

Full featured ... i doubt there is any IMAP client/server what supports ALL IMAP extentions. You are talking about UIDPLUS extention. With lumisoft you can do that, but need to use StoreMessageAsync method, it will allow you to access full server final response(StoreMessageAsyncOP.FinalResponse), it easy to parse UID out of it. Though normal synchronous StoreMessage won't support it at moment. With ManualResetEvent it's easy to turn asynchronous method to synchronous.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.