IMAP class
-
I've found several C++ classes that do POP3 and SMTP communication, but I've not found anything for IMAP communication. I want to write a little program that can act as an IMAP client and grab the count of new messages waiting in an account on an IMAP server. Anyone know of a class out there that handles IMAP client-side communication? ~ Steve
-
I've found several C++ classes that do POP3 and SMTP communication, but I've not found anything for IMAP communication. I want to write a little program that can act as an IMAP client and grab the count of new messages waiting in an account on an IMAP server. Anyone know of a class out there that handles IMAP client-side communication? ~ Steve
If getting a message count is all you want to do, you'd be as well to just use CSocket or CAsyncSocket and implement the IMAP4 yourself. Search for an RFC for IMAP; you'll see its pretty simple. Sorry to dissapoint you all with my lack of a witty or poignant signature.