Activate them via View-menu or rmb-menu from the tree-header.
Changed the qpopup for the folder-context-menu to kpopup to be consistent with the rest.
svn path=/trunk/kdenetwork/kmail/; revision=153547
@@ -762,9 +762,9 @@ int KMFolderMaildir::removeContents()
{
// it would be nice if QDir could delete recursively.. but since it
// doesn't, we have to do this hack
- QString cmd;
+ QCString cmd;
cmd.sprintf("rm -rf '%s'", QFile::encodeName(location()).data());
- system(cmd.ascii());
+ system(cmd.data());
return 0;
}
svn path=/trunk/kdenetwork/kmail/; revision=141877
- Show number of queued messages in outbox
- Open thread if it contains new, unread or _important_ messages
svn path=/trunk/kdenetwork/kmail/; revision=128438
appears that (at least in the trash) some individual messages return
true to 'isMessage' and some dont'. Both are perfectly valid, though.
However, there was this code in getMsgString
assert(mi!=NULL && !mi->isMessage());
which is obviously a holdover (copy-n-paste) from the mbox code. I
just removed the '&& !mi->isMessage()' part since it is no longer
necessary for maildir. Now no apparent crash!
svn path=/trunk/kdenetwork/kmail/; revision=122020
their properties like Identity even after a --check. Hmm.. I should
see if there is a bug report related to this
svn path=/trunk/kdenetwork/kmail/; revision=118049
like 'take'. This means that messages in 'outbox' and 'trash' will
*finally* be deleted for real.
Now there are only two known bugs with the maildir code!
Also removed some test code that I accidently committed before.
svn path=/trunk/kdenetwork/kmail/; revision=117373