Matt Holt
Matt Holt
Well, I checked whether the underlying rardecode package has the dates and maybe we just weren't passing them through, but it seems that even the decoder has empty timestamps, so...
This has been fixed upstream by @nwaples -- I will upgrade the dependency here soon!
That is a really interesting phenomenon, and a clever workaround! I agree we should probably fix this. What if we roughly hash the handler's configuration and use that as a...
Sorry for my late reply. I see, so you want a way to specify a default text encoding for methods that abstract away the creation of the format and just...
This can be done with: ```go if archiveFS, ok := fsys.(archiver.ArchiveFS); ok { if z, ok := archiveFS.Format.(archiver.Zip); ok { z.TextEncoding = "gb18030" ... // then potentially re-assign: archiveFS.Format =...
Does this fix something that is broken in archiver?
Does this fix anything that is broken? I'm hesitant to upgrade dependencies these days unless there's significant improvements. We also need to avoid updating the go versions in go.mod since...
I'm not sure what you mean, really; or how ACME is relevant for dynamic DNS... can you elaborate?
With the DNS challenge, you don't need any DNS records set. And it's the only way to get a wildcard cert through LE anyway. Have you tried using the DNS...
Hmm, thanks -- I'm trying to understand when this would be useful though? If the server has a TLS client configured, then it is used, otherwise we transparently use the...