mirror of
https://github.com/foxcpp/maddy.git
synced 2025-04-06 14:37:37 +03:00
Document relation between module namespaces and interfaces
This commit is contained in:
parent
1ee501ba99
commit
623c0d8a04
6 changed files with 16 additions and 0 deletions
|
@ -11,6 +11,8 @@ var (
|
||||||
|
|
||||||
// PlainAuth is the interface implemented by modules providing authentication using
|
// PlainAuth is the interface implemented by modules providing authentication using
|
||||||
// username:password pairs.
|
// username:password pairs.
|
||||||
|
//
|
||||||
|
// Modules implementing this interface should be registered with "auth." prefix in name.
|
||||||
type PlainAuth interface {
|
type PlainAuth interface {
|
||||||
AuthPlain(username, password string) error
|
AuthPlain(username, password string) error
|
||||||
}
|
}
|
||||||
|
|
|
@ -11,6 +11,9 @@ import (
|
||||||
|
|
||||||
// Check is the module interface that is meant for read-only (with the
|
// Check is the module interface that is meant for read-only (with the
|
||||||
// exception of the message header modifications) (meta-)data checking.
|
// exception of the message header modifications) (meta-)data checking.
|
||||||
|
//
|
||||||
|
// Modules implementing this interface should be registered with "check."
|
||||||
|
// prefix in name.
|
||||||
type Check interface {
|
type Check interface {
|
||||||
// CheckStateForMsg initializes the "internal" check state required for
|
// CheckStateForMsg initializes the "internal" check state required for
|
||||||
// processing of the new message.
|
// processing of the new message.
|
||||||
|
|
|
@ -10,6 +10,9 @@ import (
|
||||||
// DeliveryTarget interface represents abstract storage for the message data
|
// DeliveryTarget interface represents abstract storage for the message data
|
||||||
// (typically persistent) or other kind of component that can be used as a
|
// (typically persistent) or other kind of component that can be used as a
|
||||||
// final destination for the message.
|
// final destination for the message.
|
||||||
|
//
|
||||||
|
// Modules implementing this interface should be registered with "target."
|
||||||
|
// prefix in name.
|
||||||
type DeliveryTarget interface {
|
type DeliveryTarget interface {
|
||||||
// Start starts the delivery of a new message.
|
// Start starts the delivery of a new message.
|
||||||
//
|
//
|
||||||
|
|
|
@ -23,6 +23,8 @@ import (
|
||||||
// RewriteRcpt is newer called before RewriteSender and RewriteBody is never called
|
// RewriteRcpt is newer called before RewriteSender and RewriteBody is never called
|
||||||
// before RewriteRcpts. This allows modificator code to save values
|
// before RewriteRcpts. This allows modificator code to save values
|
||||||
// passed to previous calls for use in later operations.
|
// passed to previous calls for use in later operations.
|
||||||
|
//
|
||||||
|
// Modules implementing this interface should be registered with "modify." prefix in name.
|
||||||
type Modifier interface {
|
type Modifier interface {
|
||||||
// ModStateForMsg initializes modifier "internal" state
|
// ModStateForMsg initializes modifier "internal" state
|
||||||
// required for processing of the message.
|
// required for processing of the message.
|
||||||
|
|
|
@ -6,6 +6,9 @@ import (
|
||||||
|
|
||||||
// Storage interface is a slightly modified go-imap's Backend interface
|
// Storage interface is a slightly modified go-imap's Backend interface
|
||||||
// (authentication is removed).
|
// (authentication is removed).
|
||||||
|
//
|
||||||
|
// Modules implementing this interface should be registered with prefix
|
||||||
|
// "storage." in name.
|
||||||
type Storage interface {
|
type Storage interface {
|
||||||
// GetOrCreateIMAPAcct returns User associated with storage account specified by
|
// GetOrCreateIMAPAcct returns User associated with storage account specified by
|
||||||
// the name.
|
// the name.
|
||||||
|
|
|
@ -2,6 +2,9 @@ package module
|
||||||
|
|
||||||
// Tabele is the interface implemented by module that implementation string-to-string
|
// Tabele is the interface implemented by module that implementation string-to-string
|
||||||
// translation.
|
// translation.
|
||||||
|
//
|
||||||
|
// Modules implementing this interface should be registered with prefix
|
||||||
|
// "table." in name.
|
||||||
type Table interface {
|
type Table interface {
|
||||||
Lookup(s string) (string, bool, error)
|
Lookup(s string) (string, bool, error)
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue