summaryrefslogtreecommitdiff
path: root/noncore/net/mail/mboxwrapper.cpp
authoralwin <alwin>2004-01-03 18:39:24 (UTC)
committer alwin <alwin>2004-01-03 18:39:24 (UTC)
commit8dd96feb25472a8c4f8e6b3f9b0553f83c6e3000 (patch) (side-by-side diff)
treef4f6b9eee00e1b687bfb90bd58949319cf46ec88 /noncore/net/mail/mboxwrapper.cpp
parent27b84ed363fd7fc52092e3c2d1e49dca079b7ffd (diff)
downloadopie-8dd96feb25472a8c4f8e6b3f9b0553f83c6e3000.zip
opie-8dd96feb25472a8c4f8e6b3f9b0553f83c6e3000.tar.gz
opie-8dd96feb25472a8c4f8e6b3f9b0553f83c6e3000.tar.bz2
status methods for mailfolder implemented
Diffstat (limited to 'noncore/net/mail/mboxwrapper.cpp') (more/less context) (ignore whitespace changes)
-rw-r--r--noncore/net/mail/mboxwrapper.cpp21
1 files changed, 21 insertions, 0 deletions
diff --git a/noncore/net/mail/mboxwrapper.cpp b/noncore/net/mail/mboxwrapper.cpp
index 0aa33dd..540a971 100644
--- a/noncore/net/mail/mboxwrapper.cpp
+++ b/noncore/net/mail/mboxwrapper.cpp
@@ -298,6 +298,27 @@ int MBOXwrapper::deleteMbox(const Folder*tfolder)
Global::statusMessage(tr("Error deleting Mailbox."));
return 0;
}
return 1;
}
+void MBOXwrapper::statusFolder(folderStat&target_stat,const QString & mailbox)
+{
+ mailfolder*folder = 0;
+ mailstorage*storage = mailstorage_new(NULL);
+ target_stat.message_count = 0;
+ target_stat.message_unseen = 0;
+ target_stat.message_recent = 0;
+ QString p = MBOXPath+"/"+mailbox;
+ QFile fi(p);
+ if (!fi.exists()) {
+ Global::statusMessage(tr("Mailbox doesn't exist."));
+ return;
+ }
+ int r = mbox_mailstorage_init(storage,(char*)p.latin1(),0,0,0);
+ folder = mailfolder_new( storage,(char*)p.latin1(),NULL);
+ r = mailfolder_connect(folder);
+ r = mailsession_status_folder(folder->fld_session,(char*)mailbox.latin1(),&target_stat.message_count,
+ &target_stat.message_recent,&target_stat.message_unseen);
+ if (folder) mailfolder_free(folder);
+ if (storage) mailstorage_free(storage);
+}