Small library for reading mail messages via POP3. Currently doesn\'t return all header fields, and does only plain text authorization.

Dependents:   mmain pop3demo

Revision:
3:37570217ae90
Parent:
2:3893c1aaee8d
Child:
6:3e29a3a6f3bb
--- a/pop3.h	Sat Jan 29 23:27:26 2011 +0000
+++ b/pop3.h	Tue Feb 01 21:17:03 2011 +0000
@@ -15,6 +15,10 @@
 {
     public:
         /**
+            the UIDL this message has on the server
+        */
+        string id;
+        /**
             the 'From:' header        
         */
         string from;
@@ -26,6 +30,7 @@
             the actual mail content, line by line
         */
         list<string> content;
+        
 };
 
 class Pop3CommandResponse;