[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: Problems with nnimap 0.3.20 and CCMAIL IMAP server





>C13 FETCH 1,* (UID)
>* 1 FETCH (UID 4198)
>C13 OK Completed

the server i'm using had a similar problem -- it was only expecting *
after :, because most clients only use * in things like 1:*.  rfc2060
says the * should be interpreted as the highest number in use, so 1,*
should return message 1 and the last message.  try changing the 1,* in
the nnimap code to 1:* (or fix the server).

	-seth