1
0
mirror of https://github.com/directorz/mailfull-go.git synced 2025-12-18 10:07:03 +00:00

Implement to generate configuration for postfix/dovecot #6

This commit is contained in:
teru
2016-08-14 13:03:32 +09:00
parent cd1101d096
commit 3751caa9a5
3 changed files with 211 additions and 0 deletions

View File

@@ -43,6 +43,10 @@ func main() {
meta.SubCmdName = c.Subcommand()
return &command.InitCommand{Meta: meta}, nil
},
"genconfig": func() (cli.Command, error) {
meta.SubCmdName = c.Subcommand()
return &command.GenConfigCommand{Meta: meta}, nil
},
"domains": func() (cli.Command, error) {
meta.SubCmdName = c.Subcommand()
return &command.DomainsCommand{Meta: meta}, nil