David, please move kmail_config_network.desktop to kmail_config_accounts.desktop on the server and change Makefile.am accordingly when done. Thanks.
CCMAIL:faure@kde.org
svn path=/trunk/kdepim/; revision=348404
* KConfigXT setting for the storage format to use on groupware folders
* Configuration dialog changes to selecting the format, and selecting
an account (instead of a folder) when choosing the kolab XML format.
* Account combobox
* Annotation job (not used until kmfoldercachedimap is merged)
svn path=/trunk/kdepim/; revision=346441
https://intevation.de/roundup/kolab/file40/configuredialog.cpp.diff
This guesses the INBOX location of the chosen account which will result
in the folders being created on startup if they are not there yet, instead
of the resource being disabled.
svn path=/branches/proko2/kdepim/; revision=338825
looking for one by iterating. Find the inbox by iterating from rootFolder()
not folder(), which does not work for online imap, in the config dialo.
svn path=/branches/proko2/kdepim/; revision=338778
- jump to first new (old default)
- jump to first new or unread (old checkbox jump to unread)
- jump to last selected (new)
svn path=/trunk/kdepim/; revision=338393
security page are not connected to the modify signal, so the apply button is not
enabled if you change them.
-> fixed.
svn path=/trunk/kdepim/; revision=331906
(as is the case after the first startup), connect to finishedCheck() and try again then.
Had to add the config key TheIMAPResourceAccount for that.
svn path=/trunk/kdepim/; revision=331178
(as is the case after the first startup), connect to finishedCheck() and try again then.
Had to add the config key TheIMAPResourceAccount for that.
svn path=/branches/proko2/kdepim/; revision=331154
The idea of having different semantics for the const and non-const begin() and end()
doesn't work. The compiler uses the non-const one when the manager is non-const, even
if you type ConstIterator. This meant many methods were working on the shadow-identities
list instead of the real identities (e.g. the identitycombo), and it also meant
that the changed(uoid) signal was never emitted since commit() was looking into the
wrong list.
To fix this, I did like Qt: used a different name for the const and non-const
begin/end. But I left the const ones unchanged to minimize code change, so
I renamed the non-const begin/end to modifyBegin()/modifyEnd().
The other bug was that changed(uoid) was emitted before updating mIdentities,
so the slot (e.g. in my next kmcomposewin.cpp commit) wouldn't be able to
find that identity with identityForUoid().
CCMAIL: Marc Mutz <mutz@kde.org>
svn path=/trunk/kdepim/; revision=329612
This was another merging bug: the branch didn't do that, but HEAD needs the changed signal
to be emitted so that a module's save() gets called.
Fixed https://intevation.de/roundup/aegypten/issue195 - ocsp signer key selector offers the wrong keys
Need to use a KeyRequester with PublicKeys instead of SigningKeyRequester (which implies SecretKeys).
svn path=/trunk/kdepim/; revision=324635