Jeffrey Stedfast

Results 345 comments of Jeffrey Stedfast
trafficstars

The name and filename parameter encoding is specified in rfc2184 and rfc2231. My MIME parser library, [MimeKit](https://github.com/jstedfast/MimeKit), has a decoder for this.

You are getting an untagged response and your CheckResponseOk() method is not expecting that, it is expecting the " OK ..." response. This is likely somewhat related to issue #154...

The 'Q' encoding used in rfc2047 headers uses underscores to encode spaces for easier legibility. The Content-Transfer-Encoding: quoted-printable encoding does not do this and has other differences as well. Currently...

Since this has gone so long without suggestions, I won't feel bad about suggesting that you try [MailKit](https://github.com/jstedfast/MailKit) instead. MailKit is a far more robust IMAP implementation.

Since this has gone so long without suggestions, I won't feel bad about suggesting that you try [MailKit](https://github.com/jstedfast/MailKit) instead. All of MailKit's APIs have the ability to be cancelled via...

Since this has gone so long without suggestions, I won't feel bad about suggesting that you try [MailKit](https://github.com/jstedfast/MailKit) instead. MailKit's MIME and IMAP parsers are both far more robust (and...

The correct solution to this is to ignore the octet count and instead keep reading until you get a line that contains only a single '.'. You can see how...

You could try: ```csharp var scopes = new string[] { "email", "offline_access", "https://outlook.office.com/SMTP.Send" }; ```