mirror of
https://github.com/directorz/mailfull-go.git
synced 2025-12-20 19:17:02 +00:00
Compare commits
11 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
3cf4815565 | ||
|
|
52e5d32c01 | ||
|
|
b1d13b49f5 | ||
|
|
46cf349015 | ||
|
|
9be507565d | ||
|
|
58b4e49fe8 | ||
|
|
cb6e9ce2c5 | ||
|
|
db554a1da1 | ||
|
|
708e132ccc | ||
|
|
3a1d4a588c | ||
|
|
50d429ad78 |
6
Gomfile
6
Gomfile
@@ -1,6 +0,0 @@
|
|||||||
gom 'github.com/BurntSushi/toml'
|
|
||||||
gom 'github.com/armon/go-radix'
|
|
||||||
gom 'github.com/bgentry/speakeasy'
|
|
||||||
gom 'github.com/jsimonetti/pwscheme'
|
|
||||||
gom 'github.com/mattn/go-isatty'
|
|
||||||
gom 'github.com/mitchellh/cli'
|
|
||||||
6
Makefile
6
Makefile
@@ -10,19 +10,19 @@ VERSION=$(patsubst "%",%,$(lastword $(shell grep 'const Version' version.go)))
|
|||||||
default: build
|
default: build
|
||||||
|
|
||||||
installdeps:
|
installdeps:
|
||||||
gom install
|
glide install -v
|
||||||
|
|
||||||
build:
|
build:
|
||||||
go build -v -ldflags "-X main.gittag=`git rev-parse --short HEAD`" -o build/mailfull_$(GOOS)_$(GOARCH)/mailfull cmd/mailfull/mailfull.go
|
go build -v -ldflags "-X main.gittag=`git rev-parse --short HEAD`" -o build/mailfull_$(GOOS)_$(GOARCH)/mailfull cmd/mailfull/mailfull.go
|
||||||
|
|
||||||
build-linux-amd64:
|
build-linux-amd64:
|
||||||
docker run --rm -v $(PWD):/go/src/github.com/directorz/mailfull-go -w /go/src/github.com/directorz/mailfull-go \
|
docker run --rm -v $(PWD):/go/src/github.com/directorz/mailfull-go -w /go/src/github.com/directorz/mailfull-go \
|
||||||
-e GOOS=linux -e GOARCH=amd64 golang:1.7 \
|
-e GOOS=linux -e GOARCH=amd64 golang:1.7.4 \
|
||||||
go build -v -ldflags "-X main.gittag=`git rev-parse --short HEAD`" -o "build/mailfull_linux_amd64/mailfull" cmd/mailfull/mailfull.go
|
go build -v -ldflags "-X main.gittag=`git rev-parse --short HEAD`" -o "build/mailfull_linux_amd64/mailfull" cmd/mailfull/mailfull.go
|
||||||
|
|
||||||
build-linux-386:
|
build-linux-386:
|
||||||
docker run --rm -v $(PWD):/go/src/github.com/directorz/mailfull-go -w /go/src/github.com/directorz/mailfull-go \
|
docker run --rm -v $(PWD):/go/src/github.com/directorz/mailfull-go -w /go/src/github.com/directorz/mailfull-go \
|
||||||
-e GOOS=linux -e GOARCH=386 golang:1.7 \
|
-e GOOS=linux -e GOARCH=386 golang:1.7.4 \
|
||||||
go build -v -ldflags "-X main.gittag=`git rev-parse --short HEAD`" -o "build/mailfull_linux_386/mailfull" cmd/mailfull/mailfull.go
|
go build -v -ldflags "-X main.gittag=`git rev-parse --short HEAD`" -o "build/mailfull_linux_386/mailfull" cmd/mailfull/mailfull.go
|
||||||
|
|
||||||
release: release-linux-amd64 release-linux-386
|
release: release-linux-amd64 release-linux-386
|
||||||
|
|||||||
@@ -20,7 +20,7 @@ func (c *AliasDomainAddCommand) Synopsis() string {
|
|||||||
func (c *AliasDomainAddCommand) Help() string {
|
func (c *AliasDomainAddCommand) Help() string {
|
||||||
txt := fmt.Sprintf(`
|
txt := fmt.Sprintf(`
|
||||||
Usage:
|
Usage:
|
||||||
%s %s domain target
|
%s %s [-n] domain target
|
||||||
|
|
||||||
Description:
|
Description:
|
||||||
%s
|
%s
|
||||||
@@ -30,6 +30,10 @@ Required Args:
|
|||||||
The domain name that you want to create.
|
The domain name that you want to create.
|
||||||
target
|
target
|
||||||
The target domain name.
|
The target domain name.
|
||||||
|
|
||||||
|
Optional Args:
|
||||||
|
-n
|
||||||
|
Don't update databases.
|
||||||
`,
|
`,
|
||||||
c.CmdName, c.SubCmdName,
|
c.CmdName, c.SubCmdName,
|
||||||
c.Synopsis())
|
c.Synopsis())
|
||||||
@@ -39,6 +43,12 @@ Required Args:
|
|||||||
|
|
||||||
// Run runs the command and returns the exit status.
|
// Run runs the command and returns the exit status.
|
||||||
func (c *AliasDomainAddCommand) Run(args []string) int {
|
func (c *AliasDomainAddCommand) Run(args []string) int {
|
||||||
|
noCommit, err := noCommitFlag(&args)
|
||||||
|
if err != nil {
|
||||||
|
fmt.Fprintf(c.UI.ErrorWriter, "%v\n", c.Help())
|
||||||
|
return 1
|
||||||
|
}
|
||||||
|
|
||||||
if len(args) != 2 {
|
if len(args) != 2 {
|
||||||
fmt.Fprintf(c.UI.ErrorWriter, "%v\n", c.Help())
|
fmt.Fprintf(c.UI.ErrorWriter, "%v\n", c.Help())
|
||||||
return 1
|
return 1
|
||||||
@@ -64,6 +74,10 @@ func (c *AliasDomainAddCommand) Run(args []string) int {
|
|||||||
return 1
|
return 1
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if noCommit {
|
||||||
|
return 0
|
||||||
|
}
|
||||||
|
|
||||||
mailData, err := repo.MailData()
|
mailData, err := repo.MailData()
|
||||||
if err != nil {
|
if err != nil {
|
||||||
fmt.Fprintf(c.UI.ErrorWriter, "[ERR] %v\n", err)
|
fmt.Fprintf(c.UI.ErrorWriter, "[ERR] %v\n", err)
|
||||||
|
|||||||
@@ -20,7 +20,7 @@ func (c *AliasDomainDelCommand) Synopsis() string {
|
|||||||
func (c *AliasDomainDelCommand) Help() string {
|
func (c *AliasDomainDelCommand) Help() string {
|
||||||
txt := fmt.Sprintf(`
|
txt := fmt.Sprintf(`
|
||||||
Usage:
|
Usage:
|
||||||
%s %s domain
|
%s %s [-n] domain
|
||||||
|
|
||||||
Description:
|
Description:
|
||||||
%s
|
%s
|
||||||
@@ -28,6 +28,10 @@ Description:
|
|||||||
Required Args:
|
Required Args:
|
||||||
domain
|
domain
|
||||||
The domain name that you want to delete.
|
The domain name that you want to delete.
|
||||||
|
|
||||||
|
Optional Args:
|
||||||
|
-n
|
||||||
|
Don't update databases.
|
||||||
`,
|
`,
|
||||||
c.CmdName, c.SubCmdName,
|
c.CmdName, c.SubCmdName,
|
||||||
c.Synopsis())
|
c.Synopsis())
|
||||||
@@ -37,6 +41,12 @@ Required Args:
|
|||||||
|
|
||||||
// Run runs the command and returns the exit status.
|
// Run runs the command and returns the exit status.
|
||||||
func (c *AliasDomainDelCommand) Run(args []string) int {
|
func (c *AliasDomainDelCommand) Run(args []string) int {
|
||||||
|
noCommit, err := noCommitFlag(&args)
|
||||||
|
if err != nil {
|
||||||
|
fmt.Fprintf(c.UI.ErrorWriter, "%v\n", c.Help())
|
||||||
|
return 1
|
||||||
|
}
|
||||||
|
|
||||||
if len(args) != 1 {
|
if len(args) != 1 {
|
||||||
fmt.Fprintf(c.UI.ErrorWriter, "%v\n", c.Help())
|
fmt.Fprintf(c.UI.ErrorWriter, "%v\n", c.Help())
|
||||||
return 1
|
return 1
|
||||||
@@ -55,6 +65,10 @@ func (c *AliasDomainDelCommand) Run(args []string) int {
|
|||||||
return 1
|
return 1
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if noCommit {
|
||||||
|
return 0
|
||||||
|
}
|
||||||
|
|
||||||
mailData, err := repo.MailData()
|
mailData, err := repo.MailData()
|
||||||
if err != nil {
|
if err != nil {
|
||||||
fmt.Fprintf(c.UI.ErrorWriter, "[ERR] %v\n", err)
|
fmt.Fprintf(c.UI.ErrorWriter, "[ERR] %v\n", err)
|
||||||
|
|||||||
@@ -21,7 +21,7 @@ func (c *AliasUserAddCommand) Synopsis() string {
|
|||||||
func (c *AliasUserAddCommand) Help() string {
|
func (c *AliasUserAddCommand) Help() string {
|
||||||
txt := fmt.Sprintf(`
|
txt := fmt.Sprintf(`
|
||||||
Usage:
|
Usage:
|
||||||
%s %s address target [target...]
|
%s %s [-n] address target [target...]
|
||||||
|
|
||||||
Description:
|
Description:
|
||||||
%s
|
%s
|
||||||
@@ -31,6 +31,10 @@ Required Args:
|
|||||||
The email address that you want to create.
|
The email address that you want to create.
|
||||||
target
|
target
|
||||||
Target email addresses.
|
Target email addresses.
|
||||||
|
|
||||||
|
Optional Args:
|
||||||
|
-n
|
||||||
|
Don't update databases.
|
||||||
`,
|
`,
|
||||||
c.CmdName, c.SubCmdName,
|
c.CmdName, c.SubCmdName,
|
||||||
c.Synopsis())
|
c.Synopsis())
|
||||||
@@ -40,6 +44,12 @@ Required Args:
|
|||||||
|
|
||||||
// Run runs the command and returns the exit status.
|
// Run runs the command and returns the exit status.
|
||||||
func (c *AliasUserAddCommand) Run(args []string) int {
|
func (c *AliasUserAddCommand) Run(args []string) int {
|
||||||
|
noCommit, err := noCommitFlag(&args)
|
||||||
|
if err != nil {
|
||||||
|
fmt.Fprintf(c.UI.ErrorWriter, "%v\n", c.Help())
|
||||||
|
return 1
|
||||||
|
}
|
||||||
|
|
||||||
if len(args) < 2 {
|
if len(args) < 2 {
|
||||||
fmt.Fprintf(c.UI.ErrorWriter, "%v\n", c.Help())
|
fmt.Fprintf(c.UI.ErrorWriter, "%v\n", c.Help())
|
||||||
return 1
|
return 1
|
||||||
@@ -73,6 +83,10 @@ func (c *AliasUserAddCommand) Run(args []string) int {
|
|||||||
return 1
|
return 1
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if noCommit {
|
||||||
|
return 0
|
||||||
|
}
|
||||||
|
|
||||||
mailData, err := repo.MailData()
|
mailData, err := repo.MailData()
|
||||||
if err != nil {
|
if err != nil {
|
||||||
fmt.Fprintf(c.UI.ErrorWriter, "[ERR] %v\n", err)
|
fmt.Fprintf(c.UI.ErrorWriter, "[ERR] %v\n", err)
|
||||||
|
|||||||
@@ -21,7 +21,7 @@ func (c *AliasUserDelCommand) Synopsis() string {
|
|||||||
func (c *AliasUserDelCommand) Help() string {
|
func (c *AliasUserDelCommand) Help() string {
|
||||||
txt := fmt.Sprintf(`
|
txt := fmt.Sprintf(`
|
||||||
Usage:
|
Usage:
|
||||||
%s %s address
|
%s %s [-n] address
|
||||||
|
|
||||||
Description:
|
Description:
|
||||||
%s
|
%s
|
||||||
@@ -29,6 +29,10 @@ Description:
|
|||||||
Required Args:
|
Required Args:
|
||||||
address
|
address
|
||||||
The email address that you want to delete.
|
The email address that you want to delete.
|
||||||
|
|
||||||
|
Optional Args:
|
||||||
|
-n
|
||||||
|
Don't update databases.
|
||||||
`,
|
`,
|
||||||
c.CmdName, c.SubCmdName,
|
c.CmdName, c.SubCmdName,
|
||||||
c.Synopsis())
|
c.Synopsis())
|
||||||
@@ -38,6 +42,12 @@ Required Args:
|
|||||||
|
|
||||||
// Run runs the command and returns the exit status.
|
// Run runs the command and returns the exit status.
|
||||||
func (c *AliasUserDelCommand) Run(args []string) int {
|
func (c *AliasUserDelCommand) Run(args []string) int {
|
||||||
|
noCommit, err := noCommitFlag(&args)
|
||||||
|
if err != nil {
|
||||||
|
fmt.Fprintf(c.UI.ErrorWriter, "%v\n", c.Help())
|
||||||
|
return 1
|
||||||
|
}
|
||||||
|
|
||||||
if len(args) != 1 {
|
if len(args) != 1 {
|
||||||
fmt.Fprintf(c.UI.ErrorWriter, "%v\n", c.Help())
|
fmt.Fprintf(c.UI.ErrorWriter, "%v\n", c.Help())
|
||||||
return 1
|
return 1
|
||||||
@@ -63,6 +73,10 @@ func (c *AliasUserDelCommand) Run(args []string) int {
|
|||||||
return 1
|
return 1
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if noCommit {
|
||||||
|
return 0
|
||||||
|
}
|
||||||
|
|
||||||
mailData, err := repo.MailData()
|
mailData, err := repo.MailData()
|
||||||
if err != nil {
|
if err != nil {
|
||||||
fmt.Fprintf(c.UI.ErrorWriter, "[ERR] %v\n", err)
|
fmt.Fprintf(c.UI.ErrorWriter, "[ERR] %v\n", err)
|
||||||
|
|||||||
@@ -21,7 +21,7 @@ func (c *AliasUserModCommand) Synopsis() string {
|
|||||||
func (c *AliasUserModCommand) Help() string {
|
func (c *AliasUserModCommand) Help() string {
|
||||||
txt := fmt.Sprintf(`
|
txt := fmt.Sprintf(`
|
||||||
Usage:
|
Usage:
|
||||||
%s %s address target [target...]
|
%s %s [-n] address target [target...]
|
||||||
|
|
||||||
Description:
|
Description:
|
||||||
%s
|
%s
|
||||||
@@ -31,6 +31,10 @@ Required Args:
|
|||||||
The email address that you want to modify.
|
The email address that you want to modify.
|
||||||
target
|
target
|
||||||
Target email addresses.
|
Target email addresses.
|
||||||
|
|
||||||
|
Optional Args:
|
||||||
|
-n
|
||||||
|
Don't update databases.
|
||||||
`,
|
`,
|
||||||
c.CmdName, c.SubCmdName,
|
c.CmdName, c.SubCmdName,
|
||||||
c.Synopsis())
|
c.Synopsis())
|
||||||
@@ -40,6 +44,12 @@ Required Args:
|
|||||||
|
|
||||||
// Run runs the command and returns the exit status.
|
// Run runs the command and returns the exit status.
|
||||||
func (c *AliasUserModCommand) Run(args []string) int {
|
func (c *AliasUserModCommand) Run(args []string) int {
|
||||||
|
noCommit, err := noCommitFlag(&args)
|
||||||
|
if err != nil {
|
||||||
|
fmt.Fprintf(c.UI.ErrorWriter, "%v\n", c.Help())
|
||||||
|
return 1
|
||||||
|
}
|
||||||
|
|
||||||
if len(args) < 2 {
|
if len(args) < 2 {
|
||||||
fmt.Fprintf(c.UI.ErrorWriter, "%v\n", c.Help())
|
fmt.Fprintf(c.UI.ErrorWriter, "%v\n", c.Help())
|
||||||
return 1
|
return 1
|
||||||
@@ -82,6 +92,10 @@ func (c *AliasUserModCommand) Run(args []string) int {
|
|||||||
return 1
|
return 1
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if noCommit {
|
||||||
|
return 0
|
||||||
|
}
|
||||||
|
|
||||||
mailData, err := repo.MailData()
|
mailData, err := repo.MailData()
|
||||||
if err != nil {
|
if err != nil {
|
||||||
fmt.Fprintf(c.UI.ErrorWriter, "[ERR] %v\n", err)
|
fmt.Fprintf(c.UI.ErrorWriter, "[ERR] %v\n", err)
|
||||||
|
|||||||
@@ -20,7 +20,7 @@ func (c *CatchAllSetCommand) Synopsis() string {
|
|||||||
func (c *CatchAllSetCommand) Help() string {
|
func (c *CatchAllSetCommand) Help() string {
|
||||||
txt := fmt.Sprintf(`
|
txt := fmt.Sprintf(`
|
||||||
Usage:
|
Usage:
|
||||||
%s %s domain user
|
%s %s [-n] domain user
|
||||||
|
|
||||||
Description:
|
Description:
|
||||||
%s
|
%s
|
||||||
@@ -30,6 +30,10 @@ Required Args:
|
|||||||
The domain name.
|
The domain name.
|
||||||
user
|
user
|
||||||
The user name that you want to set as catchall user.
|
The user name that you want to set as catchall user.
|
||||||
|
|
||||||
|
Optional Args:
|
||||||
|
-n
|
||||||
|
Don't update databases.
|
||||||
`,
|
`,
|
||||||
c.CmdName, c.SubCmdName,
|
c.CmdName, c.SubCmdName,
|
||||||
c.Synopsis())
|
c.Synopsis())
|
||||||
@@ -39,6 +43,12 @@ Required Args:
|
|||||||
|
|
||||||
// Run runs the command and returns the exit status.
|
// Run runs the command and returns the exit status.
|
||||||
func (c *CatchAllSetCommand) Run(args []string) int {
|
func (c *CatchAllSetCommand) Run(args []string) int {
|
||||||
|
noCommit, err := noCommitFlag(&args)
|
||||||
|
if err != nil {
|
||||||
|
fmt.Fprintf(c.UI.ErrorWriter, "%v\n", c.Help())
|
||||||
|
return 1
|
||||||
|
}
|
||||||
|
|
||||||
if len(args) != 2 {
|
if len(args) != 2 {
|
||||||
fmt.Fprintf(c.UI.ErrorWriter, "%v\n", c.Help())
|
fmt.Fprintf(c.UI.ErrorWriter, "%v\n", c.Help())
|
||||||
return 1
|
return 1
|
||||||
@@ -64,6 +74,10 @@ func (c *CatchAllSetCommand) Run(args []string) int {
|
|||||||
return 1
|
return 1
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if noCommit {
|
||||||
|
return 0
|
||||||
|
}
|
||||||
|
|
||||||
mailData, err := repo.MailData()
|
mailData, err := repo.MailData()
|
||||||
if err != nil {
|
if err != nil {
|
||||||
fmt.Fprintf(c.UI.ErrorWriter, "[ERR] %v\n", err)
|
fmt.Fprintf(c.UI.ErrorWriter, "[ERR] %v\n", err)
|
||||||
|
|||||||
@@ -20,7 +20,7 @@ func (c *CatchAllUnsetCommand) Synopsis() string {
|
|||||||
func (c *CatchAllUnsetCommand) Help() string {
|
func (c *CatchAllUnsetCommand) Help() string {
|
||||||
txt := fmt.Sprintf(`
|
txt := fmt.Sprintf(`
|
||||||
Usage:
|
Usage:
|
||||||
%s %s domain
|
%s %s [-n] domain
|
||||||
|
|
||||||
Description:
|
Description:
|
||||||
%s
|
%s
|
||||||
@@ -28,6 +28,10 @@ Description:
|
|||||||
Required Args:
|
Required Args:
|
||||||
domain
|
domain
|
||||||
The domain name.
|
The domain name.
|
||||||
|
|
||||||
|
Optional Args:
|
||||||
|
-n
|
||||||
|
Don't update databases.
|
||||||
`,
|
`,
|
||||||
c.CmdName, c.SubCmdName,
|
c.CmdName, c.SubCmdName,
|
||||||
c.Synopsis())
|
c.Synopsis())
|
||||||
@@ -37,6 +41,12 @@ Required Args:
|
|||||||
|
|
||||||
// Run runs the command and returns the exit status.
|
// Run runs the command and returns the exit status.
|
||||||
func (c *CatchAllUnsetCommand) Run(args []string) int {
|
func (c *CatchAllUnsetCommand) Run(args []string) int {
|
||||||
|
noCommit, err := noCommitFlag(&args)
|
||||||
|
if err != nil {
|
||||||
|
fmt.Fprintf(c.UI.ErrorWriter, "%v\n", c.Help())
|
||||||
|
return 1
|
||||||
|
}
|
||||||
|
|
||||||
if len(args) != 1 {
|
if len(args) != 1 {
|
||||||
fmt.Fprintf(c.UI.ErrorWriter, "%v\n", c.Help())
|
fmt.Fprintf(c.UI.ErrorWriter, "%v\n", c.Help())
|
||||||
return 1
|
return 1
|
||||||
@@ -55,6 +65,10 @@ func (c *CatchAllUnsetCommand) Run(args []string) int {
|
|||||||
return 1
|
return 1
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if noCommit {
|
||||||
|
return 0
|
||||||
|
}
|
||||||
|
|
||||||
mailData, err := repo.MailData()
|
mailData, err := repo.MailData()
|
||||||
if err != nil {
|
if err != nil {
|
||||||
fmt.Fprintf(c.UI.ErrorWriter, "[ERR] %v\n", err)
|
fmt.Fprintf(c.UI.ErrorWriter, "[ERR] %v\n", err)
|
||||||
|
|||||||
@@ -20,7 +20,7 @@ func (c *DomainAddCommand) Synopsis() string {
|
|||||||
func (c *DomainAddCommand) Help() string {
|
func (c *DomainAddCommand) Help() string {
|
||||||
txt := fmt.Sprintf(`
|
txt := fmt.Sprintf(`
|
||||||
Usage:
|
Usage:
|
||||||
%s %s domain
|
%s %s [-n] domain
|
||||||
|
|
||||||
Description:
|
Description:
|
||||||
%s
|
%s
|
||||||
@@ -28,6 +28,10 @@ Description:
|
|||||||
Required Args:
|
Required Args:
|
||||||
domain
|
domain
|
||||||
The domain name that you want to create.
|
The domain name that you want to create.
|
||||||
|
|
||||||
|
Optional Args:
|
||||||
|
-n
|
||||||
|
Don't update databases.
|
||||||
`,
|
`,
|
||||||
c.CmdName, c.SubCmdName,
|
c.CmdName, c.SubCmdName,
|
||||||
c.Synopsis())
|
c.Synopsis())
|
||||||
@@ -37,6 +41,12 @@ Required Args:
|
|||||||
|
|
||||||
// Run runs the command and returns the exit status.
|
// Run runs the command and returns the exit status.
|
||||||
func (c *DomainAddCommand) Run(args []string) int {
|
func (c *DomainAddCommand) Run(args []string) int {
|
||||||
|
noCommit, err := noCommitFlag(&args)
|
||||||
|
if err != nil {
|
||||||
|
fmt.Fprintf(c.UI.ErrorWriter, "%v\n", c.Help())
|
||||||
|
return 1
|
||||||
|
}
|
||||||
|
|
||||||
if len(args) != 1 {
|
if len(args) != 1 {
|
||||||
fmt.Fprintf(c.UI.ErrorWriter, "%v\n", c.Help())
|
fmt.Fprintf(c.UI.ErrorWriter, "%v\n", c.Help())
|
||||||
return 1
|
return 1
|
||||||
@@ -72,6 +82,10 @@ func (c *DomainAddCommand) Run(args []string) int {
|
|||||||
return 1
|
return 1
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if noCommit {
|
||||||
|
return 0
|
||||||
|
}
|
||||||
|
|
||||||
mailData, err := repo.MailData()
|
mailData, err := repo.MailData()
|
||||||
if err != nil {
|
if err != nil {
|
||||||
fmt.Fprintf(c.UI.ErrorWriter, "[ERR] %v\n", err)
|
fmt.Fprintf(c.UI.ErrorWriter, "[ERR] %v\n", err)
|
||||||
|
|||||||
@@ -20,7 +20,7 @@ func (c *DomainDelCommand) Synopsis() string {
|
|||||||
func (c *DomainDelCommand) Help() string {
|
func (c *DomainDelCommand) Help() string {
|
||||||
txt := fmt.Sprintf(`
|
txt := fmt.Sprintf(`
|
||||||
Usage:
|
Usage:
|
||||||
%s %s domain
|
%s %s [-n] domain
|
||||||
|
|
||||||
Description:
|
Description:
|
||||||
%s
|
%s
|
||||||
@@ -28,6 +28,10 @@ Description:
|
|||||||
Required Args:
|
Required Args:
|
||||||
domain
|
domain
|
||||||
The domain name that you want to delete.
|
The domain name that you want to delete.
|
||||||
|
|
||||||
|
Optional Args:
|
||||||
|
-n
|
||||||
|
Don't update databases.
|
||||||
`,
|
`,
|
||||||
c.CmdName, c.SubCmdName,
|
c.CmdName, c.SubCmdName,
|
||||||
c.Synopsis())
|
c.Synopsis())
|
||||||
@@ -37,6 +41,12 @@ Required Args:
|
|||||||
|
|
||||||
// Run runs the command and returns the exit status.
|
// Run runs the command and returns the exit status.
|
||||||
func (c *DomainDelCommand) Run(args []string) int {
|
func (c *DomainDelCommand) Run(args []string) int {
|
||||||
|
noCommit, err := noCommitFlag(&args)
|
||||||
|
if err != nil {
|
||||||
|
fmt.Fprintf(c.UI.ErrorWriter, "%v\n", c.Help())
|
||||||
|
return 1
|
||||||
|
}
|
||||||
|
|
||||||
if len(args) != 1 {
|
if len(args) != 1 {
|
||||||
fmt.Fprintf(c.UI.ErrorWriter, "%v\n", c.Help())
|
fmt.Fprintf(c.UI.ErrorWriter, "%v\n", c.Help())
|
||||||
return 1
|
return 1
|
||||||
@@ -55,6 +65,10 @@ func (c *DomainDelCommand) Run(args []string) int {
|
|||||||
return 1
|
return 1
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if noCommit {
|
||||||
|
return 0
|
||||||
|
}
|
||||||
|
|
||||||
mailData, err := repo.MailData()
|
mailData, err := repo.MailData()
|
||||||
if err != nil {
|
if err != nil {
|
||||||
fmt.Fprintf(c.UI.ErrorWriter, "[ERR] %v\n", err)
|
fmt.Fprintf(c.UI.ErrorWriter, "[ERR] %v\n", err)
|
||||||
|
|||||||
@@ -20,7 +20,7 @@ func (c *DomainDisableCommand) Synopsis() string {
|
|||||||
func (c *DomainDisableCommand) Help() string {
|
func (c *DomainDisableCommand) Help() string {
|
||||||
txt := fmt.Sprintf(`
|
txt := fmt.Sprintf(`
|
||||||
Usage:
|
Usage:
|
||||||
%s %s domain
|
%s %s [-n] domain
|
||||||
|
|
||||||
Description:
|
Description:
|
||||||
%s
|
%s
|
||||||
@@ -28,6 +28,10 @@ Description:
|
|||||||
Required Args:
|
Required Args:
|
||||||
domain
|
domain
|
||||||
The domain name that you want to disable.
|
The domain name that you want to disable.
|
||||||
|
|
||||||
|
Optional Args:
|
||||||
|
-n
|
||||||
|
Don't update databases.
|
||||||
`,
|
`,
|
||||||
c.CmdName, c.SubCmdName,
|
c.CmdName, c.SubCmdName,
|
||||||
c.Synopsis())
|
c.Synopsis())
|
||||||
@@ -37,6 +41,12 @@ Required Args:
|
|||||||
|
|
||||||
// Run runs the command and returns the exit status.
|
// Run runs the command and returns the exit status.
|
||||||
func (c *DomainDisableCommand) Run(args []string) int {
|
func (c *DomainDisableCommand) Run(args []string) int {
|
||||||
|
noCommit, err := noCommitFlag(&args)
|
||||||
|
if err != nil {
|
||||||
|
fmt.Fprintf(c.UI.ErrorWriter, "%v\n", c.Help())
|
||||||
|
return 1
|
||||||
|
}
|
||||||
|
|
||||||
if len(args) != 1 {
|
if len(args) != 1 {
|
||||||
fmt.Fprintf(c.UI.ErrorWriter, "%v\n", c.Help())
|
fmt.Fprintf(c.UI.ErrorWriter, "%v\n", c.Help())
|
||||||
return 1
|
return 1
|
||||||
@@ -67,6 +77,10 @@ func (c *DomainDisableCommand) Run(args []string) int {
|
|||||||
return 1
|
return 1
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if noCommit {
|
||||||
|
return 0
|
||||||
|
}
|
||||||
|
|
||||||
mailData, err := repo.MailData()
|
mailData, err := repo.MailData()
|
||||||
if err != nil {
|
if err != nil {
|
||||||
fmt.Fprintf(c.UI.ErrorWriter, "[ERR] %v\n", err)
|
fmt.Fprintf(c.UI.ErrorWriter, "[ERR] %v\n", err)
|
||||||
|
|||||||
@@ -20,7 +20,7 @@ func (c *DomainEnableCommand) Synopsis() string {
|
|||||||
func (c *DomainEnableCommand) Help() string {
|
func (c *DomainEnableCommand) Help() string {
|
||||||
txt := fmt.Sprintf(`
|
txt := fmt.Sprintf(`
|
||||||
Usage:
|
Usage:
|
||||||
%s %s domain
|
%s %s [-n] domain
|
||||||
|
|
||||||
Description:
|
Description:
|
||||||
%s
|
%s
|
||||||
@@ -28,6 +28,10 @@ Description:
|
|||||||
Required Args:
|
Required Args:
|
||||||
domain
|
domain
|
||||||
The domain name that you want to enable.
|
The domain name that you want to enable.
|
||||||
|
|
||||||
|
Optional Args:
|
||||||
|
-n
|
||||||
|
Don't update databases.
|
||||||
`,
|
`,
|
||||||
c.CmdName, c.SubCmdName,
|
c.CmdName, c.SubCmdName,
|
||||||
c.Synopsis())
|
c.Synopsis())
|
||||||
@@ -37,6 +41,12 @@ Required Args:
|
|||||||
|
|
||||||
// Run runs the command and returns the exit status.
|
// Run runs the command and returns the exit status.
|
||||||
func (c *DomainEnableCommand) Run(args []string) int {
|
func (c *DomainEnableCommand) Run(args []string) int {
|
||||||
|
noCommit, err := noCommitFlag(&args)
|
||||||
|
if err != nil {
|
||||||
|
fmt.Fprintf(c.UI.ErrorWriter, "%v\n", c.Help())
|
||||||
|
return 1
|
||||||
|
}
|
||||||
|
|
||||||
if len(args) != 1 {
|
if len(args) != 1 {
|
||||||
fmt.Fprintf(c.UI.ErrorWriter, "%v\n", c.Help())
|
fmt.Fprintf(c.UI.ErrorWriter, "%v\n", c.Help())
|
||||||
return 1
|
return 1
|
||||||
@@ -67,6 +77,10 @@ func (c *DomainEnableCommand) Run(args []string) int {
|
|||||||
return 1
|
return 1
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if noCommit {
|
||||||
|
return 0
|
||||||
|
}
|
||||||
|
|
||||||
mailData, err := repo.MailData()
|
mailData, err := repo.MailData()
|
||||||
if err != nil {
|
if err != nil {
|
||||||
fmt.Fprintf(c.UI.ErrorWriter, "[ERR] %v\n", err)
|
fmt.Fprintf(c.UI.ErrorWriter, "[ERR] %v\n", err)
|
||||||
|
|||||||
@@ -1,6 +1,9 @@
|
|||||||
package command
|
package command
|
||||||
|
|
||||||
import (
|
import (
|
||||||
|
"bytes"
|
||||||
|
"flag"
|
||||||
|
|
||||||
"github.com/mitchellh/cli"
|
"github.com/mitchellh/cli"
|
||||||
)
|
)
|
||||||
|
|
||||||
@@ -11,3 +14,17 @@ type Meta struct {
|
|||||||
SubCmdName string
|
SubCmdName string
|
||||||
Version string
|
Version string
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// noCommitFlag returns true if `pargs` has "-n" flag.
|
||||||
|
// `pargs` is overwrites with non-flag arguments.
|
||||||
|
func noCommitFlag(pargs *[]string) (bool, error) {
|
||||||
|
nFlag := false
|
||||||
|
|
||||||
|
flagSet := flag.NewFlagSet("", flag.ContinueOnError)
|
||||||
|
flagSet.SetOutput(&bytes.Buffer{})
|
||||||
|
flagSet.BoolVar(&nFlag, "n", nFlag, "")
|
||||||
|
err := flagSet.Parse(*pargs)
|
||||||
|
*pargs = flagSet.Args()
|
||||||
|
|
||||||
|
return nFlag, err
|
||||||
|
}
|
||||||
|
|||||||
@@ -21,7 +21,7 @@ func (c *UserAddCommand) Synopsis() string {
|
|||||||
func (c *UserAddCommand) Help() string {
|
func (c *UserAddCommand) Help() string {
|
||||||
txt := fmt.Sprintf(`
|
txt := fmt.Sprintf(`
|
||||||
Usage:
|
Usage:
|
||||||
%s %s address
|
%s %s [-n] address
|
||||||
|
|
||||||
Description:
|
Description:
|
||||||
%s
|
%s
|
||||||
@@ -29,6 +29,10 @@ Description:
|
|||||||
Required Args:
|
Required Args:
|
||||||
address
|
address
|
||||||
The email address that you want to create.
|
The email address that you want to create.
|
||||||
|
|
||||||
|
Optional Args:
|
||||||
|
-n
|
||||||
|
Don't update databases.
|
||||||
`,
|
`,
|
||||||
c.CmdName, c.SubCmdName,
|
c.CmdName, c.SubCmdName,
|
||||||
c.Synopsis())
|
c.Synopsis())
|
||||||
@@ -38,6 +42,12 @@ Required Args:
|
|||||||
|
|
||||||
// Run runs the command and returns the exit status.
|
// Run runs the command and returns the exit status.
|
||||||
func (c *UserAddCommand) Run(args []string) int {
|
func (c *UserAddCommand) Run(args []string) int {
|
||||||
|
noCommit, err := noCommitFlag(&args)
|
||||||
|
if err != nil {
|
||||||
|
fmt.Fprintf(c.UI.ErrorWriter, "%v\n", c.Help())
|
||||||
|
return 1
|
||||||
|
}
|
||||||
|
|
||||||
if len(args) != 1 {
|
if len(args) != 1 {
|
||||||
fmt.Fprintf(c.UI.ErrorWriter, "%v\n", c.Help())
|
fmt.Fprintf(c.UI.ErrorWriter, "%v\n", c.Help())
|
||||||
return 1
|
return 1
|
||||||
@@ -70,6 +80,10 @@ func (c *UserAddCommand) Run(args []string) int {
|
|||||||
return 1
|
return 1
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if noCommit {
|
||||||
|
return 0
|
||||||
|
}
|
||||||
|
|
||||||
mailData, err := repo.MailData()
|
mailData, err := repo.MailData()
|
||||||
if err != nil {
|
if err != nil {
|
||||||
fmt.Fprintf(c.UI.ErrorWriter, "[ERR] %v\n", err)
|
fmt.Fprintf(c.UI.ErrorWriter, "[ERR] %v\n", err)
|
||||||
|
|||||||
@@ -34,7 +34,7 @@ Required Args:
|
|||||||
Optional Args:
|
Optional Args:
|
||||||
password
|
password
|
||||||
Specify the password instead of your typing.
|
Specify the password instead of your typing.
|
||||||
This option is not recommended because the password will be visible in your shell history.
|
This option is NOT recommended because the password will be visible in your shell history.
|
||||||
`,
|
`,
|
||||||
c.CmdName, c.SubCmdName,
|
c.CmdName, c.SubCmdName,
|
||||||
c.Synopsis())
|
c.Synopsis())
|
||||||
|
|||||||
@@ -21,7 +21,7 @@ func (c *UserDelCommand) Synopsis() string {
|
|||||||
func (c *UserDelCommand) Help() string {
|
func (c *UserDelCommand) Help() string {
|
||||||
txt := fmt.Sprintf(`
|
txt := fmt.Sprintf(`
|
||||||
Usage:
|
Usage:
|
||||||
%s %s address
|
%s %s [-n] address
|
||||||
|
|
||||||
Description:
|
Description:
|
||||||
%s
|
%s
|
||||||
@@ -29,6 +29,10 @@ Description:
|
|||||||
Required Args:
|
Required Args:
|
||||||
address
|
address
|
||||||
The email address that you want to delete.
|
The email address that you want to delete.
|
||||||
|
|
||||||
|
Optional Args:
|
||||||
|
-n
|
||||||
|
Don't update databases.
|
||||||
`,
|
`,
|
||||||
c.CmdName, c.SubCmdName,
|
c.CmdName, c.SubCmdName,
|
||||||
c.Synopsis())
|
c.Synopsis())
|
||||||
@@ -38,6 +42,12 @@ Required Args:
|
|||||||
|
|
||||||
// Run runs the command and returns the exit status.
|
// Run runs the command and returns the exit status.
|
||||||
func (c *UserDelCommand) Run(args []string) int {
|
func (c *UserDelCommand) Run(args []string) int {
|
||||||
|
noCommit, err := noCommitFlag(&args)
|
||||||
|
if err != nil {
|
||||||
|
fmt.Fprintf(c.UI.ErrorWriter, "%v\n", c.Help())
|
||||||
|
return 1
|
||||||
|
}
|
||||||
|
|
||||||
if len(args) != 1 {
|
if len(args) != 1 {
|
||||||
fmt.Fprintf(c.UI.ErrorWriter, "%v\n", c.Help())
|
fmt.Fprintf(c.UI.ErrorWriter, "%v\n", c.Help())
|
||||||
return 1
|
return 1
|
||||||
@@ -69,6 +79,10 @@ func (c *UserDelCommand) Run(args []string) int {
|
|||||||
return 1
|
return 1
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if noCommit {
|
||||||
|
return 0
|
||||||
|
}
|
||||||
|
|
||||||
mailData, err := repo.MailData()
|
mailData, err := repo.MailData()
|
||||||
if err != nil {
|
if err != nil {
|
||||||
fmt.Fprintf(c.UI.ErrorWriter, "[ERR] %v\n", err)
|
fmt.Fprintf(c.UI.ErrorWriter, "[ERR] %v\n", err)
|
||||||
|
|||||||
@@ -22,7 +22,7 @@ func (c *UserPasswdCommand) Synopsis() string {
|
|||||||
func (c *UserPasswdCommand) Help() string {
|
func (c *UserPasswdCommand) Help() string {
|
||||||
txt := fmt.Sprintf(`
|
txt := fmt.Sprintf(`
|
||||||
Usage:
|
Usage:
|
||||||
%s %s address [password]
|
%s %s [-n] address [password]
|
||||||
|
|
||||||
Description:
|
Description:
|
||||||
%s
|
%s
|
||||||
@@ -32,9 +32,11 @@ Required Args:
|
|||||||
The email address that you want to update the password.
|
The email address that you want to update the password.
|
||||||
|
|
||||||
Optional Args:
|
Optional Args:
|
||||||
|
-n
|
||||||
|
Don't update databases.
|
||||||
password
|
password
|
||||||
Specify the password instead of your typing.
|
Specify the password instead of your typing.
|
||||||
This option is not recommended because the password will be visible in your shell history.
|
This option is NOT recommended because the password will be visible in your shell history.
|
||||||
`,
|
`,
|
||||||
c.CmdName, c.SubCmdName,
|
c.CmdName, c.SubCmdName,
|
||||||
c.Synopsis())
|
c.Synopsis())
|
||||||
@@ -44,6 +46,12 @@ Optional Args:
|
|||||||
|
|
||||||
// Run runs the command and returns the exit status.
|
// Run runs the command and returns the exit status.
|
||||||
func (c *UserPasswdCommand) Run(args []string) int {
|
func (c *UserPasswdCommand) Run(args []string) int {
|
||||||
|
noCommit, err := noCommitFlag(&args)
|
||||||
|
if err != nil {
|
||||||
|
fmt.Fprintf(c.UI.ErrorWriter, "%v\n", c.Help())
|
||||||
|
return 1
|
||||||
|
}
|
||||||
|
|
||||||
if len(args) != 1 && len(args) != 2 {
|
if len(args) != 1 && len(args) != 2 {
|
||||||
fmt.Fprintf(c.UI.ErrorWriter, "%v\n", c.Help())
|
fmt.Fprintf(c.UI.ErrorWriter, "%v\n", c.Help())
|
||||||
return 1
|
return 1
|
||||||
@@ -115,6 +123,10 @@ func (c *UserPasswdCommand) Run(args []string) int {
|
|||||||
return 1
|
return 1
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if noCommit {
|
||||||
|
return 0
|
||||||
|
}
|
||||||
|
|
||||||
mailData, err := repo.MailData()
|
mailData, err := repo.MailData()
|
||||||
if err != nil {
|
if err != nil {
|
||||||
fmt.Fprintf(c.UI.ErrorWriter, "[ERR] %v\n", err)
|
fmt.Fprintf(c.UI.ErrorWriter, "[ERR] %v\n", err)
|
||||||
|
|||||||
22
glide.lock
generated
Normal file
22
glide.lock
generated
Normal file
@@ -0,0 +1,22 @@
|
|||||||
|
hash: 451657f03f297af9163863497cf6c2f60abfe12d88a282f5aab6deb865d91119
|
||||||
|
updated: 2016-09-29T12:05:32.00075722+09:00
|
||||||
|
imports:
|
||||||
|
- name: github.com/armon/go-radix
|
||||||
|
version: 4239b77079c7b5d1243b7b4736304ce8ddb6f0f2
|
||||||
|
- name: github.com/bgentry/speakeasy
|
||||||
|
version: a1ccbf2c40dfc8ce514b5c5c6e6d1429ea6880da
|
||||||
|
- name: github.com/BurntSushi/toml
|
||||||
|
version: 99064174e013895bbd9b025c31100bd1d9b590ca
|
||||||
|
- name: github.com/jsimonetti/pwscheme
|
||||||
|
version: 76804708ecad54773871b35dbaa44f517973e395
|
||||||
|
subpackages:
|
||||||
|
- ssha
|
||||||
|
- name: github.com/mattn/go-isatty
|
||||||
|
version: 66b8e73f3f5cda9f96b69efd03dd3d7fc4a5cdb8
|
||||||
|
- name: github.com/mitchellh/cli
|
||||||
|
version: fcf521421aa29bde1d93b6920dfce826d7932208
|
||||||
|
- name: golang.org/x/sys
|
||||||
|
version: 8f0908ab3b2457e2e15403d3697c9ef5cb4b57a9
|
||||||
|
subpackages:
|
||||||
|
- unix
|
||||||
|
testImports: []
|
||||||
7
glide.yaml
Normal file
7
glide.yaml
Normal file
@@ -0,0 +1,7 @@
|
|||||||
|
package: github.com/directorz/mailfull-go
|
||||||
|
import:
|
||||||
|
- package: github.com/BurntSushi/toml
|
||||||
|
- package: github.com/jsimonetti/pwscheme
|
||||||
|
subpackages:
|
||||||
|
- ssha
|
||||||
|
- package: github.com/mitchellh/cli
|
||||||
@@ -1,4 +1,4 @@
|
|||||||
package mailfull
|
package mailfull
|
||||||
|
|
||||||
// Version is a version number.
|
// Version is a version number.
|
||||||
const Version = "v0.0.4"
|
const Version = "v0.0.7"
|
||||||
|
|||||||
Reference in New Issue
Block a user