description
I am trying to use the Imap interface and have somne very simple code.
After authentication, I select the mailbox, and then do a
Dim query = client.Messages
For Each q In query
Debug.WriteLine("")
Next
This fails, with the following message
{"startIndex cannot be larger than length of string.
Parameter name: startIndex"}
but client.messages.Select(Function(c)(c.Envelope)) works
What's up?