Upgrade all dependencies

1. go-smtp is replaced by a fork that reverts StartTLS removal.
2. SASL LOGIN is no longer supported by upstream go-sasl, readded disabled by default.
3. Updated endpoint code to match new go-smtp authentication interfaces.
4. certmagic repo had some renames
5. Minimum Go version increased to 1.23 to match dependencies.
This commit is contained in:
fox.cpp 2025-01-24 21:29:48 +03:00
parent 87f3ed165a
commit 78e4600a17
No known key found for this signature in database
GPG key ID: 5B991F6215D2FCC0
20 changed files with 608 additions and 431 deletions

View file

@ -6,7 +6,7 @@ You need C toolchain, Go toolchain and Make:
On Debian-based system this should work:
```
apt-get install golang-1.19 gcc libc6-dev make
apt-get install golang-1.23 gcc libc6-dev make
```
Additionally, if you want manual pages, you should also have scdoc installed.
@ -18,10 +18,13 @@ reader (for Ubuntu 22.04 LTS it is in repositories).
maddy depends on a rather recent Go toolchain version that may not be
available in some distributions (*cough* Debian *cough*).
It should not be hard to grab a recent built toolchain from golang.org:
`go` command in Go 1.21 or newer will automatically download up-to-date
toolchain to build maddy. It is necessary to run commands below only
if you have `go` command version older than 1.21.
```
wget "https://dl.google.com/go/go1.19.9.linux-amd64.tar.gz"
tar xf "go1.19.19.linux-amd64.tar.gz"
wget "https://go.dev/dl/go1.23.5.linux-amd64.tar.gz"
tar xf "go1.23.5.linux-amd64.tar.gz"
export GOROOT="$PWD/go"
export PATH="$PWD/go/bin:$PATH"
```
@ -36,7 +39,7 @@ $ cd maddy
2. Select the appropriate version to build:
```
$ git checkout v0.7.0 # a specific release
$ git checkout v0.8.0 # a specific release
$ git checkout master # next bugfix release
$ git checkout dev # next feature release
```