Displaying 2 results from an estimated 2 matches for "uidvality".
Did you mean:
uidvalidity
1998 Nov 24
0
2 small authentication problems
Hello,
I've had those annoyances with the new beta:
- in source/passdb/smbpass.c, you have :
/* Get smb uid. */
p++; /* Go past ':' */
if (!isdigit(*p)) {
DEBUG(0, ("getsmbfilepwent: malformed password entry (uid not
number)\n"));
continue;
}
I got stuck there by this entry :
nobody:-2:XXX...
The '-' made the test fail. I
2004 Sep 02
2
Workaround for outlook UIDL handling bug ??
...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.