mirror of
https://github.com/foxcpp/maddy.git
synced 2025-04-03 21:27:35 +03:00
Drop most of the implicit defaults in favor of explicit configuration (#43)
* Drop most of the implicit defaults in favor of explicit configuration We no longer follow caddy's "zero-configuration" approach. Mail is much more complex than HTTP and we want to be explicit about things, always. * Remove commented out directives from maddy.conf
This commit is contained in:
parent
d10fbd0a9e
commit
7db67acad8
9 changed files with 78 additions and 278 deletions
22
config.go
22
config.go
|
@ -100,28 +100,6 @@ func deliverDirective(m *config.Map, node *config.Node) (interface{}, error) {
|
|||
return modObj, nil
|
||||
}
|
||||
|
||||
func defaultAuthProvider() (interface{}, error) {
|
||||
res, err := authProvider("default_auth")
|
||||
if err != nil {
|
||||
res, err = authProvider("default")
|
||||
if err != nil {
|
||||
return nil, errors.New("missing default auth. provider, must set custom")
|
||||
}
|
||||
}
|
||||
return res, nil
|
||||
}
|
||||
|
||||
func defaultStorage() (interface{}, error) {
|
||||
res, err := storageBackend("default_storage")
|
||||
if err != nil {
|
||||
res, err = storageBackend("default")
|
||||
if err != nil {
|
||||
return nil, errors.New("missing default storage backend, must set custom")
|
||||
}
|
||||
}
|
||||
return res, nil
|
||||
}
|
||||
|
||||
func logOutput(m *config.Map, node *config.Node) (interface{}, error) {
|
||||
if len(node.Args) == 0 {
|
||||
return nil, m.MatchErr("expected at least 1 argument")
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue