author | zautrix <zautrix> | 2004-09-10 22:24:25 (UTC) |
---|---|---|
committer | zautrix <zautrix> | 2004-09-10 22:24:25 (UTC) |
commit | c280882f788b31f874f928e23fc29c2aaca991eb (patch) (side-by-side diff) | |
tree | f99de381bb9c4dc083d74a130280ae3f8230c844 /kmicromail | |
parent | 768ce5ccec90c1b062b749e7ad0464d09760b91c (diff) | |
download | kdepimpi-c280882f788b31f874f928e23fc29c2aaca991eb.zip kdepimpi-c280882f788b31f874f928e23fc29c2aaca991eb.tar.gz kdepimpi-c280882f788b31f874f928e23fc29c2aaca991eb.tar.bz2 |
imap enhancements
-rw-r--r-- | kmicromail/libmailwrapper/imapwrapper.cpp | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/kmicromail/libmailwrapper/imapwrapper.cpp b/kmicromail/libmailwrapper/imapwrapper.cpp index ca1c7f1..6faa524 100644 --- a/kmicromail/libmailwrapper/imapwrapper.cpp +++ b/kmicromail/libmailwrapper/imapwrapper.cpp @@ -251,13 +251,15 @@ void IMAPwrapper::listMessages(const QString&mailbox,QValueList<Opie::Core::OSma if (last == 0) { Global::statusMessage(tr("Mailbox has no mails")); return; } else { } - + + Global::statusMessage(tr("Fetching header list")); + qApp->processEvents(); /* the range has to start at 1!!! not with 0!!!! */ set = mailimap_set_new_interval( 1, last ); fetchType = mailimap_fetch_type_new_fetch_att_list_empty(); mailimap_fetch_type_new_fetch_att_list_add(fetchType,mailimap_fetch_att_new_envelope()); mailimap_fetch_type_new_fetch_att_list_add(fetchType,mailimap_fetch_att_new_flags()); mailimap_fetch_type_new_fetch_att_list_add(fetchType,mailimap_fetch_att_new_internaldate()); @@ -274,13 +276,13 @@ void IMAPwrapper::listMessages(const QString&mailbox,QValueList<Opie::Core::OSma int i = 0; for (current = clist_begin(result); current != 0; current=clist_next(current)) { ++i; msg_att = (mailimap_msg_att*)current->data; RecMail*m = parse_list_result(msg_att); if (m) { - if ( maxSizeInKb == 0 || m->Msgsize()<=maxSizeInKb*1024 ) { + if ( maxSizeInKb == 0 || m->Msgsize()<=maxSizeInKb*1024 ) { m->setNumber(i); m->setMbox(mailbox); m->setWrapper(this); target.append(m); } } @@ -309,12 +311,14 @@ QValueList<Opie::Core::OSmartPointer<Folder> >* IMAPwrapper::listFolders() /* * First we have to check for INBOX 'cause it sometimes it's not inside the path. * We must not forget to filter them out in next loop! * it seems like ugly code. and yes - it is ugly code. but the best way. */ + Global::statusMessage(tr("Fetching folder list")); + qApp->processEvents(); QString temp; mask = "INBOX" ; mailimap_mailbox_list *list; err = mailimap_list( m_imap, (char*)"", (char*)mask, &result ); QString del; bool selectable = true; |