summaryrefslogtreecommitdiff
path: root/noncore/net/mail
authoralwin <alwin>2003-12-08 21:36:26 (UTC)
committer alwin <alwin>2003-12-08 21:36:26 (UTC)
commit6ecac17fdf96f2244af762f303639d8e79b453ff (patch) (unidiff)
tree630709a9847d9c7a9b8fd4fc8af220a566f47bc6 /noncore/net/mail
parent3597fac5a4f0fb0b5cc5f2606c88177bb608ae63 (diff)
downloadopie-6ecac17fdf96f2244af762f303639d8e79b453ff.zip
opie-6ecac17fdf96f2244af762f303639d8e79b453ff.tar.gz
opie-6ecac17fdf96f2244af762f303639d8e79b453ff.tar.bz2
synced to last state of sources
Diffstat (limited to 'noncore/net/mail') (more/less context) (show whitespace changes)
-rw-r--r--noncore/net/mail/imapwrapper.cpp11
-rw-r--r--noncore/net/mail/libmailwrapper/imapwrapper.cpp11
2 files changed, 20 insertions, 2 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 )
23 clistcell *current; 23 clistcell *current;
24 mailimap_fetch_att *fetchAtt,*fetchAttFlags; 24 mailimap_fetch_att *fetchAtt,*fetchAttFlags,*fetchAttDate;
25 mailimap_fetch_type *fetchType; 25 mailimap_fetch_type *fetchType;
@@ -83,2 +83,3 @@ void IMAPwrapper::listMessages(const QString&mailbox,Maillist&target )
83 fetchAttFlags = mailimap_fetch_att_new_flags(); 83 fetchAttFlags = mailimap_fetch_att_new_flags();
84 fetchAttDate = mailimap_fetch_att_new_internaldate();
84 85
@@ -88,2 +89,3 @@ void IMAPwrapper::listMessages(const QString&mailbox,Maillist&target )
88 mailimap_fetch_type_new_fetch_att_list_add(fetchType,fetchAttFlags); 89 mailimap_fetch_type_new_fetch_att_list_add(fetchType,fetchAttFlags);
90 mailimap_fetch_type_new_fetch_att_list_add(fetchType,fetchAttDate);
89 91
@@ -91,2 +93,3 @@ void IMAPwrapper::listMessages(const QString&mailbox,Maillist&target )
91 mailimap_set_free( set ); 93 mailimap_set_free( set );
94 /* cleans up the fetch_att's too! */
92 mailimap_fetch_type_free( fetchType ); 95 mailimap_fetch_type_free( fetchType );
@@ -316,2 +319,7 @@ RecMail*IMAPwrapper::parse_list_result(mailimap_msg_att* m_att)
316 m->setDate(date); 319 m->setDate(date);
320 } else if (item->msg_att_static->type==MAILIMAP_MSG_ATT_INTERNALDATE) {
321 mailimap_date_time*d = item->msg_att_static->internal_date;
322 QDateTime da(QDate(d->year,d->month,d->day),QTime(d->hour,d->min,d->sec));
323 qDebug("%i %i %i - %i %i %i",d->year,d->month,d->day,d->hour,d->min,d->sec);
324 qDebug(da.toString());
317 } else { 325 } else {
@@ -411 +419,2 @@ QString IMAPwrapper::fetchBody(const QString & mailbox,const RecMail&mail)
411} 419}
420
diff --git a/noncore/net/mail/libmailwrapper/imapwrapper.cpp b/noncore/net/mail/libmailwrapper/imapwrapper.cpp
index 16f4565..fc12947 100644
--- a/noncore/net/mail/libmailwrapper/imapwrapper.cpp
+++ b/noncore/net/mail/libmailwrapper/imapwrapper.cpp
@@ -23,3 +23,3 @@ void IMAPwrapper::listMessages(const QString&mailbox,Maillist&target )
23 clistcell *current; 23 clistcell *current;
24 mailimap_fetch_att *fetchAtt,*fetchAttFlags; 24 mailimap_fetch_att *fetchAtt,*fetchAttFlags,*fetchAttDate;
25 mailimap_fetch_type *fetchType; 25 mailimap_fetch_type *fetchType;
@@ -83,2 +83,3 @@ void IMAPwrapper::listMessages(const QString&mailbox,Maillist&target )
83 fetchAttFlags = mailimap_fetch_att_new_flags(); 83 fetchAttFlags = mailimap_fetch_att_new_flags();
84 fetchAttDate = mailimap_fetch_att_new_internaldate();
84 85
@@ -88,2 +89,3 @@ void IMAPwrapper::listMessages(const QString&mailbox,Maillist&target )
88 mailimap_fetch_type_new_fetch_att_list_add(fetchType,fetchAttFlags); 89 mailimap_fetch_type_new_fetch_att_list_add(fetchType,fetchAttFlags);
90 mailimap_fetch_type_new_fetch_att_list_add(fetchType,fetchAttDate);
89 91
@@ -91,2 +93,3 @@ void IMAPwrapper::listMessages(const QString&mailbox,Maillist&target )
91 mailimap_set_free( set ); 93 mailimap_set_free( set );
94 /* cleans up the fetch_att's too! */
92 mailimap_fetch_type_free( fetchType ); 95 mailimap_fetch_type_free( fetchType );
@@ -316,2 +319,7 @@ RecMail*IMAPwrapper::parse_list_result(mailimap_msg_att* m_att)
316 m->setDate(date); 319 m->setDate(date);
320 } else if (item->msg_att_static->type==MAILIMAP_MSG_ATT_INTERNALDATE) {
321 mailimap_date_time*d = item->msg_att_static->internal_date;
322 QDateTime da(QDate(d->year,d->month,d->day),QTime(d->hour,d->min,d->sec));
323 qDebug("%i %i %i - %i %i %i",d->year,d->month,d->day,d->hour,d->min,d->sec);
324 qDebug(da.toString());
317 } else { 325 } else {
@@ -411 +419,2 @@ QString IMAPwrapper::fetchBody(const QString & mailbox,const RecMail&mail)
411} 419}
420