Integrate CertMagic ACME client with dns-01 challenge

Support for a subset of libdns providers is added.
Some are enabled by default (assuming they are popular ones). AWS and Google Cloud SDKs take up extra 10 MiB of executable size.

Only filesystem storage is supported as of now.

Closes #3.
This commit is contained in:
fox.cpp 2021-07-13 12:38:42 +03:00
parent bae40f875b
commit 93cf4f231a
19 changed files with 1106 additions and 2 deletions

View file

@ -30,6 +30,7 @@ import (
"runtime/debug"
"strings"
"github.com/caddyserver/certmagic"
parser "github.com/foxcpp/maddy/framework/cfgparser"
"github.com/foxcpp/maddy/framework/config"
"github.com/foxcpp/maddy/framework/config/tls"
@ -59,6 +60,7 @@ import (
_ "github.com/foxcpp/maddy/internal/endpoint/smtp"
_ "github.com/foxcpp/maddy/internal/imap_filter"
_ "github.com/foxcpp/maddy/internal/imap_filter/command"
_ "github.com/foxcpp/maddy/internal/libdns"
_ "github.com/foxcpp/maddy/internal/modify"
_ "github.com/foxcpp/maddy/internal/modify/dkim"
_ "github.com/foxcpp/maddy/internal/storage/blob/fs"
@ -68,6 +70,7 @@ import (
_ "github.com/foxcpp/maddy/internal/target/remote"
_ "github.com/foxcpp/maddy/internal/target/smtp"
_ "github.com/foxcpp/maddy/internal/tls"
_ "github.com/foxcpp/maddy/internal/tls/acme"
)
var (
@ -100,6 +103,8 @@ default runtime_dir: %s`,
// logging initialization, directives setup, configuration reading. After all that, it
// calls moduleMain to initialize and run modules.
func Run() int {
certmagic.UserAgent = "maddy/" + Version
flag.StringVar(&config.LibexecDirectory, "libexec", DefaultLibexecDirectory, "path to the libexec directory")
flag.BoolVar(&log.DefaultLogger.Debug, "debug", false, "enable debug logging early")