Refactor imapsql ExternalStore to use modules

Closes #303
This commit is contained in:
fox.cpp 2021-07-11 21:42:19 +03:00
parent 6c5c5d10c4
commit 09393aed8f
No known key found for this signature in database
GPG key ID: 5B991F6215D2FCC0
8 changed files with 255 additions and 27 deletions

View file

@ -61,6 +61,7 @@ import (
_ "github.com/foxcpp/maddy/internal/imap_filter/command"
_ "github.com/foxcpp/maddy/internal/modify"
_ "github.com/foxcpp/maddy/internal/modify/dkim"
_ "github.com/foxcpp/maddy/internal/storage/blob/fs"
_ "github.com/foxcpp/maddy/internal/storage/imapsql"
_ "github.com/foxcpp/maddy/internal/table"
_ "github.com/foxcpp/maddy/internal/target/queue"
@ -344,6 +345,8 @@ func RegisterModules(globals map[string]interface{}, nodes []config.Node) (endpo
}
module.RegisterAlias(alias, instName)
}
log.Debugf("%v:%v: register config block %v %v", block.File, block.Line, instName, modAliases)
mods = append(mods, ModInfo{Instance: inst, Cfg: block})
}