Displaying 3 results from an estimated 3 matches for "list_uids".
2009 Nov 19
1
problem post request with RCurl
...<PCT-
QueryActivitySummary_scids> <PCT-
QueryUids> <PCT-
QueryUids_ids> <PCT-ID-
List> <PCT-ID-List_db>pccompound</PCT-ID-
List_db> <PCT-ID-
List_uids> <PCT-ID-List_uids_E>3243128</PCT-
ID-List_uids_E> </PCT-ID-
List_uids> </PCT-ID-List>
</PCT-QueryUids_ids> </PCT-
QueryUids>...
2006 May 26
2
Leave copy on server problem.
Hello, I am using Dovecot 0.99.14-r1 with mbox format.
I have a problem with the option "Leave copy on server", the messages are
duplicated. I tried many options but I can?t find the solution. The last test was:
I modified in src/pop3/commands.c (function list_uids())
the folowing things:
"...
client_send_line(client, message == 0 ?
"%u %u.%u" : "+OK %u %u.%u",
mail->seq,
client->uidvalidity, mail->uid);
..."
by
"...
client_send_line(client, message == 0 ?
"%u %08x%08x" : "+OK %u %08x%08x",
ma...
2004 Sep 02
2
Workaround for outlook UIDL handling bug ??
...tell if it really works.
Need to wait a couple of days and see if the problem re-appears or not.
The only thing I'm 100% sure is that outlooks UIDL handling is broken.
BTW: very nice source code.
Very easy to follow, took me 5 minutes to find the correct .c and routine.
In /pop3/command.c,
list_uids() all I changed is
... mail->seq, client->uidvality, mail->uid to
mail->seq, mail->uid, client->uidvality.
(2 times)
If anyone is interested, I'll keep you informed if the problem is really
gone with this mini-patch.