mirror of
https://github.com/foxcpp/maddy.git
synced 2025-04-04 13:37:41 +03:00
1. There is only one version for maddy and imapsql-ctl utility. This prevents confusion about compatibility. 2. Modified imapsql-ctl understands maddy config format, this allows it to read needed values from it without the need for lengthy commmand line arguments. Closes #148.
25 lines
589 B
Go
25 lines
589 B
Go
package main
|
|
|
|
import (
|
|
"fmt"
|
|
"runtime/debug"
|
|
)
|
|
|
|
const Version = "unknown (built from source tree)"
|
|
|
|
func buildInfo() string {
|
|
if info, ok := debug.ReadBuildInfo(); ok {
|
|
imapsqlVer := "unknown"
|
|
for _, dep := range info.Deps {
|
|
if dep.Path == "github.com/foxcpp/go-imap-sql" {
|
|
imapsqlVer = dep.Version
|
|
}
|
|
}
|
|
|
|
if info.Main.Version == "(devel)" {
|
|
return fmt.Sprintf("%s for maddy %s", imapsqlVer, Version)
|
|
}
|
|
return fmt.Sprintf("%s for maddy %s %s", imapsqlVer, info.Main.Version, info.Main.Sum)
|
|
}
|
|
return fmt.Sprintf("unknown for maddy %s (GOPATH build)", Version)
|
|
}
|