[Akonadi] [Bug 286043] possible data loss due to filtering (headers or body of email get lost)

2013-01-24 Thread kde.org
https://bugs.kde.org/show_bug.cgi?id=286043

kde@collierm.com changed:

   What|Removed |Added

 CC||kde@collierm.com

-- 
You are receiving this mail because:
You are the assignee for the bug.
___
Kdepim-bugs mailing list
Kdepim-bugs@kde.org
https://mail.kde.org/mailman/listinfo/kdepim-bugs


[Bug 286043] possible data loss due to filtering (headers or body of email get lost)

2012-07-06 Thread András Manţia
https://bugs.kde.org/show_bug.cgi?id=286043

--- Comment #23 from András Manţia aman...@kde.org ---
Git commit 8846d44b217108351c35f8afd883f72ee88388ec by Andras Mantia.
Committed on 06/07/2012 at 11:12.
Pushed by amantia into branch 'KDE/4.8'.

Backport part of the filter fix: this is the actual fix, the rest were
optimizations and safety checks, but it is difficult to backport.
An unwanted side-effect might be that more data is downloaded than before,
based on the type of filters used.

FIXED-IN: 4.8.5
Related: bug 287752, bug 292283, bug 288109, bug 295484, bug 302337, bug
295000, bug 295684, bug 293768, bug 275233, bug 293918, bug 284310, bug 286364,
bug 283682

M  +0-1mailfilteragent/mailfilteragent.cpp

http://commits.kde.org/kdepim/8846d44b217108351c35f8afd883f72ee88388ec

-- 
You are receiving this mail because:
You are the assignee for the bug.
___
Kdepim-bugs mailing list
Kdepim-bugs@kde.org
https://mail.kde.org/mailman/listinfo/kdepim-bugs


[Bug 286043] possible data loss due to filtering (headers or body of email get lost)

2012-07-05 Thread András Manţia
https://bugs.kde.org/show_bug.cgi?id=286043

András Manţia aman...@kde.org changed:

   What|Removed |Added

   Version Fixed In||4.9
  Latest Commit|http://commits.kde.org/kdep |http://commits.kde.org/kdep
   |im/d64d61b470c56b92294f6ade |im/e3a03f1d704838a9ced4ff41
   |e6d74305a217628d|358785392774ae69

--- Comment #22 from András Manţia aman...@kde.org ---
Git commit e3a03f1d704838a9ced4ff41358785392774ae69 by Andras Mantia.
Committed on 04/07/2012 at 17:35.
Pushed by amantia into branch 'KDE/4.9'.

(Backport filter fix from master)

A biggish refactoring of the filter functionality:

1) Do not take the items from the cache only, as they might be incomplete
(especially in online imap case, but not only).
This should fix the body loss bug on spam filtering.(Bug 287752 and similar
ones + countless of reports on user list)
Might fix 293768.

2) Download only what is really needed for the filter and add safety checks
that
the mail is not modified if the requested part is missing. So far the
distinction
was only betwee the body and rest. This should speed up filtering.
Also related to 287752, but should fix also 292283, 288109.

3) Rename qDebug-kDebug + fix some includes

4) The code should also fix the duplicate mails appearing after filtering (some
of the duplicates
with empty content), eg. 275233

All bug reporters: in case you still see the bug, reopen the corresponding one.
For the reports that were CC'd, but not closed, please try to reproduce and
tell
the result.

So far the bug is fixed on master, but might be backported later to 4.9.
Related: bug 287752, bug 292283, bug 288109, bug 295484, bug 302337, bug
295000, bug 295684, bug 293768, bug 275233, bug 293918, bug 284310, bug 286364,
bug 283682
(cherry picked from commit d64d61b470c56b92294f6adee6d74305a217628d)

FIXED-IN: 4.9

