Displaying 2 results from an estimated 2 matches for "deleted_bitmask".
2005 Jun 03
2
POP3 download problem
Hi All
I am experiencing a mail download problem with dovecot's pop3 protocol. We
use outlook XP 2002 mail clients and I have setup a mail system with pop
accounts on a Fedora 2 installation using dovecot.
Some of the clients download email fine but others do not download email and
also do not give any error messages. I have enabled the "verbose" options in
the
2005 Aug 24
0
thunderbird pop3 delete bug workaround
...nsigned int last_deleted;
+ int tbirdbug;
+
uoff_t *byte_counter;
uoff_t byte_counter_offset;
--- src/pop3/commands.c.orig 2005-08-24 13:24:33.000000000 +0200
+++ src/pop3/commands.c 2005-08-24 13:26:49.000000000 +0200
@@ -47,8 +47,15 @@
if (client->deleted) {
if (client->deleted_bitmask[num / CHAR_BIT] &
(1 << (num % CHAR_BIT))) {
- client_send_line(client, "-ERR Message is deleted.");
- return NULL;
+ if((client->tbirdbug<256) && (num == client->last_deleted))
+ {
+ client->tbirdbug++;
+ }
+ else
+ {...