Document relation between module namespaces and interfaces

This commit is contained in:
fox.cpp 2020-07-14 22:43:51 +03:00
parent 1ee501ba99
commit 623c0d8a04
No known key found for this signature in database
GPG key ID: 5B991F6215D2FCC0
6 changed files with 16 additions and 0 deletions

View file

@ -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
} }

View file

@ -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.

View file

@ -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.
// //

View file

@ -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.

View file

@ -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.

View file

@ -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)
} }