M  +7-11   kmail/kmcommands.cpp
M  +10   -7kmail/kmcommands.h
M  +1-1kmail/kmmainwidget.cpp
M  +1-5mailcommon/filter/filteraction.cpp
M  +6-5mailcommon/filter/filteraction.h
M  +6-0mailcommon/filter/filteractionaddheader.cpp
M  +2-0mailcommon/filter/filteractionaddheader.h
M  +2-2mailcommon/filter/filteractionaddtag.cpp
M  +1-1mailcommon/filter/filteractionaddtag.h
M  +9-3mailcommon/filter/filteractionaddtoaddressbook.cpp
M  +2-0mailcommon/filter/filteractionaddtoaddressbook.h
M  +7-0mailcommon/filter/filteractionbeep.cpp
M  +1-0mailcommon/filter/filteractionbeep.h
M  +18   -1mailcommon/filter/filteractioncopy.cpp
M  +7-0mailcommon/filter/filteractioncopy.h
M  +6-0mailcommon/filter/filteractiondelete.cpp
M  +1-0mailcommon/filter/filteractiondelete.h
M  +5-0mailcommon/filter/filteractionexec.cpp
M  +1-0mailcommon/filter/filteractionexec.h
M  +5-0mailcommon/filter/filteractionforward.cpp
M  +1-0mailcommon/filter/filteractionforward.h
M  +6-0mailcommon/filter/filteractionmove.cpp
M  +2-0mailcommon/filter/filteractionmove.h
M  +6-0mailcommon/filter/filteractionpipethrough.cpp
M  +1-0mailcommon/filter/filteractionpipethrough.h
M  +6-0mailcommon/filter/filteractionplaysound.cpp
M  +2-0mailcommon/filter/filteractionplaysound.h
M  +5-0mailcommon/filter/filteractionredirect.cpp
M  +1-0mailcommon/filter/filteractionredirect.h
M  +6-1mailcommon/filter/filteractionremoveheader.cpp
M  +1-0mailcommon/filter/filteractionremoveheader.h
M  +6-0mailcommon/filter/filteractionreplyto.cpp
M  +1-0mailcommon/filter/filteractionreplyto.h
M  +6-0mailcommon/filter/filteractionrewriteheader.cpp
M  +1-0mailcommon/filter/filteractionrewriteheader.h
M  +6-0mailcommon/filter/filteractionsendfakedisposition.cpp
M  +1-0mailcommon/filter/filteractionsendfakedisposition.h
M  +8-2mailcommon/filter/filteractionsendreceipt.cpp
M  +1-0mailcommon/filter/filteractionsendreceipt.h
M  +6-0mailcommon/filter/filteractionsetidentity.cpp
M  +1-0mailcommon/filter/filteractionsetidentity.h
M  +6-0mailcommon/filter/filteractionsetstatus.cpp
M  +1-0mailcommon/filter/filteractionsetstatus.h
M  +6-0mailcommon/filter/filteractionsettransport.cpp
M  +1-0mailcommon/filter/filteractionsettransport.h
M  +5-0mailcommon/filter/filteractionstatus.cpp
M  +2-0mailcommon/filter/filteractionstatus.h
M  +5-2mailcommon/filter/filteractionunsetstatus.cpp
M  +2-1mailcommon/filter/filteractionunsetstatus.h
M  +4-4mailcommon/filter/filterimporter/filterimporterevolution.cpp
M  +1-1mailcommon/filter/filterimporter/filterimporterprocmail.cpp
M  +1-1mailcommon/filter/filterimporter/filterimportersylpheed.cpp
M  +2-2 

[Bug 286043] possible data loss due to filtering (headers or body of email get lost)

2012-07-04 Thread András Manţia
https://bugs.kde.org/show_bug.cgi?id=286043

András Manţia aman...@kde.org changed:

   What|Removed |Added

 Status|NEW |RESOLVED
 Resolution|--- |FIXED
  Latest Commit||http://commits.kde.org/kdep
   ||im/d64d61b470c56b92294f6ade
   ||e6d74305a217628d

