vote up 0 vote down star

I quickly put together some code with KoolWire It isnt mono compatible according to MoMa. What lib can i use that is compatible with mono? or at least a mono equivalent thats very easy to implement.

flag

41% accept rate

2 Answers

vote up 1 vote down

Try Mail.dll .NET email component:

Imap imap = new Imap();

imap.Connect("imapServer");
imap.User = "user";
imap.Password = "password";
imap.Login();

imap.SelectInbox();
List<long> uids = imap.SearchFlag(Flag.Unseen);

foreach (long uid in uids)
{
    string eml = imap.GetMessageByUID(uid);
    ISimpleMailMessage message = new SimpleMailMessageBuilder()
        .CreateFromEml(eml);

    Console.WriteLine(message.Subject);
}
imap.Close(true);

You can download it here: http://www.lesnikowski.com/mail.

link|flag
vote up 0 vote down

Lumisoft should be Mono-compatible, the changelog mentions it since 2006.

link|flag
It looks like a mail server AND doesnt have a imap lib :( – acidzombie24 Oct 2 at 12:33
Yes it does, it's here: lumisoft.ee/lsWWW/Download/… – Mauricio Scheffer Oct 2 at 12:43

Your Answer

Get an OpenID
or

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