summaryrefslogtreecommitdiff
authoralwin <alwin>2003-12-10 01:19:51 (UTC)
committer alwin <alwin>2003-12-10 01:19:51 (UTC)
commitc244afea4a03d7ae948152b5abac2f059fb1e789 (patch) (side-by-side diff)
tree74e9a6117c3c3854dd8f34cd5599dfb7fb185c86
parent9a7db10da12232625be270feae5df761cfe11afa (diff)
downloadopie-c244afea4a03d7ae948152b5abac2f059fb1e789.zip
opie-c244afea4a03d7ae948152b5abac2f059fb1e789.tar.gz
opie-c244afea4a03d7ae948152b5abac2f059fb1e789.tar.bz2
forgot the reply-to entry
Diffstat (more/less context) (ignore whitespace changes)
-rw-r--r--noncore/net/mail/ProgrammersDoc/ReceivingMails.diabin3086 -> 3158 bytes
-rw-r--r--noncore/net/mail/imapwrapper.cpp29
-rw-r--r--noncore/net/mail/imapwrapper.h2
-rw-r--r--noncore/net/mail/libmailwrapper/imapwrapper.cpp29
-rw-r--r--noncore/net/mail/libmailwrapper/imapwrapper.h2
-rw-r--r--noncore/net/mail/libmailwrapper/mailtypes.h5
-rw-r--r--noncore/net/mail/mailtypes.h5
7 files changed, 42 insertions, 30 deletions
diff --git a/noncore/net/mail/ProgrammersDoc/ReceivingMails.dia b/noncore/net/mail/ProgrammersDoc/ReceivingMails.dia
index 08c6434..2e3033e 100644
--- a/noncore/net/mail/ProgrammersDoc/ReceivingMails.dia
+++ b/noncore/net/mail/ProgrammersDoc/ReceivingMails.dia
Binary files differ
diff --git a/noncore/net/mail/imapwrapper.cpp b/noncore/net/mail/imapwrapper.cpp
index 5ce140e..eae85a7 100644
--- a/noncore/net/mail/imapwrapper.cpp
+++ b/noncore/net/mail/imapwrapper.cpp
@@ -211,7 +211,3 @@ RecMail*IMAPwrapper::parse_list_result(mailimap_msg_att* m_att)
mailimap_msg_att_item *item=0;
- bool named_from = false;
- QString from,date,subject;
- date = from = subject = "";
- clistcell *current,*c,*cf, *current_from = NULL;
- mailimap_address * current_address = NULL;
+ clistcell *current,*c,*cf;
mailimap_msg_att_dynamic*flist;
@@ -273,5 +269,5 @@ RecMail*IMAPwrapper::parse_list_result(mailimap_msg_att* m_att)
mailimap_envelope * head = item->msg_att_static->env;
- date = head->date;
- subject = head->subject;
m = new RecMail();
+ m->setDate(head->date);
+ m->setSubject(head->subject);
if (head->from!=NULL) {
@@ -279,3 +275,3 @@ RecMail*IMAPwrapper::parse_list_result(mailimap_msg_att* m_att)
if (addresslist.count()) {
- from = addresslist.first();
+ m->setFrom(addresslist.first());
}
@@ -294,9 +290,12 @@ RecMail*IMAPwrapper::parse_list_result(mailimap_msg_att* m_att)
}
- m->setSubject(subject);
- m->setFrom(from);
- m->setDate(date);
+ if (head->reply_to!=NULL) {
+ addresslist = address_list_to_stringlist(head->bcc->list);
+ if (addresslist.count()) {
+ m->setReplyto(addresslist.first());
+ }
+ }
m->setMsgid(QString(head->message_id));
qDebug("header: \nFrom: %s\nSubject: %s\nDate: %s\nMsgid: %s",
- from.latin1(),
- subject.latin1(),date.latin1(),m->Msgid().latin1());
+ m->getFrom().latin1(),
+ m->getSubject().latin1(),m->getDate().latin1(),m->Msgid().latin1());
} else if (item->msg_att_static->type==MAILIMAP_MSG_ATT_INTERNALDATE) {
@@ -441,2 +440,3 @@ QStringList IMAPwrapper::address_list_to_stringlist(clist*list)
current = clist_begin(list);
+ unsigned int count = 0;
while (current!= NULL) {
@@ -465,2 +465,5 @@ QStringList IMAPwrapper::address_list_to_stringlist(clist*list)
l.append(QString(from));
+ if (++count > 99) {
+ break;
+ }
}
diff --git a/noncore/net/mail/imapwrapper.h b/noncore/net/mail/imapwrapper.h
index 6565896..faab43c 100644
--- a/noncore/net/mail/imapwrapper.h
+++ b/noncore/net/mail/imapwrapper.h
@@ -30,3 +30,3 @@ protected:
void fillPlainBody(const RecMail&mail,RecBody&target_body, mailimap_body_type_text * text_body);
- QStringList address_list_to_stringlist(clist*list);
+ static QStringList address_list_to_stringlist(clist*list);
diff --git a/noncore/net/mail/libmailwrapper/imapwrapper.cpp b/noncore/net/mail/libmailwrapper/imapwrapper.cpp
index 5ce140e..eae85a7 100644
--- a/noncore/net/mail/libmailwrapper/imapwrapper.cpp
+++ b/noncore/net/mail/libmailwrapper/imapwrapper.cpp
@@ -211,7 +211,3 @@ RecMail*IMAPwrapper::parse_list_result(mailimap_msg_att* m_att)
mailimap_msg_att_item *item=0;
- bool named_from = false;
- QString from,date,subject;
- date = from = subject = "";
- clistcell *current,*c,*cf, *current_from = NULL;
- mailimap_address * current_address = NULL;
+ clistcell *current,*c,*cf;
mailimap_msg_att_dynamic*flist;
@@ -273,5 +269,5 @@ RecMail*IMAPwrapper::parse_list_result(mailimap_msg_att* m_att)
mailimap_envelope * head = item->msg_att_static->env;
- date = head->date;
- subject = head->subject;
m = new RecMail();
+ m->setDate(head->date);
+ m->setSubject(head->subject);
if (head->from!=NULL) {
@@ -279,3 +275,3 @@ RecMail*IMAPwrapper::parse_list_result(mailimap_msg_att* m_att)
if (addresslist.count()) {
- from = addresslist.first();
+ m->setFrom(addresslist.first());
}
@@ -294,9 +290,12 @@ RecMail*IMAPwrapper::parse_list_result(mailimap_msg_att* m_att)
}
- m->setSubject(subject);
- m->setFrom(from);
- m->setDate(date);
+ if (head->reply_to!=NULL) {
+ addresslist = address_list_to_stringlist(head->bcc->list);
+ if (addresslist.count()) {
+ m->setReplyto(addresslist.first());
+ }
+ }
m->setMsgid(QString(head->message_id));
qDebug("header: \nFrom: %s\nSubject: %s\nDate: %s\nMsgid: %s",
- from.latin1(),
- subject.latin1(),date.latin1(),m->Msgid().latin1());
+ m->getFrom().latin1(),
+ m->getSubject().latin1(),m->getDate().latin1(),m->Msgid().latin1());
} else if (item->msg_att_static->type==MAILIMAP_MSG_ATT_INTERNALDATE) {
@@ -441,2 +440,3 @@ QStringList IMAPwrapper::address_list_to_stringlist(clist*list)
current = clist_begin(list);
+ unsigned int count = 0;
while (current!= NULL) {
@@ -465,2 +465,5 @@ QStringList IMAPwrapper::address_list_to_stringlist(clist*list)
l.append(QString(from));
+ if (++count > 99) {
+ break;
+ }
}
diff --git a/noncore/net/mail/libmailwrapper/imapwrapper.h b/noncore/net/mail/libmailwrapper/imapwrapper.h
index 6565896..faab43c 100644
--- a/noncore/net/mail/libmailwrapper/imapwrapper.h
+++ b/noncore/net/mail/libmailwrapper/imapwrapper.h
@@ -30,3 +30,3 @@ protected:
void fillPlainBody(const RecMail&mail,RecBody&target_body, mailimap_body_type_text * text_body);
- QStringList address_list_to_stringlist(clist*list);
+ static QStringList address_list_to_stringlist(clist*list);
diff --git a/noncore/net/mail/libmailwrapper/mailtypes.h b/noncore/net/mail/libmailwrapper/mailtypes.h
index c8d533a..6d6b080 100644
--- a/noncore/net/mail/libmailwrapper/mailtypes.h
+++ b/noncore/net/mail/libmailwrapper/mailtypes.h
@@ -46,2 +46,5 @@ public:
const QString&Msgid()const{return msg_id;}
+ void setReplyto(const QString&reply){replyto=reply;}
+ const QString&Replyto()const{return replyto;}
+
@@ -57,3 +60,3 @@ public:
protected:
- QString subject,date,from,mbox,msg_id;
+ QString subject,date,from,mbox,msg_id,replyto;
int msg_number;
diff --git a/noncore/net/mail/mailtypes.h b/noncore/net/mail/mailtypes.h
index c8d533a..6d6b080 100644
--- a/noncore/net/mail/mailtypes.h
+++ b/noncore/net/mail/mailtypes.h
@@ -46,2 +46,5 @@ public:
const QString&Msgid()const{return msg_id;}
+ void setReplyto(const QString&reply){replyto=reply;}
+ const QString&Replyto()const{return replyto;}
+
@@ -57,3 +60,3 @@ public:
protected:
- QString subject,date,from,mbox,msg_id;
+ QString subject,date,from,mbox,msg_id,replyto;
int msg_number;