--- Comment #21 from András Manţia aman...@kde.org ---
Git commit d64d61b470c56b92294f6adee6d74305a217628d by Andras Mantia.
Committed on 04/07/2012 at 17:35.
Pushed by amantia into branch 'master'.

A biggish refactoring of the filter functionality:

1) Do not take the items from the cache only, as they might be incomplete
(especially in online imap case, but not only).
This should fix the body loss bug on spam filtering.(Bug 287752 and similar
ones + countless of reports on user list)
Might fix 293768.

2) Download only what is really needed for the filter and add safety checks
that
the mail is not modified if the requested part is missing. So far the
distinction
was only betwee the body and rest. This should speed up filtering.
Also related to 287752, but should fix also 292283, 288109.

3) Rename qDebug-kDebug + fix some includes

4) The code should also fix the duplicate mails appearing after filtering (some
of the duplicates
with empty content), eg. 275233

All bug reporters: in case you still see the bug, reopen the corresponding one.
For the reports that were CC'd, but not closed, please try to reproduce and
tell
the result.

So far the bug is fixed on master, but might be backported later to 4.9.
Related: bug 287752, bug 292283, bug 288109, bug 295484, bug 302337, bug
295000, bug 295684, bug 293768, bug 275233, bug 293918, bug 284310, bug 286364,
bug 283682

M  +7-11   kmail/kmcommands.cpp
M  +10   -7kmail/kmcommands.h
M  +1-1kmail/kmmainwidget.cpp
M  +1-5mailcommon/filter/filteraction.cpp
M  +6-5mailcommon/filter/filteraction.h
M  +6-0mailcommon/filter/filteractionaddheader.cpp
M  +2-0mailcommon/filter/filteractionaddheader.h
M  +2-2mailcommon/filter/filteractionaddtag.cpp
M  +1-1mailcommon/filter/filteractionaddtag.h
M  +9-3mailcommon/filter/filteractionaddtoaddressbook.cpp
M  +2-0mailcommon/filter/filteractionaddtoaddressbook.h
M  +7-0mailcommon/filter/filteractionbeep.cpp
M  +1-0mailcommon/filter/filteractionbeep.h
M  +18   -1mailcommon/filter/filteractioncopy.cpp
M  +7-0mailcommon/filter/filteractioncopy.h
M  +6-0mailcommon/filter/filteractiondelete.cpp
M  +1-0mailcommon/filter/filteractiondelete.h
M  +5-0mailcommon/filter/filteractionexec.cpp
M  +1-0mailcommon/filter/filteractionexec.h
M  +5-0mailcommon/filter/filteractionforward.cpp
M  +1-0mailcommon/filter/filteractionforward.h
M  +6-0mailcommon/filter/filteractionmove.cpp
M  +2-0mailcommon/filter/filteractionmove.h
M  +6-0mailcommon/filter/filteractionpipethrough.cpp
M  +1-0mailcommon/filter/filteractionpipethrough.h
M  +6-0mailcommon/filter/filteractionplaysound.cpp
M  +2-0mailcommon/filter/filteractionplaysound.h
M  +5-0mailcommon/filter/filteractionredirect.cpp
M  +1-0mailcommon/filter/filteractionredirect.h
M  +6-1mailcommon/filter/filteractionremoveheader.cpp
M  +1-0mailcommon/filter/filteractionremoveheader.h
M  +6-0mailcommon/filter/filteractionreplyto.cpp
M  +1-0mailcommon/filter/filteractionreplyto.h
M  +6-0mailcommon/filter/filteractionrewriteheader.cpp
M  +1-0mailcommon/filter/filteractionrewriteheader.h
M  +6-0mailcommon/filter/filteractionsendfakedisposition.cpp
M  +1-0mailcommon/filter/filteractionsendfakedisposition.h
M  +8-2mailcommon/filter/filteractionsendreceipt.cpp
M  +1-0mailcommon/filter/filteractionsendreceipt.h
M  +6-0mailcommon/filter/filteractionsetidentity.cpp
M  +1-0mailcommon/filter/filteractionsetidentity.h
M  +6-0mailcommon/filter/filteractionsetstatus.cpp
M  +1-0mailcommon/filter/filteractionsetstatus.h
M  +6-0mailcommon/filter/filteractionsettransport.cpp
M  +1-0mailcommon/filter/filteractionsettransport.h
M  +5-0mailcommon/filter/filteractionstatus.cpp
M  +2-0mailcommon/filter/filteractionstatus.h
M  +5-2mailcommon/filter/filteractionunsetstatus.cpp
M  +2-1mailcommon/filter/filteractionunsetstatus.h
M  +4-4mailcommon/filter/filterimporter/filterimporterevolution.cpp
M  +1-1mailcommon/filter/filterimporter/filterimporterprocmail.cpp
M  +1-1mailcommon/filter/filterimporter/filterimportersylpheed.cpp
M  +2-2mailcommon/filter/filtermanager.cpp
M  +2-8

