Jeffrey Stedfast
Jeffrey Stedfast
If you subclass MailKit's SmtpClient and override `PreferSendAsBinaryData` to return `true`, does that help at all? When you try this, you'll need to comment out: ```csharp smtp.Capabilities &= ~(SmtpCapabilities.Size |...
FWIW, it looks like the `DATA` command can be PIPELINED with the `MAIL FROM` and `RCPT TO` commands, so I'll work on modifying the code to do that tonight after...
https://www.nuget.org/packages/BouncyCastle/ is the official nuget package repository
@onovotny Just want to say thanks for your efforts, they are much appreciated by me and I'm sure many others. Probably not news to you, but thought I'd say it...
I'm not a maintainer, you'd have to ask @peterdettman
bouncycastle.netcore is not maintained by the BouncyCastle authors. I would recommend using [Portable.BouncyCastle](https://www.nuget.org/packages/Portable.BouncyCastle/) instead (another fork, but I'm pretty sure is strong named).
@onovotny now that you are targeting .NETStandard 1.x, it should be possible to re-enable the DotNetUtilities class, right? Specifically, it'd be awesome to re-expose the methods that convert back and...
Looks like I actually only need 2 methods: `GetKeyPair` and `FromX509Certificate`.
Looks like it's not possible even in netstandard1.3. I think I may just have to copy the `DotNetUtilities` class into MimeKit for use with Xamarin-specific targets if I want to...