Hi,
I am using the following code to get only newly received mails from the inbox.
uidList = imap.Search().Where(
Expression.UID(Range.From(configObj.LargestUID)));
uidList.Remove(configObj.LargestUID);
I am getting all the UID's in the uidList after searching, instead of new ones.
Earlier , same code working well. suddenly stopped working.
is the code depends on any email server settings? Please let me know.
I am using licenced copy of mail.dll
Thank you.