Johannes Schöpp
Johannes Schöpp
I added a PR to your repo with clang-format 3.8 JFLarvoire/the_silver_searcher#2
Nicely done. And the tests run without errors 👍 Although there are still some compiler warnings
As far as I know 0.33.0 should be the first tag to include the .ignore file function See here: https://github.com/ggreer/the_silver_searcher/compare/0.32.0...0.33.0
I'm curious. why not use SIDs to resolve the name of the Administrator Group? like so: ```powershell [System.Security.Principal.SecurityIdentifier]::new("S-1-5-32-544").Translate([System.Security.Principal.NTAccount]).Value ```
Hmmm... I'd need to test this in my side but I'm pretty sure you could do SID resolution in the DLL itself. Let me get back to you on that
> Hmmm... I'd need to test this in my side but I'm pretty sure you could do SID resolution in the DLL itself. Let me get back to you on...
Yeah. `Send-MailMessage` can't do signing either. MimeKit can do pretty much everything. I've looked for `ReplyTo` specifically and there seems to be options for that. The documentation seems very comprehensive...
Also. After looking over `System.Net.Mail.SmtpClient` it looks like signing mails is non trivial... So if you don't want to migrate to MimeKit right now I can understand if this takes...
I've found an Implementation of MailKit which handles closely to `Send-MailMessage` [PSMailKit](https://github.com/dbaileyut/PSMailKit) As of now it's not on the gallery. I've opened an issue [https://github.com/dbaileyut/PSMailKit/issues/7](https://github.com/dbaileyut/PSMailKit/issues/7) to this end.
> I've done my own implementation of MailKit in https://github.com/EvotecIT/Mailozaurr > > It doesn't yet have signing but I'm one step closer :-) It looks quite good. I'm going to...