mirror of
https://github.com/foxcpp/maddy.git
synced 2025-04-04 05:37:34 +03:00
Merge branch 'dev' into dev
This commit is contained in:
commit
3d4e60ac20
8 changed files with 77 additions and 19 deletions
28
internal/libdns/acmedns.go
Normal file
28
internal/libdns/acmedns.go
Normal file
|
@ -0,0 +1,28 @@
|
|||
//go:build libdns_acmedns || libdns_all
|
||||
// +build libdns_acmedns libdns_all
|
||||
|
||||
package libdns
|
||||
|
||||
import (
|
||||
"github.com/foxcpp/maddy/framework/config"
|
||||
"github.com/foxcpp/maddy/framework/module"
|
||||
"github.com/libdns/acmedns"
|
||||
)
|
||||
|
||||
func init() {
|
||||
module.Register("libdns.acmedns", func(modName, instName string, _, _ []string) (module.Module, error) {
|
||||
p := acmedns.Provider{}
|
||||
return &ProviderModule{
|
||||
RecordDeleter: &p,
|
||||
RecordAppender: &p,
|
||||
setConfig: func(c *config.Map) {
|
||||
c.String("username", false, true, "", &p.Username)
|
||||
c.String("password", false, true, "", &p.Password)
|
||||
c.String("subdomain", false, true, "", &p.Subdomain)
|
||||
c.String("server_url", false, true, "", &p.ServerURL)
|
||||
},
|
||||
instName: instName,
|
||||
modName: modName,
|
||||
}, nil
|
||||
})
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue