Max Mazurov
Max Mazurov
Yeah, can agree, so I guess it is time to get all these extensions into go-imap. >I guess backend methods like CreateMessage need support for arbitrary opaque inputs and outputs....
>``` >response.go:125:35: unnecessary conversion (unconvert) > fields := []interface{}{RawString(tag)} >status.go:97:49: unnecessary conversion (unconvert) > if err := w.writeFields([]interface{}{RawString(tag), RawString(r.Type)}); err != nil { >``` False positives, the type is checked...
Does it infinitely attempt to send the same response? It might be worth looking into reason why it is happening. Also, there was https://github.com/foxcpp/maddy/issues/143. If you are not using the...
I did some reason and it seems like Windows's DNS API does not expose information about DNSSEC status even for Windows versions that have the security-aware client implementation.
Therefore extracting DNS configuration from registry and querying servers directly seems to be the only way to obtain security information necessary for maddy security policies.
Another option: - Matching TLSA record with DANE-TA (Usage 2) or DANE-EE (Usage 3) can replace PKIX and ServerName checks and provides the essentially same (or even stronger) protection against...
One obscure feature of RFC 5322 is that it permits multiple addresses in the From field. In that case, simple regexp-based replacement may change only one address from the list...
Blocked by emersion/go-message#75.
Maddy tries to use a localhost dns resolver instead of the nameserver specified in /etc/resolve.conf
/etc/resolv.conf is read once on server startup, might it be that /etc/resolv.conf does not exist (or is not populated correctly) when maddy starts? In that case you would need to...
Issue is no longer relevant since #374 is a thing?