Versions in this module Expand all Collapse all v0 v0.9.4 Apr 30, 2026 Changes in this version + func NewDummy(_ *container.C, _, instName string) (module.Module, error) + func Register(name string, factory FuncNewModule) + func RegisterDeprecated(name, newName string, factory FuncNewModule) + func RegisterEndpoint(name string, factory FuncNewEndpoint) + type Dummy struct + func (d *Dummy) AuthPlain(username, _ string) error + func (d *Dummy) Configure(_ []string, _ *config.Map) error + func (d *Dummy) InstanceName() string + func (d *Dummy) Lookup(_ context.Context, _ string) (string, bool, error) + func (d *Dummy) LookupMulti(_ context.Context, _ string) ([]string, error) + func (d *Dummy) Name() string + func (d *Dummy) StartDelivery(ctx context.Context, msgMeta *module.MsgMetadata, mailFrom string) (module.Delivery, error) + type FuncNewEndpoint func(c *container.C, modName string, addrs []string) (container.LifetimeModule, error) + func GetEndpoint(name string) FuncNewEndpoint + type FuncNewModule func(c *container.C, modName, instName string) (module.Module, error) + func Get(name string) FuncNewModule