Displaying 2 results from an estimated 2 matches for "uidval".
Did you mean:
idval
1998 Nov 24
0
2 small authentication problems
...message ( uid should be positive, incorrect use of uid,
...), something like :
/* Get smb uid. */
p++; /* Go past ':' */
if ('-' == *p) {
DEBUG(0, "...")
continue;
}
if (!isdigit(*p)) {
DEBUG(0, "...")
continue;
}
uidval = atoi((char *) p);
/* Sanity check on uidval */
if (uidval < 0 ||uidval > MAX_UID) {
DEBUG(0, "...")
continue;
}
The second annoyance is that, when using smbclient, the USER value seems
to be set to nobody, though a USER environment variable exist.
Cont...
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.