[Bug 286043] possible data loss due to filtering (headers or body of email get lost)

2012-04-13 Thread Jörg Schaible
https://bugs.kde.org/show_bug.cgi?id=286043

--- Comment #18 from Jörg Schaible joerg.schai...@gmx.de ---
One last comment: If I take a copy (with DD) in KMail itself, the copied email
has definitely no body anymore.

-- 
You are receiving this mail because:
You are the assignee for the bug.
___
Kdepim-bugs mailing list
Kdepim-bugs@kde.org
https://mail.kde.org/mailman/listinfo/kdepim-bugs


[Bug 286043] possible data loss due to filtering (headers or body of email get lost)

2012-04-13 Thread András Manţia
https://bugs.kde.org/show_bug.cgi?id=286043

--- Comment #19 from András Manţia aman...@kde.org ---
Is the copy within the same account? What kind of accounts are involved
(source/destination)?

-- 
You are receiving this mail because:
You are the assignee for the bug.
___
Kdepim-bugs mailing list
Kdepim-bugs@kde.org
https://mail.kde.org/mailman/listinfo/kdepim-bugs


[Bug 286043] possible data loss due to filtering (headers or body of email get lost)

2012-04-13 Thread Jörg Schaible
https://bugs.kde.org/show_bug.cgi?id=286043

--- Comment #20 from Jörg Schaible joerg.schai...@gmx.de ---
The same IMAP account (on an intranet server running Courier), server-side
subscription, offline-mode activated. I have also direct access on the mail
server's file system, Courier saves in maildir format.

-- 
You are receiving this mail because:
You are the assignee for the bug.
___
Kdepim-bugs mailing list
Kdepim-bugs@kde.org
https://mail.kde.org/mailman/listinfo/kdepim-bugs


[Bug 286043] possible data loss due to filtering (headers or body of email get lost)

2012-04-10 Thread Jörg Schaible
https://bugs.kde.org/show_bug.cgi?id=286043

--- Comment #17 from Jörg Schaible joerg.schai...@gmx.de ---
I've updated meanwhile from KMail 4.7.4 to KMail 4.8.1, but I have still those
emails whose body is not shown. However, this happens only for some
(multi-part) mails that I have received in the first 3 months of this year. It
does not happen to new mails. Additionally if I copy such a mail from the
.maildir on my server to the server's inbox directory, KMail can suddenly
display the body. So it seems that somehow the local cache got corrupt. What
can be done to invalidate the cache?

-- 
You are receiving this mail because:
You are the assignee for the bug.
___
Kdepim-bugs mailing list
Kdepim-bugs@kde.org
https://mail.kde.org/mailman/listinfo/kdepim-bugs


[Bug 286043] possible data loss due to filtering (headers or body of email get lost)

