mirror of
https://github.com/foxcpp/maddy.git
synced 2025-04-06 14:37:37 +03:00
parent
c777be4c95
commit
e7d5418b88
8 changed files with 48 additions and 40 deletions
|
@ -2,13 +2,13 @@ package main
|
|||
|
||||
import (
|
||||
"github.com/foxcpp/maddy/internal/config"
|
||||
"github.com/foxcpp/maddy/internal/storage/sql"
|
||||
"github.com/foxcpp/maddy/internal/storage/imapsql"
|
||||
|
||||
_ "github.com/go-sql-driver/mysql"
|
||||
_ "github.com/lib/pq"
|
||||
)
|
||||
|
||||
func sqlFromCfgBlock(root, node config.Node) (*sql.Storage, error) {
|
||||
func sqlFromCfgBlock(root, node config.Node) (*imapsql.Storage, error) {
|
||||
// Global variables relevant for sql module.
|
||||
globals := config.NewMap(nil, root)
|
||||
// None now...
|
||||
|
@ -23,7 +23,7 @@ func sqlFromCfgBlock(root, node config.Node) (*sql.Storage, error) {
|
|||
instName = node.Args[0]
|
||||
}
|
||||
|
||||
mod, err := sql.New("sql", instName, nil, nil)
|
||||
mod, err := imapsql.New("sql", instName, nil, nil)
|
||||
if err != nil {
|
||||
return nil, err
|
||||
}
|
||||
|
@ -31,5 +31,5 @@ func sqlFromCfgBlock(root, node config.Node) (*sql.Storage, error) {
|
|||
return nil, err
|
||||
}
|
||||
|
||||
return mod.(*sql.Storage), nil
|
||||
return mod.(*imapsql.Storage), nil
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue