- the wheel-scrolling bug
- sets the focus properly in some dialogs
- makes the KAB dialog not show the "select-dialog" when there's nothing to
select
- uses a KURLRequester for the signature lineedit
- shows a busy pointer when closing the config-dialog
- sets the focus properly and positions the cursor nicely when replying to a
mail
svn path=/trunk/kdenetwork/kmail/; revision=88692
Patch by Jason Stephenson <panda@mis.net>
- Remove information about not existing folder from the config file.
Especially useful for IMAP folders. That just made my kmailrc 90% smaller.
- Mention a few more features on the about page.
svn path=/trunk/kdenetwork/kmail/; revision=86724
Michael, adding the version number with .arg(KMAIL_VERSION)
should be okay? Or are there any problems with the encoding
for non-latin charsets?
svn path=/trunk/kdenetwork/kmail/; revision=86694
diff -u -3 -p -r1.240 kmreaderwin.cpp
--- kmreaderwin.cpp 2001/02/07 17:11:55 1.240
+++ kmreaderwin.cpp 2001/02/09 14:09:04
@@ -455,6 +455,7 @@ void KMReaderWin::displayAboutPage()
mViewer->begin(location);
QTextCodec *codec = QTextCodec::codecForName(KGlobal::locale()->charset());
if (codec) mViewer->setCharset(codec->name(), true);
+ else mViewer->setCharset(KGlobal::locale()->charset(), true);
mViewer->write(content.arg(
i18n("<h2>Welcome to KMail 1.2</h2><p>KMail is an email client for the K "
"Desktop Environment. It is designed to be fully compatible with Internet "
svn path=/trunk/kdenetwork/kmail/; revision=82058
Sorry for not waiting until the patch is reviewed. I don't know when core-devel
comes to live again and how long it takes until someone takes the time to
review it.
Since the release is waiting for that and I was asked to do it as quickly as
possible I commit it now.
svn path=/trunk/kdenetwork/kmail/; revision=81737
Support for shift_jis (QT only knows the name sjis)
Better support for iso-2022-jp. This format uses the ESC character to show
that the following 7bit text is encoded. These ESC characters made a few
problems throughout KMail's code.
Based on patch by toyohiro@ksmplus.com.
svn path=/trunk/kdenetwork/kmail/; revision=80981
work, since the font dialog returns also the foundaries of the fonts.
We use KConfig::readFontEntry instead of our own functions now.
-> All upgraders have to configure their fonts again :-)
svn path=/trunk/kdenetwork/kmail/; revision=80074
window or if it is not updated, because it is a dublicate of the previos one.
Don't crash, when replying to a message that was copied to another folder
before.
svn path=/trunk/kdenetwork/kmail/; revision=75976
All known charset related problems should be fixed with that.
- Automatic recoding works correctely for forward and reply
- Redirect works now also with the correct charset
- No characters are lost from the reply phrase when replying to a message with
a different encoding
- File insertion uses the correct charset for the file
svn path=/trunk/kdenetwork/kmail/; revision=72962
Correct handling of the trailing /0 when converting between QCString and
QByteArray. Fixes a problem, where garbage was displayed at the end of the
message.
svn path=/trunk/kdenetwork/kmail/; revision=72708
- The headers are now decoded with the charset(s) specified it them and not
with the charset of the message.
- KMMsgBase::decodeRFC2047String now returns the string in unicode which
is compatible with encodeRFC2047String and makes some things easier.
- Also the address headers and all other headers are decoded, not only the
subject.
- The headers in the header list are displayed correctely.
- Editing mail in the outbox no longer corrupts non latin subjects.
- Reply and forward also keep non latin subjects.
- Indexfile version upgrade. Old indexes are converted.
svn path=/trunk/kdenetwork/kmail/; revision=71050
only found one email that reproduces the problem.
It turns out QCString = QByteArray isn't a good idea for non null
terminated byte arrays.
svn path=/trunk/kdenetwork/kmail/; revision=69930
Change "End pgp message" to "End of pgp message" which is IMHO better grammar
and make it translatable.
svn path=/trunk/kdenetwork/kmail/; revision=69749
encoding for the last message read with an encoding was being used instead of
iso8859-1.
Anyway it fixes the problem exhibited by the recent kevin lo post on
kde-core.
Also save/restore of the chosen encoding is supported at least in the
main window. I think this is necessary as for some people "Auto" is
totally broken, and unreadable fonts are shown for non iso8859-1
messages.
svn path=/trunk/kdenetwork/kmail/; revision=67220