2012-03-19 Thread Milian Wolff
https://bugs.kde.org/show_bug.cgi?id=286043

--- Comment #16 from Milian Wolff m...@milianw.de ---
I've disabled most of my filters because of this bug and hence didn't see it
for some time. I'll try to re-enable the filters and see whether I can still
reproduce it.

Note thought that this was not a 100% reproducible issue, only some mails where
affected. Anyhow, I'll let you know once I know more.

-- 
You are receiving this mail because:
You are the assignee for the bug.
___
Kdepim-bugs mailing list
Kdepim-bugs@kde.org
https://mail.kde.org/mailman/listinfo/kdepim-bugs


[Bug 286043] possible data loss due to filtering (headers or body of email get lost)

2012-03-17 Thread András Manţia
https://bugs.kde.org/show_bug.cgi?id=286043

--- Comment #15 from András Manţia aman...@kde.org ---
Milian, did you see this bug recently? It is very unclear for me what goes on,
and some of the comments seems to be unrelated (well, they might looks similar,
but they only confirm the result, not the possible cause).
All reporters seeing it: try to reproduce the bug, as right now I can't see
anything like this. Also me clear about what filter runs for the messages that
get lost (use the filter log from KMail), what kind of mailbox types you use
(for inbox and for the destination, e.g imap/maildir/mixedmaildir/mbox - in
case of mixedmaildir if it is a maildir or mbox) and if the mail is *really*
gone from your hard driver (or from the IMAP server in case of IMAP). 
The best would be to have a reproducible way for the bug.

-- 
You are receiving this mail because:
You are the assignee for the bug.
___
Kdepim-bugs mailing list
Kdepim-bugs@kde.org
https://mail.kde.org/mailman/listinfo/kdepim-bugs


[Bug 286043] possible data loss due to filtering (headers or body of email get lost)

2012-03-11 Thread Martin
https://bugs.kde.org/show_bug.cgi?id=286043

Martin littlec...@gmx.net changed:

   What|Removed |Added

 CC||littlec...@gmx.net

-- 
You are receiving this mail because:
You are the assignee for the bug.
___
Kdepim-bugs mailing list
Kdepim-bugs@kde.org
https://mail.kde.org/mailman/listinfo/kdepim-bugs


[Bug 286043] possible data loss due to filtering (headers or body of email get lost)

2012-03-08 Thread auxsvr
https://bugs.kde.org/show_bug.cgi?id=286043

aux...@yahoo.com changed:

   What|Removed |Added

 CC||aux...@yahoo.com

-- 
You are receiving this mail because:
You are the assignee for the bug.
___
Kdepim-bugs mailing list
Kdepim-bugs@kde.org
https://mail.kde.org/mailman/listinfo/kdepim-bugs


[Bug 286043] possible data loss due to filtering (headers or body of email get lost)

2012-03-08 Thread Kevin Krammer
https://bugs.kde.org/show_bug.cgi?id=286043

Kevin Krammer kevin.kram...@gmx.at changed:

   What|Removed |Added

 CC||kevin.kram...@gmx.at

--- Comment #11 from Kevin Krammer kevin.kram...@gmx.at ---
(In reply to comment #9)

 Is there some confidence that the job doesn't finish before the step 2b is
 executed? I _guess_ this is multi-threaded application, and from the
 information that the job isn't explicitly started I _think_ it is done by
 the session (asynchronously). So it might finish before the signal/slot is
 connected, so the slot isn't called.

This is a single threaded application.
The job is started through delayed invocation so all connects have been
executed before that happens

-- 
You are receiving this mail because:
You are the assignee for the bug.
___
Kdepim-bugs mailing list
Kdepim-bugs@kde.org
https://mail.kde.org/mailman/listinfo/kdepim-bugs


[Bug 286043] possible data loss due to filtering (headers or body of email get lost)

2012-03-08 Thread jos poortvliet
https://bugs.kde.org/show_bug.cgi?id=286043

jos poortvliet jospoortvl...@gmail.com changed:

   What|Removed |Added

 CC||jospoortvl...@gmail.com

--- Comment #12 from jos poortvliet jospoortvl...@gmail.com ---
FWIW I also have a LARGE bunch of completely empty mails in my inbox. Yet if
you click them you see the content... No idea if it is related but it's quite
annoying ;-)
http://susepaste.org/62206930

