Stephan Kulow
b7265e14df
I used kmail and I still can't stand that file dialogs saying * as filter:
...
- KURL url = KFileDialog::getSaveURL( fileName, "*", this );
+ KURL url = KFileDialog::getSaveURL( fileName, QString::null, this );
svn path=/trunk/kdenetwork/kmail/; revision=92001
25 years ago
Michael Haeckel
51c7263648
Use the pgp code from libkdenetwork.
...
Patch by Mathias Waack <mathias@atoll-net.de>
svn path=/trunk/kdenetwork/kmail/; revision=91016
25 years ago
Michael Haeckel
4c0177d1ea
Sending via SMTP now uses the e-mail address from the current identity and not
...
the one from the default identity for the MAIL FROM command.
svn path=/trunk/kdenetwork/kmail/; revision=90776
25 years ago
Daniel Naber
d3038e5a21
don't show the "could not attach public key" error if the user
...
just pressed cancel
svn path=/trunk/kdenetwork/kmail/; revision=89672
25 years ago
Carsten Pfeiffer
300b4ba508
fixes:
...
- 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
25 years ago
Andreas Gungl
60c9bb4f14
Show encrypted messages as plaintext in composer when it's possible
...
svn path=/trunk/kdenetwork/kmail/; revision=88234
25 years ago
Michael Haeckel
6c2ba583c5
Use the configured colours only for the edit fields and not the menu in the
...
composer window.
svn path=/trunk/kdenetwork/kmail/; revision=88060
25 years ago
Daniel Naber
fb8afbedf0
prevent crash #22492 :
...
"KMail crash if gpg key name has special characters"
svn path=/trunk/kdenetwork/kmail/; revision=87916
25 years ago
Michael Haeckel
0186fd1844
Don't add a charset header to non-text parts. Eudora does not like that.
...
svn path=/trunk/kdenetwork/kmail/; revision=87396
25 years ago
George Staikos
1fb6388957
Set focus to the To: field if it is blank and the user tries to send.
...
It's implemented as a bit of a hack but it is a LOT less of a code
impact this way.
svn path=/trunk/kdenetwork/kmail/; revision=86869
25 years ago
Michael Haeckel
0f4aea501b
- GUI: Bind a transport (for example SMTP server) to an indentity
...
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
25 years ago
George Staikos
f597ef56d5
patch for wishlist #22264 (subject line getting focus)
...
svn path=/trunk/kdenetwork/kmail/; revision=86720
25 years ago
Daniel Naber
a42b3aa0f8
adding "..." to "attach public key" menu item
...
svn path=/trunk/kdenetwork/kmail/; revision=86508
25 years ago
Michael Haeckel
9929c01d05
GUI: Bind the PGP identities to KMail's identities.
...
Patch by Steven Brown <swbrown@ucsd.edu>.
svn path=/trunk/kdenetwork/kmail/; revision=85892
25 years ago
Daniel Naber
753e38d316
ask for "save as drafts" if the composer gets closed
...
svn path=/trunk/kdenetwork/kmail/; revision=85678
25 years ago
Michael Haeckel
0268115b42
Don't add garbage characters at the end when inserting files.
...
svn path=/trunk/kdenetwork/kmail/; revision=85289
25 years ago
Daniel Naber
b4447c6534
invokeHTMLHelp() -> invokeHelp()
...
svn path=/trunk/kdenetwork/kmail/; revision=84318
25 years ago
Michael Haeckel
7f60bbceac
- Don't send to cc or bcc addresses, when the corresponding header fields are
...
invisible in the composer but contain data.
- Remove some KRN code.
svn path=/trunk/kdenetwork/kmail/; revision=84064
25 years ago
Michael Haeckel
dfce5de5b5
Handle mails with several attachments but without a text part correctely when
...
editing, forwarding or redirecting.
svn path=/trunk/kdenetwork/kmail/; revision=84061
25 years ago
Michael Haeckel
f30fcfa6bf
Fix the menu items after the toolbar content has changed.
...
diff -u -3 -p -r1.310 kmcomposewin.cpp
--- kmcomposewin.cpp 2001/02/09 15:17:34 1.310
+++ kmcomposewin.cpp 2001/02/09 18:42:49
@@ -2532,6 +2532,7 @@ void KMComposeWin::slotEditToolbars()
if (dlg.exec() == true)
{
createGUI("kmcomposerui.rc");
+ toolbarAction->setChecked(!toolBar()->isHidden());
}
}
diff -u -3 -p -r1.258 kmmainwin.cpp
--- kmmainwin.cpp 2001/02/07 15:01:39 1.258
+++ kmmainwin.cpp 2001/02/09 18:42:52
@@ -1639,6 +1639,7 @@ void KMMainWin::slotEditToolbars()
if (dlg.exec() == true)
{
createGUI("kmmainwin.rc");
+ toolbarAction->setChecked(!toolBar()->isHidden());
}
}
svn path=/trunk/kdenetwork/kmail/; revision=82135
25 years ago
Michael Haeckel
d78472918a
- Better workaround for a problem with multibyte encodings in QT.
...
- Better font finding for displaying in the composer.
- The default charset setting for the composer should now work for all charsets.
- Better default values for Japanese.
Tested by Toyohiro
svn path=/trunk/kdenetwork/kmail/; revision=82080
25 years ago
Michael Haeckel
77d0178939
Honour the charset when viewing attachments in the composer window.
...
- KMReaderWin::atmView(NULL, msgPart, false, atmTempFile->name(), pname, 0);
+ KMReaderWin::atmView(NULL, msgPart, false, atmTempFile->name(), pname,
+ KMMsgBase::codecForName(mCharset));
svn path=/trunk/kdenetwork/kmail/; revision=80172
26 years ago
Michael Haeckel
16c726672e
The font configuration for fixed width fonts works again. That does no longer
...
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
26 years ago
Michael Haeckel
7b4ace4b1b
Oops, I just got a mail back with the following notice:
...
<quote>
Hi. This is the qmail-send program at email.seznam.cz.
I'm afraid I wasn't able to deliver your message to the following addresses.
This is a permanent error; I've given up. Sorry it didn't work out.
Unfortunately, our mail system does not like structure of this message.
The message is probably seriously malformed.
</quote>
With this change the Content-Type header should be correctely updated after
removing an attachment from a mail.
diff -u -3 -p -r1.306 kmcomposewin.cpp
--- kmcomposewin.cpp 2001/01/20 14:43:49 1.306
+++ kmcomposewin.cpp 2001/01/23 20:22:48
@@ -1109,8 +1109,7 @@ bool KMComposeWin::applyChanges(void)
// text message.
mMsg->deleteBodyParts();
mMsg->setAutomaticFields(TRUE);
- mMsg->setTypeStr("text");
- mMsg->setSubtypeStr("plain");
+ mMsg->setHeaderField("Content-Type","text/plain");
mMsg->setCteStr(isQP ? "quoted-printable": "8bit");
svn path=/trunk/kdenetwork/kmail/; revision=79770
26 years ago
Michael Haeckel
b36e32f09b
Don't do nothing when trying to send a message and auto sign is checked, but
...
neither gpg nor pgp installed.
svn path=/trunk/kdenetwork/kmail/; revision=79228
26 years ago
Michael Haeckel
f6dcb73c7f
Patch by Matt Newell <newellm@proaxis.com>
...
Don't crash when double clicking on send button or queuing while send is already
in progress.
svn path=/trunk/kdenetwork/kmail/; revision=78763
26 years ago
Michael Haeckel
e4f4652bf5
Make David Faure happy :-)
...
svn path=/trunk/kdenetwork/kmail/; revision=78465
26 years ago
Michael Haeckel
e86dcf63d6
Handle drop events of mailto urls properly in the header fields of the
...
composer window.
Also attaching files with non-us-ascii names via drag and drop works again,
seems, that someone changed the protocol, since I fixed that the last time.
svn path=/trunk/kdenetwork/kmail/; revision=78386
26 years ago
Michael Haeckel
0b615af205
The composer window now also uses descriptive names for the encodings if it
...
finds them with an O(n*log(n)) algorythm :-)
svn path=/trunk/kdenetwork/kmail/; revision=78023
26 years ago
Michael Haeckel
b918dc6349
The external editor is no longer blocking.
...
svn path=/trunk/kdenetwork/kmail/; revision=76480
26 years ago
Michael Haeckel
bf34714220
Revert last commit.
...
svn path=/trunk/kdenetwork/kmail/; revision=75989
26 years ago
Antonio Larrosa Jimenez
79088ecf3d
Fixed a problem that could result in a corrupted mbox.
...
When a line in the body of a msg starts with "From ", and there's no
index file, it could be interpreted as a start of another msg, so it
must be changed to something like " From " (Netscape and Pine use
">From", but I've preferred a blank space because it seems less intrusive)
svn path=/trunk/kdenetwork/kmail/; revision=75982
26 years ago
Michael Haeckel
70a2eeb128
Don't crash, when replying to a message before it is displayed in the reader
...
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
26 years ago
Michael Haeckel
ad37e4c0a3
us-ascii encoding removes again all non-us-ascii characters.
...
That broke with an update to QT-2.2.3.
svn path=/trunk/kdenetwork/kmail/; revision=75845
26 years ago
Michael Haeckel
3855fb5393
Don't show removed attachments after editing.
...
svn path=/trunk/kdenetwork/kmail/; revision=75527
26 years ago
Laurent Montel
750c74f900
- qtd.addTab (&mKSpellConfig, "Spellchecker");
...
+ qtd.addTab (&mKSpellConfig, i18n("Spellchecker"));
svn path=/trunk/kdenetwork/kmail/; revision=75267
26 years ago
Michael Haeckel
eebb376eb1
Fix possible crash when charset header is not valid.
...
svn path=/trunk/kdenetwork/kmail/; revision=75206
26 years ago
Michael Haeckel
37c67528e2
Don't crash, when the users sends completely empty messages.
...
(Without text and without attachments)
svn path=/trunk/kdenetwork/kmail/; revision=74710
26 years ago
Michael Haeckel
f2ca7c8653
We should probably feed the old message back to the outbox/drafts folder when
...
the user cancels editing instead of throwing it away.
svn path=/trunk/kdenetwork/kmail/; revision=74557
26 years ago
Michael Haeckel
57628b29ce
Patch by Holger Schurig <holgerschurig@gmx.de>
...
Subject line in the composer windows is a bit shorter now, but the layout
looks better.
svn path=/trunk/kdenetwork/kmail/; revision=74298
26 years ago
Michael Haeckel
6e5fedecb2
Correct support for windows-125x.
...
Some people seem to like this encoding.
svn path=/trunk/kdenetwork/kmail/; revision=73905
26 years ago
Michael Haeckel
3e7ada9be6
Don't enter the comboboxes in the composer window with the up key, since it is
...
not possible to leave them with the down key.
svn path=/trunk/kdenetwork/kmail/; revision=73712
26 years ago
Michael Haeckel
7406eb0230
This time a charset fix for latin users :-)
...
Kill all non 7-bit characters when us-ascii is selected.
QTextCodec::codecForName("us-ascii")->name() returns "ISO 8859-1" for some
reason :-(
svn path=/trunk/kdenetwork/kmail/; revision=73530
26 years ago
Michael Haeckel
eb0c4ac7c8
- Flag SSL as "experimental"
...
- Display the key new KMail was really looking for in the key not found error
message
svn path=/trunk/kdenetwork/kmail/; revision=73504
26 years ago
Michael Haeckel
8263529c29
- Don't crash, when sending a mail with empty message text but with attachment.
...
- Workaround: Don't tell the user, that some characters don't fit into utf-8.
svn path=/trunk/kdenetwork/kmail/; revision=73408
26 years ago
Michael Haeckel
a146fbe852
Really attach the user's key, if he wants to attach his key and not a key for
...
the address in the from field.
svn path=/trunk/kdenetwork/kmail/; revision=73286
26 years ago
Michael Haeckel
a155a69ce7
Workaround for QTextCodec bug in QT-2.2.2
...
svn path=/trunk/kdenetwork/kmail/; revision=73269
26 years ago
Michael Haeckel
fa9b0fd363
Not only warn but also preview the question marks, that the uses has not to
...
look for them himself.
svn path=/trunk/kdenetwork/kmail/; revision=73193
26 years ago
Michael Haeckel
83750a40d0
Really last big charset fix :-)
...
PGP/GPG should now also work for non-latin-1 encoded mails.
svn path=/trunk/kdenetwork/kmail/; revision=73190
26 years ago
Michael Haeckel
9324b5e561
Warn before loosing characters, when the encoding is set badly.
...
svn path=/trunk/kdenetwork/kmail/; revision=73129
26 years ago