author | harlekin <harlekin> | 2004-01-09 12:38:04 (UTC) |
---|---|---|
committer | harlekin <harlekin> | 2004-01-09 12:38:04 (UTC) |
commit | 8dd8648b0e82b16bcb0c976d330eaf670081a748 (patch) (side-by-side diff) | |
tree | 6d13a28c634503292a00aff34e99d594c51d097c | |
parent | d3a4757e062ffc5ce5840cb1c52215435a468ff0 (diff) | |
download | opie-8dd8648b0e82b16bcb0c976d330eaf670081a748.zip opie-8dd8648b0e82b16bcb0c976d330eaf670081a748.tar.gz opie-8dd8648b0e82b16bcb0c976d330eaf670081a748.tar.bz2 |
only read accounts that are set online
-rw-r--r-- | noncore/net/mail/libmailwrapper/statusmail.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/noncore/net/mail/libmailwrapper/statusmail.cpp b/noncore/net/mail/libmailwrapper/statusmail.cpp index 1d7d559..172c58f 100644 --- a/noncore/net/mail/libmailwrapper/statusmail.cpp +++ b/noncore/net/mail/libmailwrapper/statusmail.cpp @@ -26,17 +26,17 @@ void StatusMail::initAccounts(QList<Account>&accounts) currentPop3Stat.message_count=0; currentPop3Stat.message_recent=0; currentPop3Stat.message_unseen=0; for ( it = accounts.first(); it; it = accounts.next() ) { - if ( it->getType().compare( "IMAP" ) == 0 ) { + if ( it->getType().compare( "IMAP" ) == 0 && !it->getOffline() ) { IMAPaccount*ima = static_cast<IMAPaccount *>(it); current = AbstractMail::getWrapper(ima); connectionList.append(current); current->statusFolder(currentStat); currentImapStat.message_count+=currentStat.message_unseen; currentImapStat.message_count+=currentStat.message_recent; currentImapStat.message_count+=currentStat.message_count; - } else if ( it->getType().compare( "POP3" ) == 0 ) { + } else if ( it->getType().compare( "POP3" ) == 0 && !it->getOffline() ) { POP3account *pop3 = static_cast<POP3account *>(it); current = AbstractMail::getWrapper(pop3); connectionList.append(current); current->statusFolder(currentStat); |