-- 
You are receiving this mail because:
You are the assignee for the bug.
___
Kdepim-bugs mailing list
Kdepim-bugs@kde.org
https://mail.kde.org/mailman/listinfo/kdepim-bugs


[Bug 286043] possible data loss due to filtering (headers or body of email get lost)

2012-03-08 Thread jos poortvliet
https://bugs.kde.org/show_bug.cgi?id=286043

--- Comment #13 from jos poortvliet jospoortvl...@gmail.com ---
BTW it could be related to https://bugs.kde.org/show_bug.cgi?id=295484

-- 
You are receiving this mail because:
You are the assignee for the bug.
___
Kdepim-bugs mailing list
Kdepim-bugs@kde.org
https://mail.kde.org/mailman/listinfo/kdepim-bugs


[Bug 286043] possible data loss due to filtering (headers or body of email get lost)

2012-03-08 Thread Jörg Schaible
https://bugs.kde.org/show_bug.cgi?id=286043

Jörg Schaible joerg.schai...@gmx.de changed:

   What|Removed |Added

 CC||joerg.schai...@gmx.de

--- Comment #14 from Jörg Schaible joerg.schai...@gmx.de ---
I have the same problem with KMail 4.7.4 and an IMAP account. No filter
configured.
The behavior is different to Bug 295484, because the emails are not touched on
the server and can be shown by other email clients. It happens almost only to
multipart mails, but not to all. I have mails that look structurally almost
equal, but one is shown properly and the other one not at all.

-- 
You are receiving this mail because:
You are the assignee for the bug.
___
Kdepim-bugs mailing list
Kdepim-bugs@kde.org
https://mail.kde.org/mailman/listinfo/kdepim-bugs


[Bug 286043] possible data loss due to filtering (headers or body of email get lost)

2012-02-10 Thread S . Burmeister
https://bugs.kde.org/show_bug.cgi?id=286043


S. Burmeister sven.burmeis...@gmx.net changed:

   What|Removed |Added

 CC||sven.burmeis...@gmx.net




--- Comment #10 from S. Burmeister sven burmeister gmx net  2012-02-10 
16:51:01 ---
bug 293768 could be related.

-- 
Configure bugmail: https://bugs.kde.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.
___
Kdepim-bugs mailing list
Kdepim-bugs@kde.org
https://mail.kde.org/mailman/listinfo/kdepim-bugs


[Bug 286043] possible data loss due to filtering (headers or body of email get lost)

2012-01-15 Thread Oldřich Jedlička
https://bugs.kde.org/show_bug.cgi?id=286043


Oldřich Jedlička oldium@seznam.cz changed:

   What|Removed |Added

 CC||oldium@seznam.cz




--- Comment #7 from Oldřich Jedlička oldium pro seznam cz  2012-01-15 
21:45:55 ---
Same problem here, I'm trying to figure out how to use KMail2 with my mail.
This issue is a show stopper for me as I cannot get to any of my incoming mail.

akonadi-server-1.6.2, kdepim-runtime 4.7.97, using mixedmail resource over the
old KMail dir.

-- 
Configure bugmail: https://bugs.kde.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.
___
Kdepim-bugs mailing list
Kdepim-bugs@kde.org
https://mail.kde.org/mailman/listinfo/kdepim-bugs


[Bug 286043] possible data loss due to filtering (headers or body of email get lost)

2012-01-15 Thread Oldřich Jedlička
https://bugs.kde.org/show_bug.cgi?id=286043





