- Don't allow cancelling mail fetching from a local account, this eats the
remaining mails otherwise
svn path=/trunk/kdenetwork/kmail/; revision=128887
Should fix the embarrassing "Can't find account """ errors.
I also removed the name reading from KMAccount::readConfig(), since you
can't create KMAccounts without names anyway and KMAcctMgr handles this
for us.
svn path=/trunk/kdenetwork/kmail/; revision=128823
stop processing here;
Make KMFilterMgr use iterators instead of first() and next();
Remove the current QToolTips from the filter dialog. They are overloaded.
I made QWhatsThis texts and slim QToolTips instead.
svn path=/trunk/kdenetwork/kmail/; revision=99624
- config.writeEntry("Folder", mFolder ? (const char*)mFolder->name() : "");
+ config.writeEntry("Folder", mFolder ? mFolder->name() : QString::null);
Repeat after me: casts suck. Since this is read as a QString, it should
be written as a QString.
svn path=/trunk/kdenetwork/kmail/; revision=71769
to could end up being completely opened and closed for each mail, which
is inefficient and makes fixing an excessive memory allocation problem
difficult.
Now tempOpenFolder is called so that once a message is transferred into
a folder while checking mail, that folder will be open for at least
the duration of the mail retrieval.
Anyway it's just a one line patch.
svn path=/trunk/kdenetwork/kmail/; revision=70887
non-iso8859-1 support to KMail. This has a GUI change a "Set encoding..."
menu item has been added to the "Options" menu of the composer. This patch
fixes many bugs that non-iso8859-1 users consider critical. I've been
testing if for a few days now, it seems not to adversely affect iso-8859-1
only users, but it's pretty big and needs more testing.
Also a small patch from me to fix some int methods returning bools in
kmfilteraction.cpp (notice by Rik Hemsley, thanks Rik).
Update version number to 1.1.95.3
svn path=/trunk/kdenetwork/kmail/; revision=66711
Precommand is now tokenized on space, to make sure arguments get passed to the command line properly.
svn path=/trunk/kdenetwork/kmail/; revision=55678
Compaction works again.
Old messages on pop server are marked unread. (But something weird is going on there).
Index files should be more robust but I have made a non backwards compatible change to the file format.
Hmm is that all, well the index file problem was bloody hard to reproduce. Blaa blaa
Hey it's Saturday night time to take a break.
svn path=/trunk/kdenetwork/kmail/; revision=43137
pop account type won't work until I check in an updated pop3 kioslave
(which won't be for a few more days at least). But everything should still
compile and run fine(ish) anyway.
Email me sanders@kde.org cc'ing the kmail list if something is screwed.
svn path=/trunk/kdenetwork/kmail/; revision=42010
Now it is possible to have more folders than the screen
is high and still select them in the filter dialog.
* Filter Dialog: changed folder combo box to (semi) auto
resize. Changed layout of dialog to better display all
elements. Also enabled vertical resizing of dialog.
svn path=/trunk/kdenetwork/kmail/; revision=15743