merged the Makefile.am and add all files that were added in make_it_cool
to get smaller diffs [most of them not yet compiled :]
svn path=/trunk/kdenetwork/kmail/; revision=191335
- Disable the code which checks for expiring CRLs. This has been recommended by the Aegypten team resp. by khz.
svn path=/trunk/kdenetwork/kmail/; revision=189498
For better compatibility with legacy mail clients (such as older MS Outlooks):
- cfg->writeEntry("pref-charsets", "us-ascii,locale,utf-8");
+ cfg->writeEntry("pref-charsets", "us-ascii,iso-8859-1,locale,utf-8");
svn path=/trunk/kdenetwork/kmail/; revision=187604
- replace KMKernel::self() with kernel
- introduce KMTextBrowser for viewing raw messages or text-attachments
to fix memory leaks
svn path=/trunk/kdenetwork/kmail/; revision=175027
+ virtual QStringList accounts() = 0;
+ virtual void checkAccount(const QString &account) = 0;
(It's called checkAccount and not checkMail because the dcop command line
tool doesn't like overloaded functions.)
svn path=/trunk/kdenetwork/kmail/; revision=168231
to write to the sent-mail folder but does have permission for the outbox.
Based on patch by Russell Miller <rmiller@duskglow.com>
svn path=/trunk/kdenetwork/kmail/; revision=157558
- added an "always send" flag to the composer which is useful for sending
automated messages (e.g. via DCOP)
- fixed a composer bug: composer crashed when no plugin list existed yet and
the message was neither to be signed nor to be encrypted
svn path=/trunk/kdenetwork/kmail/; revision=151413
( see: http://www.gnupg.org/aegypten/ )
b) Removed some misleading warnings
c) Added Marc Mutz's patch of kmmsgpart.cpp: Make sure
Quoted Printable processing goes analogous to base64
by using KMime now and have some little improvements
in ::body().
d) AEGYPTEN_BRANCH was using KDockWidgets, these have been
(temporarily) disabled in the HEAD branch: will be
activated once KDockWidget has better usability.
Result of this: At the moment the new KMMimePartTree
is invisible - will be fixed right now.
PLEASE use the bug tracker to report any errors that might
result from this merger - additionally you may send mails
directly to me.
Karl-Heinz Zimmer, Senior Software Engineer, Klaraelvdalens Datakonsult AB
<mailto:khz@klaralvdalens-datakonsult.se> <mailto:khz@kde.org>
svn path=/trunk/kdenetwork/kmail/; revision=151089
- new base class ConfigManager with commit/rollback functionality forced on
subclasses through pure virtuals.
All new managers should inherit this and implement the branching bahaviour
of IdentityManager, so that the configuredialog can work on the branch while
the rest of KMail sees only the "old" configuration.
- new IdentityManager, implementing the ConfigManager for KMIdentity's.
- new Signature class abstracting the signature processing.
- new structure for identities in kmailrc:
o upgrade-signature.pl: Turns the old signature-related config keys into
a sigtype/value scheme.
o kmail-upd-identities.pl: Removes all groups for identities not listed in
[Identity]/IdentityList.
Renames all remaining groups to [Identity #n],
with n starting a 0.
Saves the name of the default identity in
[General]/Default Identity
This adds several new technologies to KMail/KMKernel:
- from the new Signature handling: A service to non-QObjects to collect
StdOut and/or StdErr of KProcess (-derived) classes for them.
- from IdentityManager: A service to ConfigManagers requesting a sync of
kapp->config(). The requests get delayed, so multiple requests can
be serviced with a single kapp->config()->sync().
- from ConfigManager: A service to other ConfigManagers and to GUI elements
that wish to be notified of any change in a particular ConfigManager
implementation: Whenever a commit() changes something, the changed() signal
is emitted.
Included is also a fix for the problem of "no stdin at execute filter"
and the introduction of IdentityCombo.
svn path=/trunk/kdenetwork/kmail/; revision=148825