--- Comment #8 from Oldřich Jedlička oldium pro seznam cz  2012-01-15 
21:52:40 ---
I mean that I have the mentioned no items found problem currently.

-- 
Configure bugmail: https://bugs.kde.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.
___
Kdepim-bugs mailing list
Kdepim-bugs@kde.org
https://mail.kde.org/mailman/listinfo/kdepim-bugs


[Bug 286043] possible data loss due to filtering (headers or body of email get lost)

2012-01-15 Thread Oldřich Jedlička
https://bugs.kde.org/show_bug.cgi?id=286043





--- Comment #9 from Oldřich Jedlička oldium pro seznam cz  2012-01-15 
22:32:44 ---
There is a code that smells to me - I don't know what is Session or KJob, so
this might not be prefect analysis:

1. kdepim-runtime/resources/shared/filestore/itemmovejob.cpp in constructor of
ItemMoveJob calls session-addJob(this).

2. kdepim-runtime/resources/mixedmaildir/mixedmaildirresource.cpp, method
itemMoved:

2a) it calls mStore-moveItem, which creates ItemMoveJob, which adds the job
instance to session in the constructor.

2b) it connects to the job's slots.

Is there some confidence that the job doesn't finish before the step 2b is
executed? I _guess_ this is multi-threaded application, and from the
information that the job isn't explicitly started I _think_ it is done by the
session (asynchronously). So it might finish before the signal/slot is
connected, so the slot isn't called.

Is there any KMail/Akonadi developer to verify this finding? Thanks.

-- 
Configure bugmail: https://bugs.kde.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.
___
Kdepim-bugs mailing list
Kdepim-bugs@kde.org
https://mail.kde.org/mailman/listinfo/kdepim-bugs


[Bug 286043] possible data loss due to filtering (headers or body of email get lost)

2012-01-06 Thread Hussam Al-Tayeb
https://bugs.kde.org/show_bug.cgi?id=286043


Hussam Al-Tayeb hus...@visp.net.lb changed:

   What|Removed |Added

 CC||hus...@visp.net.lb




-- 
Configure bugmail: https://bugs.kde.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.
___
Kdepim-bugs mailing list
Kdepim-bugs@kde.org
https://mail.kde.org/mailman/listinfo/kdepim-bugs


[Bug 286043] possible data loss due to filtering (headers or body of email get lost)

2012-01-06 Thread Christophe Giboudeaux
https://bugs.kde.org/show_bug.cgi?id=286043


Christophe Giboudeaux cgiboude...@gmx.com changed:

   What|Removed |Added

Version|1.0.0   |4.8




-- 
Configure bugmail: https://bugs.kde.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.
___
Kdepim-bugs mailing list
Kdepim-bugs@kde.org
https://mail.kde.org/mailman/listinfo/kdepim-bugs


[Bug 286043] possible data loss due to filtering (headers or body of email get lost)

2011-12-10 Thread András Manţia
https://bugs.kde.org/show_bug.cgi?id=286043


András Manţia aman...@kde.org changed:

   What|Removed |Added

 CC||aman...@kde.org
  Component|filtering   |Mail Filter Agent
Version|Git (master)|1.0.0
Product|kmail2  |Akonadi




-- 
Configure bugmail: https://bugs.kde.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.
___
Kdepim-bugs mailing list
Kdepim-bugs@kde.org
https://mail.kde.org/mailman/listinfo/kdepim-bugs


[Bug 286043] possible data loss due to filtering (headers or body of email get lost)

2011-11-10 Thread Milian Wolff
https://bugs.kde.org/show_bug.cgi?id=286043





--- Comment #5 from Milian Wolff mail milianw de  2011-11-10 15:55:41 ---
starting akonadi from the cli shows some interesting debug output before I see
a no items found error message:

