maddy/module/module.go
fox.cpp 530c077beb Address feedback from inital review & fix few problems
All configuration directives now use underscores instead of dashes for
consistency with Caddy conventions.

Disallow defining multiple module instances with implicit name.

Remove global module.WaitGroup and add as field where it is necessary
(endpoint modules).

buf.Reset() and use rewind Reader in SMTP pipeline.

Rename several entities in code (NewModule => FuncNewModule, CfgTreeNode
=> Node, etc).

Also fix several warnings from linters.
2019-03-30 17:34:19 +02:00

42 lines
1.6 KiB
Go

// Package module contians interfaces implemented by maddy modules.
//
// They are moved to separate package to prevent circular dependencies.
//
// Each interface required by maddy for operation is provided by some object
// called "module". This includes authentication, storage backends, DKIM,
// email filters, etc. Each module may serve multiple functions. I.e. it can
// be IMAP storage backend, SMTP upstream and authentication provider at the
// same moment.
//
// Each module gets its own unique name (sqlmail for go-sqlmail, proxy for
// proxy module, local for local delivery perhaps, etc). Each module instance
// also gets its own (unique too) name which is used to refer to it in
// configuration.
package module
import (
"github.com/emersion/maddy/config"
)
// Module is the interface implemented by all maddy module instances.
//
// It defines basic methods used to identify instances.
//
// Additionally, module can implement io.Closer if it needs to perform clean-up
// on shutdown. If module starts long-lived goroutines - they should be stopped
// *before* Close method returns to ensure graceful shutdown.
type Module interface {
// Name method reports module name.
//
// It is used to reference module in the configuration and in logs.
Name() string
// InstanceName method reports unique name of this module instance.
InstanceName() string
// Module version. Reported in logs.
Version() string
}
// FuncNewModule is function that creates new instance of module with specified name.
type FuncNewModule func(name string, cfg config.Node) (Module, error)