summaryrefslogtreecommitdiff
path: root/noncore/net/mail/libmailwrapper/mailtypes.h
authoralwin <alwin>2003-12-09 23:41:24 (UTC)
committer alwin <alwin>2003-12-09 23:41:24 (UTC)
commitc361d36374d9c333ffe4b853067858df5636e1a5 (patch) (side-by-side diff)
treeed99a2a14aba66f2caad15a3467291c12313d048 /noncore/net/mail/libmailwrapper/mailtypes.h
parentcf0db32ce938c3254a8153ec3ac390c7282af5d0 (diff)
downloadopie-c361d36374d9c333ffe4b853067858df5636e1a5.zip
opie-c361d36374d9c333ffe4b853067858df5636e1a5.tar.gz
opie-c361d36374d9c333ffe4b853067858df5636e1a5.tar.bz2
all header stuff will be parsed now
RecMail got the unique message id for reply reference
Diffstat (limited to 'noncore/net/mail/libmailwrapper/mailtypes.h') (more/less context) (show whitespace changes)
-rw-r--r--noncore/net/mail/libmailwrapper/mailtypes.h8
1 files changed, 6 insertions, 2 deletions
diff --git a/noncore/net/mail/libmailwrapper/mailtypes.h b/noncore/net/mail/libmailwrapper/mailtypes.h
index bb6a483..c8d533a 100644
--- a/noncore/net/mail/libmailwrapper/mailtypes.h
+++ b/noncore/net/mail/libmailwrapper/mailtypes.h
@@ -31,2 +31,3 @@ public:
RecMail();
+ RecMail(const RecMail&old);
virtual ~RecMail(){}
@@ -43,2 +44,4 @@ public:
void setMbox(const QString&box){mbox = box;}
+ void setMsgid(const QString&id){msg_id=id;}
+ const QString&Msgid()const{return msg_id;}
@@ -50,3 +53,2 @@ public:
const QStringList&Bcc()const;
-
const QBitArray&getFlags()const{return msg_flags;}
@@ -55,3 +57,3 @@ public:
protected:
- QString subject,date,from,mbox;
+ QString subject,date,from,mbox,msg_id;
int msg_number;
@@ -59,2 +61,4 @@ protected:
QStringList to,cc,bcc;
+ void init();
+ void copy_old(const RecMail&old);
};