QFSFileEngine::open: No file name specified
posting retrieval request for item 57572  there are  1  queues and  0  items in
mine 
request for item 57572 still pending - waiting 
processing retrieval request for item 57572  parts: (RFC822)  of resource:
akonadi_imap_resource_2 
akonadi_imap_resource_2(23147)/libakonadi Akonadi::ResourceBase::itemRetrieved:
Item does not provide part RFC822 
continuing 
request for item 57572 succeeded 
akonadi_mailfilter_agent(23150): Error while moving items.  103 Unknown error.
(No items found)  to destinationCollection.id() : 95 
akonadi_nepomuk_feeder(23153) ItemQueue::jobResult:
http://www.semanticdesktop.org/ontologies/2007/08/15/nao#prefLabel has a max
cardinality of 1. Provided 5 values - kde-i18n-doc-boun...@kde.org,
kde-i18n-doc-boun...@kde.org, kde-i18n-doc-boun...@kde.org,
kde-i18n-doc-boun...@kde.org, kde-i18n-doc-boun...@kde.org 
QFSFileEngine::open: No file name specified
QFSFileEngine::open: No file name specified
posting retrieval request for item 57575  there are  1  queues and  0  items in
mine 
request for item 57575 still pending - waiting 
processing retrieval request for item 57575  parts: (RFC822)  of resource:
akonadi_imap_resource_2 
akonadi_imap_resource_2(23147)/libakonadi Akonadi::ResourceBase::itemRetrieved:
Item does not provide part RFC822 
continuing 
request for item 57575 succeeded 
akonadi_mailfilter_agent(23150): Error while moving items.  103 Unknown error.
(No items found)  to destinationCollection.id() : 95

-- 
Configure bugmail: https://bugs.kde.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.
___
Kdepim-bugs mailing list
Kdepim-bugs@kde.org
https://mail.kde.org/mailman/listinfo/kdepim-bugs


[Bug 286043] possible data loss due to filtering (headers or body of email get lost)

2011-11-10 Thread Christophe Giboudeaux
https://bugs.kde.org/show_bug.cgi?id=286043


Christophe Giboudeaux cgiboude...@gmx.com changed:

   What|Removed |Added

   Severity|normal  |critical




--- Comment #6 from Christophe Giboudeaux cgiboudeaux gmx com  2011-11-10 
17:17:54 ---
raising severity.

-- 
Configure bugmail: https://bugs.kde.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.
___
Kdepim-bugs mailing list
Kdepim-bugs@kde.org
https://mail.kde.org/mailman/listinfo/kdepim-bugs


[Bug 286043] possible data loss due to filtering (headers or body of email get lost)

2011-11-08 Thread Milian Wolff
https://bugs.kde.org/show_bug.cgi?id=286043


Milian Wolff m...@milianw.de changed:

   What|Removed |Added

   Priority|NOR |VHI
Summary|fix creation of empty/dead  |possible data loss due to
   |messages on filtering   |filtering (headers or body
   ||of email get lost)




--- Comment #3 from Milian Wolff mail milianw de  2011-11-08 11:06:36 ---
increasing priority as I encountered data loss

-- 
Configure bugmail: https://bugs.kde.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.
___
Kdepim-bugs mailing list
Kdepim-bugs@kde.org
https://mail.kde.org/mailman/listinfo/kdepim-bugs


[Bug 286043] possible data loss due to filtering (headers or body of email get lost)

2011-11-08 Thread Milian Wolff
https://bugs.kde.org/show_bug.cgi?id=286043





--- Comment #4 from Milian Wolff mail milianw de  2011-11-08 11:09:47 ---
regarding the no items found error message: the filter log viewer showed this
in such a case:

--
--
--
--


so probably it does not show any errors there :-/

-- 
Configure bugmail: https://bugs.kde.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.
___
Kdepim-bugs mailing list
Kdepim-bugs@kde.org
https://mail.kde.org/mailman/listinfo/kdepim-bugs