Your message dated Thu, 21 Oct 2010 11:51:08 +0300
with message-id <201010211151.13482.modes...@vainius.eu>
and subject line Re: Bug#600907: Kmail does not delete all mails from POP3
server, resulting in duplicate mail
has caused the Debian Bug report #600907,
regarding Kmail does not delete all mails from POP3 server, resulting in
duplicate mail
to be marked as done.
This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.
(NB: If you are a system administrator and have no idea what this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact ow...@bugs.debian.org
immediately.)
--
600907: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=600907
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Package: kdepimlibs-kio-plugins
Version: 4:4.4.5-1
Tags: patch,fixed-upstream
Sometimes KMail doesn't delete all the messages from the POP3 server,
resulting in duplicate mails being downloaded on future checks.
This was fixed upstream, but not yet released.
More details at:
https://bugs.kde.org/show_bug.cgi?id=230072
https://bugs.kde.org/show_bug.cgi?id=234832
http://websvn.kde.org/?view=revision&revision=1156868
I've attached the patch from that revision...
If there is anything more I can do to help get this included, just say so.
Cheers,
Allwyn.
--- trunk/KDE/kdepimlibs/kioslave/pop3/pop3.cpp 2010/07/29 22:08:48 1156867
+++ trunk/KDE/kdepimlibs/kioslave/pop3/pop3.cpp 2010/07/29 22:10:36 1156868
@@ -145,7 +145,7 @@
memcpy(data, readBuffer, copyLen);
readBufferLen -= copyLen;
if (readBufferLen)
- memcpy(readBuffer, &readBuffer[copyLen], readBufferLen);
+ memmove(readBuffer, &readBuffer[copyLen], readBufferLen);
return copyLen;
}
waitForResponse(600);
@@ -164,7 +164,7 @@
data[copyLen] = '\0';
readBufferLen -= copyLen;
if (readBufferLen)
- memcpy(readBuffer, &readBuffer[copyLen], readBufferLen);
+ memmove(readBuffer, &readBuffer[copyLen], readBufferLen);
return copyLen;
}
waitForResponse(600);
signature.asc
Description: This is a digitally signed message part.
--- End Message ---
--- Begin Message ---
Version: 4:4.4.6-1
Hello,
On ketvirtadienis 21 Spalis 2010 11:35:32 Mr Allwyn Fernandes wrote:
> Package: kdepimlibs-kio-plugins
> Version: 4:4.4.5-1
> Tags: patch,fixed-upstream
>
> Sometimes KMail doesn't delete all the messages from the POP3 server,
> resulting in duplicate mails being downloaded on future checks.
>
> This was fixed upstream, but not yet released.
>
> More details at:
>
> https://bugs.kde.org/show_bug.cgi?id=230072
>
> https://bugs.kde.org/show_bug.cgi?id=234832
>
> http://websvn.kde.org/?view=revision&revision=1156868
>
> I've attached the patch from that revision...
>
> If there is anything more I can do to help get this included, just say so.
According to the date of the commit, the patch should be in 4.4.6 which
already is in sid/squeeze. Just upgrade.
--
Modestas Vainius <modes...@vainius.eu>
signature.asc
Description: This is a digitally signed message part.
--- End Message ---