mirror of
https://github.com/foxcpp/maddy.git
synced 2025-04-05 22:17:39 +03:00
As revealed by latency tracing using runtime/trace, MTA-STS cache miss essentially doubles the connection time for outbound delivery. This is mostly because MTA-STS lookup have to estabilish a TCP+TLS connection to obtain the policy text (shame on Google for pushing that terribly misdesigned protocol, but, well, it is better than nothing so we adopt it). Additionally, there is a number of additional DNS lookups needed (e.g. TLSA record for DANE). This commit rearranges connection code so it is possible to run all "additional" queries in parallel with the connection estabilishment. However, this changes the behavior of TLS requirement checks (including MTA-STS). The connection to the candidate MX is already estabilished and STARTTLS is always attempted if it is available. Only after that the policy check is done, using the result of TLS handshake attempt (if any). If for whatever reason, the candidate MX cannot be used, the connection is then closed. This might bring additional overhead in case of configuration errors on the recipient side, but it is believed to not be a major problem since this should not happen often.
41 lines
762 B
Go
41 lines
762 B
Go
package testutils
|
|
|
|
import (
|
|
"flag"
|
|
"os"
|
|
"strings"
|
|
"testing"
|
|
"time"
|
|
|
|
"github.com/foxcpp/maddy/internal/log"
|
|
)
|
|
|
|
var (
|
|
debugLog = flag.Bool("test.debuglog", false, "(maddy) Turn on debug log messages")
|
|
directLog = flag.Bool("test.directlog", false, "(maddy) Log to stderr instead of test log")
|
|
)
|
|
|
|
func Logger(t *testing.T, name string) log.Logger {
|
|
if *directLog {
|
|
return log.Logger{
|
|
Out: log.WriterOutput(os.Stderr, true),
|
|
Name: name,
|
|
Debug: *debugLog,
|
|
}
|
|
}
|
|
|
|
return log.Logger{
|
|
Out: log.FuncOutput(func(_ time.Time, debug bool, str string) {
|
|
t.Helper()
|
|
str = strings.TrimSuffix(str, "\n")
|
|
if debug {
|
|
str = "[debug] " + str
|
|
}
|
|
t.Log(str)
|
|
}, func() error {
|
|
return nil
|
|
}),
|
|
Name: name,
|
|
Debug: *debugLog,
|
|
}
|
|
}
|