mirror of
https://github.com/foxcpp/maddy.git
synced 2025-04-06 06:27:38 +03:00
check/authorize_sender: Implement MAIL FROM, From header authorization for local senders
Closes #268.
This commit is contained in:
parent
38cfb981ec
commit
7c2afde847
10 changed files with 600 additions and 31 deletions
|
@ -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)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue