mirror of
https://github.com/foxcpp/maddy.git
synced 2025-04-04 21:47:40 +03:00
35 lines
741 B
Go
35 lines
741 B
Go
package main
|
|
|
|
import (
|
|
"github.com/foxcpp/maddy/internal/config"
|
|
"github.com/foxcpp/maddy/internal/storage/imapsql"
|
|
|
|
_ "github.com/go-sql-driver/mysql"
|
|
_ "github.com/lib/pq"
|
|
)
|
|
|
|
func sqlFromCfgBlock(root, node config.Node) (*imapsql.Storage, error) {
|
|
// Global variables relevant for sql module.
|
|
globals := config.NewMap(nil, root)
|
|
// None now...
|
|
globals.AllowUnknown()
|
|
_, err := globals.Process()
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
instName := "sql"
|
|
if len(node.Args) >= 1 {
|
|
instName = node.Args[0]
|
|
}
|
|
|
|
mod, err := imapsql.New("sql", instName, nil, nil)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
if err := mod.Init(config.NewMap(globals.Values, node)); err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
return mod.(*imapsql.Storage), nil
|
|
}
|