Jeffrey Stedfast
Jeffrey Stedfast
@Olby2000 For that particular case, I believe you can use: ```csharp var options = ParserOptions.Default.Clone (); options.AddressParserCompliance = RfcCompliance.Loosest; var message = MimeMessage.Load (options, fileName); ``` Or at the very...
@sliekens that is definitely an illegal syntax.
FWIW, I looked into the IncompleteAddress idea a year or two ago and concluded it was going to be more difficult than I had hoped because it broke support for...
This has been on my radar for a while now but I don't know of a good way to do it that wouldn't require the user manually register the fact...
Yea, that's more or less what I've also concluded. MimeParser isn't a problem - it uses ParserOptions to instantiate the various MIME type classes. MimeVisitor is/was the biggest problem because...
I'll put this on the roadmap for 5.0 but I don't have definite plans for that yet. In the meantime, there is also a MailKitLite if that helps. Or ask...
What I would propose is that we completely get rid of MimeKitLite (mostly I hate the naming) and either: 1. Replace MimeKitLite with a MimeKit.Core assembly/package, move the classes that...
Looks like this may be the way to go: https://docs.github.com/en/pages/getting-started-with-github-pages/securing-your-github-pages-site-with-https
Currently working on doing this but it looks like it could take a week or so. Plus I need to figure out a way to do all 3 domains: mimekit.net,...
If I make mimekit.net my "master" domain that'll get a CNAME for jstedfast.github.io, then I guess what I would do is create CNAME records for mimekit.com and mimekit.org to point...