author | zautrix <zautrix> | 2004-10-18 11:01:02 (UTC) |
---|---|---|
committer | zautrix <zautrix> | 2004-10-18 11:01:02 (UTC) |
commit | c613ac44ea26c66305252feb4ed4ad17f79b5cc6 (patch) (side-by-side diff) | |
tree | 3dbdfc228c6103025781a20292f8855b24b55dd1 | |
parent | a83b6694d2f80ec58f6eb88684897052c69276a0 (diff) | |
download | kdepimpi-c613ac44ea26c66305252feb4ed4ad17f79b5cc6.zip kdepimpi-c613ac44ea26c66305252feb4ed4ad17f79b5cc6.tar.gz kdepimpi-c613ac44ea26c66305252feb4ed4ad17f79b5cc6.tar.bz2 |
some mail imap changes
-rw-r--r-- | kmicromail/libmailwrapper/imapwrapper.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/kmicromail/libmailwrapper/imapwrapper.cpp b/kmicromail/libmailwrapper/imapwrapper.cpp index a6688ed..8150453 100644 --- a/kmicromail/libmailwrapper/imapwrapper.cpp +++ b/kmicromail/libmailwrapper/imapwrapper.cpp @@ -66,13 +66,13 @@ void IMAPwrapper::progress( QString m ) } QString mess; //qDebug("progress "); if ( mMax ) mess = mProgrMess +tr(" message %1 of %2").arg( mCurrent++).arg(mMax); else mess = mProgrMess +tr(" message %1").arg( mCurrent++); Global::statusMessage(mess); - qDebug("Progress %s %s", mess.latin1(), m.latin1()); + //qDebug("Progress %s %s", mess.latin1(), m.latin1()); qApp->processEvents(); } bool IMAPwrapper::start_tls(bool force_tls) { int err; bool try_tls; @@ -264,13 +264,13 @@ void IMAPwrapper::listMessages(const QString&mailbox,QValueList<Opie::Core::OSma mMax = last; //qDebug("last %d ", last); Global::statusMessage(tr("Fetching header list")); qApp->processEvents(); /* the range has to start at 1!!! not with 0!!!! */ //LR the access to web.de imap server is no working with value 1 - qDebug("interval %d - %d ", tryAgain, last-1+tryAgain ); + //qDebug("interval %d - %d ", tryAgain, last-1+tryAgain ); set = mailimap_set_new_interval( tryAgain, 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()); mailimap_fetch_type_new_fetch_att_list_add(fetchType,mailimap_fetch_att_new_rfc822_size()); @@ -299,13 +299,13 @@ void IMAPwrapper::listMessages(const QString&mailbox,QValueList<Opie::Core::OSma } } } Global::statusMessage(tr("Mailbox has %1 mails").arg(target.count())); } else { --tryAgain; - --tryAgain; + --tryAgain;//disabled tryagain by adding this line if ( tryAgain < 0 ) Global::statusMessage(tr("Error fetching headers: %1").arg(m_imap->imap_response)); else qDebug("try again... "); } |