Migrate TLS certificate loading to use modules for sources

This commit is contained in:
fox.cpp 2020-07-15 17:58:47 +03:00
parent 6c0b947464
commit cee8bbdce7
No known key found for this signature in database
GPG key ID: 5B991F6215D2FCC0
14 changed files with 387 additions and 128 deletions

View file

@ -24,6 +24,7 @@ import (
"github.com/foxcpp/go-imap-sql/children"
"github.com/foxcpp/maddy/framework/config"
modconfig "github.com/foxcpp/maddy/framework/config/module"
tls2 "github.com/foxcpp/maddy/framework/config/tls"
"github.com/foxcpp/maddy/framework/log"
"github.com/foxcpp/maddy/framework/module"
"github.com/foxcpp/maddy/internal/auth"
@ -68,7 +69,7 @@ func (endp *Endpoint) Init(cfg *config.Map) error {
return endp.saslAuth.AddProvider(m, node)
})
cfg.Custom("storage", false, true, nil, modconfig.StorageDirective, &endp.Store)
cfg.Custom("tls", true, true, nil, config.TLSDirective, &endp.tlsConfig)
cfg.Custom("tls", true, true, nil, tls2.TLSDirective, &endp.tlsConfig)
cfg.Bool("insecure_auth", false, false, &insecureAuth)
cfg.Bool("io_debug", false, false, &ioDebug)
cfg.Bool("io_errors", false, false, &ioErrors)