maddy/internal/msgpipeline/module.go
fox.cpp 23a3097591
msgpipeline: Register pipeline as a delivery target module
Allows pipeline routing to be used in places where a regular target is
required. Also allows to share parts of pipeline configurations on the
semantical level (instead of lexical level as it goes with config
snippets), see #195.
2020-02-15 17:02:47 +03:00

51 lines
957 B
Go

package msgpipeline
import (
"github.com/foxcpp/maddy/internal/config"
"github.com/foxcpp/maddy/internal/log"
"github.com/foxcpp/maddy/internal/module"
)
type Module struct {
instName string
log log.Logger
*MsgPipeline
}
func NewModule(modName, instName string, aliases, inlineArgs []string) (module.Module, error) {
return &Module{
log: log.Logger{Name: "msgpipeline"},
instName: instName,
}, nil
}
func (m *Module) Init(cfg *config.Map) error {
var hostname string
cfg.String("hostname", true, true, "", &hostname)
cfg.Bool("debug", true, false, &m.log.Debug)
cfg.AllowUnknown()
other, err := cfg.Process()
if err != nil {
return err
}
p, err := New(cfg.Globals, other)
if err != nil {
return err
}
m.MsgPipeline = p
return nil
}
func (m *Module) Name() string {
return "msgpipeline"
}
func (m *Module) InstanceName() string {
return m.instName
}
func init() {
module.Register("msgpipeline", NewModule)
}