diff --git a/README.md b/README.md index 4ebe7b7..aa338ed 100644 --- a/README.md +++ b/README.md @@ -44,6 +44,11 @@ module_name instance_name { you need to refer to the module from different place in configuration (e.g. configure SMTP to deliver mail to certain specific storage) +You can omit `instance_name`. If there is only one module config. block - it +will get name the same as `module_name`. If there are multiple config blocks +for one module - they will get names `module_name`, `module_name1`, +`module_name2` and so on. + #### Defaults Maddy provides reasonable defaults so you can start using it without spending diff --git a/maddy.go b/maddy.go index b2e3c16..0fdefb8 100644 --- a/maddy.go +++ b/maddy.go @@ -7,6 +7,7 @@ import ( "log" "os" "os/signal" + "strconv" "strings" "syscall" @@ -17,12 +18,14 @@ import ( func Start(cfg []config.CfgTreeNode) error { var instances []module.Module for _, block := range cfg { + var instName string if len(block.Args) == 0 { - return fmt.Errorf("wanted at least 1 argument in module instance definition") + instName = implicitInstanceName(block.Name) + } else { + instName = block.Args[0] } modName := block.Name - instName := block.Args[0] factory := module.GetMod(modName) if factory == nil { @@ -123,3 +126,13 @@ func deliveryTarget(args []string) (module.DeliveryTarget, error) { } return target, nil } + +func implicitInstanceName(modName string) string { + if mod := module.GetInstance(modName); mod == nil { + return modName + } + i := 1 + for ; module.GetInstance(modName+strconv.Itoa(i)) != nil; i++ { + } + return modName + strconv.Itoa(i) +}