Jeffrey Stedfast
Jeffrey Stedfast
I decided to send Torben a pull request with a fix for this issue since it was so obvious and trivial to fix. It turns out most of the code...
The IMAP protocol defines the search criteria as follows: http://tools.ietf.org/html/rfc3501#section-6.4.4 It sounds to me like the search string should be matched against the parsed addresses in the To header (both...
Awesome :-)
No problem, always glad to help :-)
You need to change a period to a comma: ``` csharp Client.GetMessages(uids.FetchOptions.HeadersOnly); ``` should be: ``` csharp Client.GetMessages(uids, FetchOptions.HeadersOnly); ``` That said, S22.Imap is an abandoned project. You may want...
This is actually part of the IMAP protocol definition. The SINCE search expression takes a date string parameter that cannot include the time, it is a date-only string parameter.
Just an update on this, but there exists an IMAP extension called [WITHIN](http://www.ietf.org/rfc/rfc5032.txt) that allows one to search for messages that are older or newer than a provided timespan which...
What operation was this in response to? Presumably the "+OK Dovecot ready" response is in response to SASL authentication request or appending a message? (I'm the author of [MimeKit](https://github.com/jstedfast/MimeKit) and...
I did a bit of digging into S22.Imap's SASL authentication logic and I could find no place where it would throw BadServerResponseException. It must be from some other command.
Did you ever figure out a solution to this problem? If not, would you consider using [MimeKit](https://github.com/jstedfast/MimeKit) and [MailKit](https://github.com/jstedfast/MailKit) instead? If you switch to my libraries, you won't have this...