Laurent Montel
eb077e0b11
qt3support--
...
svn path=/trunk/KDE/kdepim/; revision=478377
21 years ago
Laurent Montel
57f2203adc
Some port
...
svn path=/trunk/KDE/kdepim/; revision=457004
21 years ago
Reinhold Kainhofer
2e77a55d99
The FSF has moved, use the new address in all license files and headers ...
...
svn path=/trunk/KDE/kdepim/; revision=437980
21 years ago
Till Adam
f7ebf4ae78
kmacctmgr.[cpp|h|moc] -> accountmanager.[cpp|h|moc]
...
svn path=/trunk/KDE/kdepim/; revision=437935
21 years ago
Till Adam
94fdc3c63c
o KMAcctMgr -> KMail::AccountManager
...
o de-virtualize the AccountManager interface
o const-ify
svn path=/trunk/KDE/kdepim/; revision=437928
21 years ago
Thomas Zander
73eda4578c
These files include, but don't need kmmessage.h (11 of the previous 22...)
...
svn path=/trunk/KDE/kdepim/; revision=425083
21 years ago
Martijn Klingens
31a48be03c
rename the result() signal to something more meaningful, as it is only
...
meaningful for SieveJob::get().
svn path=/trunk/KDE/kdepim/; revision=422097
21 years ago
Till Adam
ca7af2f371
Invert the logic for the "don't send out-of-office replies to span"
...
feature.
svn path=/branches/proko2/kdepim/; revision=404892
21 years ago
Marc Mutz
f9e534d51d
Extend vaction functionality to match what the Kolab web GUI offers: Restrict sending of vacation replies for known spam and to addresses outside of the company.
...
svn path=/branches/proko2/kdepim/; revision=401754
21 years ago
David Faure
5f65475546
Rename everything from last commit to include "vacation" in the name; there
...
could be other sieve scripts.
svn path=/trunk/kdepim/; revision=378239
21 years ago
David Faure
9659a734ed
Make sieve script filename configurable, as needed for e.g. kolab2.
...
No GUI for it (is one needed?), in the kolab2 case it will simply be
set by the wizard.
Patch changed twice from Marc Mutz's comments and now approved :)
svn path=/trunk/kdepim/; revision=378237
21 years ago
David Faure
430059c818
Sieve script was renamed on kolab server. Will need to introduce a (hidden, set by wizards)
...
config option for this I guess.
svn path=/branches/proko2/kdepim/; revision=378101
21 years ago
Szombathelyi Gyrgy
86b90f3004
Allow specifying the authentication method in the url query part.
...
E.g. sieve://sievehost/script?x-auth=METHODNAME
svn path=/trunk/kdepim/; revision=363476
22 years ago
David Faure
a0fb0131a8
perl -pi -e 's,libkdepim/identity,libkpimidentities/identity,' *
...
svn path=/trunk/kdepim/; revision=317529
22 years ago
David Faure
8408c27d66
KMIdentity -> KPIM::Identity, fixed lots of #includes to say <libkdepim/foo.h>
...
(better than <foo.h>, especially when systems could have an identity.h somewhere)
A kconfig_update script moves the identities from kmailrc to emailidentities
svn path=/trunk/kdepim/; revision=311347
22 years ago
Marc Mutz
253a580be5
Better success message when installing out-of-office scripts: Tell the user whether or not the reply mechanism was activated or deactivated.
...
svn path=/trunk/kdepim/; revision=304612
22 years ago
Andrew Coles
af11dae280
Corrected typographical errors.
...
22 years ago
Laurent Montel
dfccf5ce0c
Fix kddebug
...
svn path=/trunk/kdepim/; revision=295858
22 years ago
Marc Mutz
c4df6a1a84
Add <config.h> to all .cpp files as in aegypten_branch we really
...
depend on th values there.
+#ifdef HAVE_CONFIG_H
+#include <config.h>
+#endif
+
Changes done by this script:
for i in *.cpp; do
if ! grep -q '<config.h>' $i; then
echo $i
fi
done | xargs -n1 perl -pi\~ -e \
'if ( /#include/ && !$first ) {
$_ = "#ifdef HAVE_CONFIG_H\n#include <config.h>\n#endif\n\n" . $_;
$first=1;
}'
svn path=/trunk/kdepim/; revision=278891
23 years ago
Marc Mutz
82d8992260
Remove obsolete KSieve::ScriptBuilder method implementations
...
svn path=/trunk/kdepim/; revision=261405
23 years ago
Marc Mutz
9516efac1c
Remove lf2crlf handling (now in kio_sieve) and prepare for KSieve::ScriptBuilder interface change.
...
svn path=/trunk/kdepim/; revision=261401
23 years ago
Stephan Binner
926142a57d
CVS_SILENT i18n style guide fixes
...
svn path=/trunk/kdepim/; revision=256734
23 years ago
Ingo Klcker
4d448db47f
Change
...
#define kernel KMKernel::self()
to
#define kmkernel KMKernel::self()
because 'kernel' was a much to general term. We really shouldn't repeat the mistakes of the X developers.
I noticed this problem when I played around with KImageEffects. kimageeffects.h contains 'kernel' as parameter of some methods and so the compilation had to fail. We won't need KImageEffects in the near future, but at least we are now prepared and a clash with another 'kernel' can't happen anymore.
svn path=/trunk/kdepim/; revision=252621
23 years ago
Ingo Klcker
5cdfad6e8c
Always use KURL::prettyURL() instead of KURL::url() in debug messages because we don't want a possible password to show up in the debug info.
...
svn path=/trunk/kdepim/; revision=248273
23 years ago
Marc Mutz
735690b87e
Add (soon to-be) missing includes
...
svn path=/trunk/kdepim/; revision=240906
23 years ago
Laurent Montel
4a62b95a7f
Fix compile
...
svn path=/trunk/kdepim/; revision=240244
23 years ago
Dirk Mueller
05ce0dd767
unbreak compilation (gcc 3.4+)
...
svn path=/trunk/kdepim/; revision=239255
23 years ago
Marc Mutz
5ba4c76dc7
Fix kroupware issues #340 and #324 : Make {vacation text,mail aliases} editable.
...
Don't forget to compile libksieve before kmail now.
svn path=/trunk/kdepim/; revision=239044
23 years ago
Marc Mutz
85434f7600
Fix vacation. The last commit changed two lines and managed to introduce two bugs in it:
...
1. There's a reason that u is tested for emptiness. Look at findUrlForAccount().
2. Apart from that fact that using Qt's version of Java's reflection API
makes safe refactoring impossible (b/c the compiler can't check it),
one also needs to take care to always use the fully qualified name.
Thus, (new ImapAccountBase())->inherits(ImapAccountBase)) is always
_false_.
If there's a problem with dynamic_cast<> here (other than that it's standard
and not the Qt-way), feel free to fix _that_ problem, but _please_ _test_
before you commit (or post the patch, although posting shouldn't replace testing). This little thing has cost me half an hour of debugging :-((
svn path=/trunk/kdepim/; revision=232715
23 years ago
Daniel Molkentin
792fb59740
Simplified code, made it so that it is known beforehand what we inherit from using inherits.
...
There is also a type property but it a) returns a QString and b) is not implemented in
any of the subclasses. So what can this property be removed?
CCMAIL:kmail@kde.org
svn path=/trunk/kdepim/; revision=228438
23 years ago
Cornelius Schumacher
768e6252b1
Reverting changes which broke compilation. Is is so difficult to type
...
"make" before committing?
svn path=/trunk/kdepim/; revision=228435
23 years ago
Matt Rogers
32015b811f
helpin' out stakios with some dynamic_cast fixes
...
23 years ago
Zack Rusin
b128a466e2
Lets try this : major include's cleanup. Should shave a few mins of kmail's compilation.
...
Credits go to Scott and fixincludes.
svn path=/trunk/kdepim/; revision=222501
23 years ago
Marc Mutz
3381126a60
less confusing (for translators) script grneration: Don't require them to use CRLF and don't require them to dotstuff their strings.
...
svn path=/trunk/kdepim/; revision=205164
23 years ago
Marc Mutz
86ec04bd82
Work around Sieve servers that respond to a SETACTIVE "" with NO if there is no active script. The draft isn't clear on this; personally, I think that would be nonsense.
...
svn path=/trunk/kdepim/; revision=204812
23 years ago
Andras Mantia
4d9cf88c62
Compilation fixes.
...
svn path=/trunk/kdepim/; revision=202453
23 years ago
Daniel Molkentin
9b71a29693
debug areas for HEAD, too
...
svn path=/trunk/kdenetwork/kmail/; revision=198200
24 years ago
Daniel Molkentin
cbf8539d1e
Vacation support for all! (i.e. also for cachedimap :)
...
svn path=/trunk/kdenetwork/kmail/; revision=198092
24 years ago
Marc Mutz
c207fdd2e9
from kroupware_branch: Sieve Vacation support
...
svn path=/trunk/kdenetwork/kmail/; revision=190697
24 years ago