mirror of
https://github.com/foxcpp/maddy.git
synced 2025-04-05 14:07:38 +03:00
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.
51 lines
957 B
Go
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)
|
|
}
|