diff options
author | Robin Jarry <robin@jarry.cc> | 2024-07-12 15:42:02 +0200 |
---|---|---|
committer | Robin Jarry <robin@jarry.cc> | 2024-07-15 22:39:12 +0200 |
commit | 017c5468de4fd515b4dc05d70e372808fd98fb88 (patch) | |
tree | 9658000f3cec1bc6029a3a43bc0ce9570d7e7750 /go.sum | |
parent | 93eeffb5daea7ed408154f013d265beb890ea62b (diff) | |
download | aerc-017c5468de4fd515b4dc05d70e372808fd98fb88.tar.gz |
smtp: fix error when setting smtp-domain with starttls
Some MTA servers require clients to specify their fully qualified
hostname in the HELO command. By default, go-smtp uses "localhost".
SMTP error 504: <localhost>: Helo command rejected: need fully
qualified hostname
In go-smtp v0.21.0, there is a regression preventing manually issuing
a HELO command after starttls authentication:
Connection failed: Hello: smtp: Hello called after other methods
The regression was fixed in go-smtp v0.21.3. Update our dependency.
Fixes: 7c789624d7da ("mod: update all dependencies")
Changelog-fixed: Error when trying to configure `smtp-domain` with
STARTTLS enabled.
Reported-by: Stefano <foxy@teapot.ovh>
Signed-off-by: Robin Jarry <robin@jarry.cc>
Reviewed-by: Tristan Partin <tristan@partin.io>
Diffstat (limited to 'go.sum')
-rw-r--r-- | go.sum | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -47,8 +47,8 @@ github.com/emersion/go-sasl v0.0.0-20191210011802-430746ea8b9b/go.mod h1:G/dpzLu github.com/emersion/go-sasl v0.0.0-20200509203442-7bfe0ed36a21/go.mod h1:iL2twTeMvZnrg54ZoPDNfJaJaqy0xIQFuBdrLsmspwQ= github.com/emersion/go-sasl v0.0.0-20231106173351-e73c9f7bad43 h1:hH4PQfOndHDlpzYfLAAfl63E8Le6F2+EL/cdhlkyRJY= github.com/emersion/go-sasl v0.0.0-20231106173351-e73c9f7bad43/go.mod h1:iL2twTeMvZnrg54ZoPDNfJaJaqy0xIQFuBdrLsmspwQ= -github.com/emersion/go-smtp v0.21.0 h1:ZDZmX9aFUuPlD1lpoT0nC/nozZuIkSCyQIyxdijjCy0= -github.com/emersion/go-smtp v0.21.0/go.mod h1:qm27SGYgoIPRot6ubfQ/GpiPy/g3PaZAVRxiO/sDUgQ= +github.com/emersion/go-smtp v0.21.3 h1:7uVwagE8iPYE48WhNsng3RRpCUpFvNl39JGNSIyGVMY= +github.com/emersion/go-smtp v0.21.3/go.mod h1:qm27SGYgoIPRot6ubfQ/GpiPy/g3PaZAVRxiO/sDUgQ= github.com/emersion/go-textwrapper v0.0.0-20160606182133-d0e65e56babe/go.mod h1:aqO8z8wPrjkscevZJFVE1wXJrLpC5LtJG7fqLOsPb2U= github.com/emersion/go-textwrapper v0.0.0-20200911093747-65d896831594 h1:IbFBtwoTQyw0fIM5xv1HF+Y+3ZijDR839WMulgxCcUY= github.com/emersion/go-textwrapper v0.0.0-20200911093747-65d896831594/go.mod h1:aqO8z8wPrjkscevZJFVE1wXJrLpC5LtJG7fqLOsPb2U= |