mirror of
https://github.com/foxcpp/maddy.git
synced 2025-04-05 05:57:39 +03:00
Provide default SMTP pipeline
default-remote-delivery is no-op for now because we don't have message queue (https://github.com/emersion/maddy/issues/11).
This commit is contained in:
parent
e7128276db
commit
06a84609bc
3 changed files with 47 additions and 10 deletions
30
maddy.go
30
maddy.go
|
@ -63,15 +63,11 @@ func Start(cfg []config.CfgTreeNode) error {
|
|||
}
|
||||
|
||||
func authProvider(args []string) (module.AuthProvider, error) {
|
||||
var (
|
||||
authName string
|
||||
ok bool
|
||||
)
|
||||
if len(args) != 1 {
|
||||
return nil, errors.New("auth: expected 1 argument")
|
||||
}
|
||||
|
||||
authName = args[0]
|
||||
authName := args[0]
|
||||
authMod := module.GetInstance(authName)
|
||||
if authMod == nil {
|
||||
return nil, fmt.Errorf("unknown auth. provider instance: %s", authName)
|
||||
|
@ -85,15 +81,11 @@ func authProvider(args []string) (module.AuthProvider, error) {
|
|||
}
|
||||
|
||||
func storageBackend(args []string) (module.Storage, error) {
|
||||
var (
|
||||
authName string
|
||||
ok bool
|
||||
)
|
||||
if len(args) != 1 {
|
||||
return nil, errors.New("storage: expected 1 argument")
|
||||
}
|
||||
|
||||
authName = args[0]
|
||||
authName := args[0]
|
||||
authMod := module.GetInstance(authName)
|
||||
if authMod == nil {
|
||||
return nil, fmt.Errorf("unknown storage backend instance: %s", authName)
|
||||
|
@ -105,3 +97,21 @@ func storageBackend(args []string) (module.Storage, error) {
|
|||
}
|
||||
return provider, nil
|
||||
}
|
||||
|
||||
func deliveryTarget(args []string) (module.DeliveryTarget, error) {
|
||||
if len(args) != 1 {
|
||||
return nil, errors.New("delivery: expected 1 argument")
|
||||
}
|
||||
|
||||
modName := args[0]
|
||||
mod := module.GetInstance(modName)
|
||||
if mod == nil {
|
||||
return nil, fmt.Errorf("unknown storage backend instance: %s", modName)
|
||||
}
|
||||
|
||||
target, ok := mod.(module.DeliveryTarget)
|
||||
if !ok {
|
||||
return nil, fmt.Errorf("module %s doesn't implements delivery target interface", mod.Name())
|
||||
}
|
||||
return target, nil
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue