check/authorize_sender: Implement MAIL FROM, From header authorization for local senders

Closes #268.
This commit is contained in:
fox.cpp 2021-07-09 20:00:42 +03:00
parent 38cfb981ec
commit 7c2afde847
No known key found for this signature in database
GPG key ID: 5B991F6215D2FCC0
10 changed files with 600 additions and 31 deletions

View file

@ -18,7 +18,9 @@ along with this program. If not, see <https://www.gnu.org/licenses/>.
package module
// Tabele is the interface implemented by module that implementation string-to-string
import "context"
// Table is the interface implemented by module that implementation string-to-string
// translation.
//
// Modules implementing this interface should be registered with prefix
@ -27,6 +29,12 @@ type Table interface {
Lookup(s string) (string, bool, error)
}
// MultiTable is the interface that module can implement in addition to Table
// if it can provide multiple values as a lookup result.
type MultiTable interface {
LookupMulti(ctx context.Context, s string) ([]string, error)
}
type MutableTable interface {
Table
Keys() ([]string, error)