mirror of
https://github.com/foxcpp/maddy.git
synced 2025-04-06 06:27:38 +03:00
This should make it possible to implement OAuth and TLS client certificates authentication.
14 lines
355 B
Go
14 lines
355 B
Go
package modconfig
|
|
|
|
import (
|
|
"github.com/foxcpp/maddy/internal/config"
|
|
"github.com/foxcpp/maddy/internal/module"
|
|
)
|
|
|
|
func SASLAuthDirective(m *config.Map, node *config.Node) (interface{}, error) {
|
|
var provider module.SASLProvider
|
|
if err := ModuleFromNode(node.Args, node, m.Globals, &provider); err != nil {
|
|
return nil, err
|
|
}
|
|
return provider, nil
|
|
}
|