Dirk Mueller
6797558d5d
356 includes less
...
svn path=/trunk/kdenetwork/kmail/; revision=117339
25 years ago
Michael Haeckel
3053058627
QList -> QPtrList
...
svn path=/trunk/kdenetwork/kmail/; revision=112855
25 years ago
Stephan Kulow
6164556515
use debug area 5006 - so I can read mails without seeing tons of debug output
...
svn path=/trunk/kdenetwork/kmail/; revision=101769
25 years ago
Marc Mutz
53696dd9fd
Implement outgoing filtering and
...
stop processing here;
Make KMFilterMgr use iterators instead of first() and next();
Remove the current QToolTips from the filter dialog. They are overloaded.
I made QWhatsThis texts and slim QToolTips instead.
svn path=/trunk/kdenetwork/kmail/; revision=99624
25 years ago
Michael Haeckel
84eeb6eb0e
Use KConfigGroupSaver everywhere.
...
Patch by Marc Mutz <Marc.Mutz@uni-bielefeld.de>
svn path=/trunk/kdenetwork/kmail/; revision=97385
25 years ago
Stephan Kulow
1dfa89d00a
reworked the folder properties dialog and name it "Properties of folder" instead of "Modify folder" as nothing in there changes the folder
...
svn path=/trunk/kdenetwork/kmail/; revision=97167
25 years ago
Michael Haeckel
ddcb90a23b
Remove a lot of debugging code and don't eat actions after a Set Identity
...
action.
Patch by Marc Mutz <Marc.Mutz@uni-bielefeld.de>
svn path=/trunk/kdenetwork/kmail/; revision=96017
25 years ago
Michael Haeckel
c248041620
Monster patch by Marc Mutz <Marc.Mutz@uni-bielefeld.de>
...
Rewritten filter dialog and some improvements for filtering.
svn path=/trunk/kdenetwork/kmail/; revision=94962
25 years ago
Stephan Kulow
044f34e4c3
don't leak filters
...
svn path=/trunk/kdenetwork/kmail/; revision=94505
25 years ago
Stephan Kulow
fec2831df5
removing "const QString" in return values and parameters. It only confuses compilers,
...
using const QString& in parameters and QString in return values
svn path=/trunk/kdenetwork/kmail/; revision=92546
25 years ago
Don Sanders
1491a4339d
Make it compile on aix, and remove a debug statement.
...
===================================================================
RCS file: /home/kde/kdenetwork/kmail/kmaddrbook.cpp,v
retrieving revision 1.30
diff -u -b -r1.30 kmaddrbook.cpp
--- kmaddrbook.cpp 2001/01/22 21:15:12 1.30
+++ kmaddrbook.cpp 2001/02/18 21:00:27
@@ -2,6 +2,7 @@
// Author: Stefan Taferner <taferner@kde.org>
// This code is under GPL
+#include <config.h>
#include "kmaddrbook.h"
#include <kapp.h>
#include <kconfig.h>
@@ -112,7 +113,6 @@
while ( !t.eof() )
{
line = t.readLine();
- kdDebug() << QString("load ") + line << endl;
if (line[0]!='#' && !line.isNull()) inSort((const char *)line.local8Bit());
}
rc = file.status();
Index: kmfilter.cpp
===================================================================
RCS file: /home/kde/kdenetwork/kmail/kmfilter.cpp,v
retrieving revision 1.29
diff -u -b -r1.29 kmfilter.cpp
--- kmfilter.cpp 2001/02/15 00:28:45 1.29
+++ kmfilter.cpp 2001/02/18 21:00:27
@@ -1,6 +1,7 @@
// kmfilter.cpp
// Author: Stefan Taferner <taferner@kde.org>
+#include <config.h>
#include "kmfilter.h"
#include "kmglobal.h"
#include "kmmessage.h"
Index: main.cpp
===================================================================
RCS file: /home/kde/kdenetwork/kmail/main.cpp,v
retrieving revision 1.113
diff -u -b -r1.113 main.cpp
--- main.cpp 2001/01/19 09:52:28 1.113
+++ main.cpp 2001/02/18 21:00:27
@@ -1,6 +1,7 @@
// KMail startup and initialize code
// Author: Stefan Taferner <taferner@alpin.or.at>
+#include <config.h>
#include <signal.h>
#include <unistd.h>
#include <stdio.h>
Index: vcard.cpp
===================================================================
RCS file: /home/kde/kdenetwork/kmail/vcard.cpp,v
retrieving revision 1.9
diff -u -b -r1.9 vcard.cpp
--- vcard.cpp 2000/09/06 05:46:27 1.9
+++ vcard.cpp 2001/02/18 21:00:28
@@ -26,6 +26,7 @@
// FIXME: do proper CRLF/CR handling
// FIXME: handle TYPE=x,y,z qualifiers
+#include <config.h>
#include "vcard.h"
#include <stdlib.h>
#include <ctype.h>
svn path=/trunk/kdenetwork/kmail/; revision=83507
25 years ago
Dirk Mueller
d471555dd9
compile with gcc3. reviewed by Don.
...
svn path=/trunk/kdenetwork/kmail/; revision=82897
25 years ago
Don Sanders
038840b925
Fix execute, set identity etc filters losing mail if no transfer action
...
is used.
svn path=/trunk/kdenetwork/kmail/; revision=65163
26 years ago
Don Sanders
ee85030a1e
Fixed bug, does not contain filter rule didn't work.
...
case KMFilterRule::FuncContainsNot:
- return ( ! msgContents.find(mContents, FALSE) );
+ return ( msgContents.find(mContents, FALSE) < 0 );
svn path=/trunk/kdenetwork/kmail/; revision=63186
26 years ago
Hans Petter Bieker
0007cd8b56
Cleaner compilation.
...
svn path=/trunk/kdenetwork/kmail/; revision=59916
26 years ago
Daniel Naber
a89981c3a5
Michael Haeckel's fix for #7217 ("Some Filter rules do not work any longer
...
after switching language")
svn path=/trunk/kdenetwork/kmail/; revision=59879
26 years ago
Don Sanders
34f8a9e369
Don't unnecessary alarm people by telling them 'skip rest' actions are now
...
ignored. I'm sure they have enough problems to deal with already.
svn path=/trunk/kdenetwork/kmail/; revision=59745
26 years ago
Daniel Naber
7fe836a85b
-body search
...
-fixed "doesn't contain"
-search is now case insensitive
-made KMFldSearchRule::matches() and KMFilterRule::matches() more similar
and documented that
-removed "Resent-From", "X-Loop" and "Reply-To" to make things more clear
(you can still enter them manually...)
-better user feedback (exact number of message currently being searched,
hope that doesn't flicker? It works for me).
svn path=/trunk/kdenetwork/kmail/; revision=50872
26 years ago
Don Sanders
4c11045677
Patch from Daniel Naber to add "To or CC" filter.
...
svn path=/trunk/kdenetwork/kmail/; revision=47398
26 years ago
Matthias Kiefer
9e4c6f35c5
fixed some typos and replaced some text to enable better translations
...
svn path=/trunk/kdenetwork/kmail/; revision=45711
26 years ago
Don Sanders
6eeb04145d
ported from warning to KMessageBox::information.
...
svn path=/trunk/kdenetwork/kmail/; revision=42942
26 years ago
Don Sanders
d5945b1571
An assortment of patches from Daniel.
...
svn path=/trunk/kdenetwork/kmail/; revision=39332
27 years ago
Don Sanders
b3075eceb3
The Merge. QT 2.1 (cvs) now required.
...
svn path=/trunk/kdenetwork/kmail/; revision=33018
27 years ago
Don Sanders
feaabb0210
Synchronized with KMail 1.0.24 in 1.1 branch. Approximately 14 weeks of updates have been merged.
...
svn path=/trunk/kdenetwork/kmail/; revision=23044
27 years ago
David Faure
8ba390ce21
some 0 -> QString::null conversions
...
svn path=/trunk/kdenetwork/kmail/; revision=20959
27 years ago
Stephan Kulow
a319ad6c44
CVS_SILENT compilation fixes
...
svn path=/trunk/kdenetwork/kmail/; revision=19985
27 years ago
Stephan Kulow
1afae79487
CVS_SILENT ported to Qt 2.0
...
svn path=/trunk/kdeutils/knotes/; revision=17396
27 years ago
Markus Wuebben
c96fac8ec3
//$markus: -more stabilization
...
svn path=/trunk/kdenetwork/kmail/; revision=8616
28 years ago
Stefan Taferner
c3c4b53f97
* Removed lots of old debug messages.
...
* Composer: answering the confirmation is no longer
ignored.
* Finetuning: added missing pixmaps to makefile and
repainted pixmap for queued and sent messages.
svn path=/trunk/kdenetwork/kmail/; revision=8608
28 years ago
Stefan Taferner
4ea1cac0cc
Fixed a stupid bug I just commited ;-)
...
svn path=/trunk/kdenetwork/kmail/; revision=8160
28 years ago
Robert Williams
7b481506b8
Fixed compiling error for EGCS (31 May Snapshot)
...
svn path=/trunk/kdenetwork/kmail/; revision=8147
28 years ago
Stefan Taferner
ca05f0391e
* Filters: Bugfix: when deleting a folder that was the target
...
of a filter the next get-mails crashed.
* Filter Dialog: Deleting filter rules did not work. Fixed.
svn path=/trunk/kdenetwork/kmail/; revision=7508
28 years ago
Stefan Taferner
8f6dd7dee4
Fixed problem with sending multiple addresses, esp. those that contain
...
" or comma in a quoted string.
svn path=/trunk/kdenetwork/kmail/; revision=5265
29 years ago
Stefan Taferner
3015f41a72
* dead.letter is now written when kmail crashes
...
* some bugs fixed
svn path=/trunk/kdenetwork/kmail/; revision=5108
29 years ago
Stefan Taferner
a8c63f70b5
With permission of Coolo and certification of Chris I apply a major bugfix
...
block for KMail:
- Attachments work again
- sending of messages > 64K with sendmail now works
- PGP passphrase is no longer printed to stdout
- inline attachments are handled better
- serious bugs in filter code fixed (filter-Gui is still missing)
- removed KEdit widget (now in KdeLibs)
- fixed some bugs in addressbook editor
- send-again of messages: changing of header fields in the composer did
not really change the contents of the message's header field
svn path=/trunk/kdenetwork/kmail/; revision=4882
29 years ago
Stefan Taferner
22ca31975f
- ensured that QString::sprintf does not cause troubles
...
- now pine&co are able to display the contents of the mail folders, however,
the status field still needs work
- rewrote the quoted-printable header-field parser. Now quoted-printable
encoded header fields look a lot better.
svn path=/trunk/kdenetwork/kmail/; revision=3490
29 years ago
Stefan Taferner
d5f5d0c62b
Added a simple shell script that converts MH style mail folders to those
...
that KMail likes (dir with numbered messages to one large file).
Attachments can now be shell scripts. Defined by adding a | after the
name of the script in Settings->Identity->Signature.
svn path=/trunk/kdenetwork/kmail/; revision=2764
29 years ago
Stefan Taferner
eba875be4e
Working hard on the mail filter dialog. Still not done.
...
Fixed some small bugs.
Good night for today :-)
svn path=/trunk/kdenetwork/kmail/; revision=2680
29 years ago
Stefan Taferner
a4da64754d
Switched nearly every character pointer in KMMessage and KMMsgPart to
...
QString. This should improve performance and usability.
svn path=/trunk/kdenetwork/kmail/; revision=2217
29 years ago
Stefan Taferner
59a5dd3621
Implemented basis for mail filters.
...
I think I also found the bug in the sender code :-)))
So sending (via sendmail) should work (again).
svn path=/trunk/kdenetwork/kmail/; revision=2152
29 years ago