summaryrefslogtreecommitdiff
path: root/noncore/net/mail/imapwrapper.cpp
Side-by-side diff
Diffstat (limited to 'noncore/net/mail/imapwrapper.cpp') (more/less context) (show whitespace changes)
-rw-r--r--noncore/net/mail/imapwrapper.cpp11
1 files changed, 10 insertions, 1 deletions
diff --git a/noncore/net/mail/imapwrapper.cpp b/noncore/net/mail/imapwrapper.cpp
index 16f4565..fc12947 100644
--- a/noncore/net/mail/imapwrapper.cpp
+++ b/noncore/net/mail/imapwrapper.cpp
@@ -23,3 +23,3 @@ void IMAPwrapper::listMessages(const QString&mailbox,Maillist&target )
clistcell *current;
- mailimap_fetch_att *fetchAtt,*fetchAttFlags;
+ mailimap_fetch_att *fetchAtt,*fetchAttFlags,*fetchAttDate;
mailimap_fetch_type *fetchType;
@@ -83,2 +83,3 @@ void IMAPwrapper::listMessages(const QString&mailbox,Maillist&target )
fetchAttFlags = mailimap_fetch_att_new_flags();
+ fetchAttDate = mailimap_fetch_att_new_internaldate();
@@ -88,2 +89,3 @@ void IMAPwrapper::listMessages(const QString&mailbox,Maillist&target )
mailimap_fetch_type_new_fetch_att_list_add(fetchType,fetchAttFlags);
+ mailimap_fetch_type_new_fetch_att_list_add(fetchType,fetchAttDate);
@@ -91,2 +93,3 @@ void IMAPwrapper::listMessages(const QString&mailbox,Maillist&target )
mailimap_set_free( set );
+ /* cleans up the fetch_att's too! */
mailimap_fetch_type_free( fetchType );
@@ -316,2 +319,7 @@ RecMail*IMAPwrapper::parse_list_result(mailimap_msg_att* m_att)
m->setDate(date);
+ } else if (item->msg_att_static->type==MAILIMAP_MSG_ATT_INTERNALDATE) {
+ mailimap_date_time*d = item->msg_att_static->internal_date;
+ QDateTime da(QDate(d->year,d->month,d->day),QTime(d->hour,d->min,d->sec));
+ qDebug("%i %i %i - %i %i %i",d->year,d->month,d->day,d->hour,d->min,d->sec);
+ qDebug(da.toString());
} else {
@@ -411 +419,2 @@ QString IMAPwrapper::fetchBody(const QString & mailbox,const RecMail&mail)
}
+