mirror of
https://github.com/mjl-/mox.git
synced 2024-12-26 16:33:47 +03:00
when logging version, also log go version and goos and goarch
This commit is contained in:
parent
6d081f38fc
commit
22f46aa174
2 changed files with 3 additions and 1 deletions
|
@ -16,6 +16,7 @@ import (
|
||||||
"os"
|
"os"
|
||||||
"os/signal"
|
"os/signal"
|
||||||
"path/filepath"
|
"path/filepath"
|
||||||
|
"runtime"
|
||||||
"syscall"
|
"syscall"
|
||||||
"time"
|
"time"
|
||||||
|
|
||||||
|
@ -144,7 +145,7 @@ during those commands instead of during "data".
|
||||||
if err := start(mtastsdbRefresher, sendDMARCReports, sendTLSReports, skipForkExec); err != nil {
|
if err := start(mtastsdbRefresher, sendDMARCReports, sendTLSReports, skipForkExec); err != nil {
|
||||||
log.Fatalx("starting mox", err)
|
log.Fatalx("starting mox", err)
|
||||||
}
|
}
|
||||||
golog.Printf("mox, version %s", moxvar.Version)
|
golog.Printf("mox, version %s, %s %s/%s", moxvar.Version, runtime.Version(), runtime.GOOS, runtime.GOARCH)
|
||||||
golog.Print("")
|
golog.Print("")
|
||||||
golog.Printf("the default user is mox@localhost, with password moxmoxmox")
|
golog.Printf("the default user is mox@localhost, with password moxmoxmox")
|
||||||
golog.Printf("the default admin password is moxadmin")
|
golog.Printf("the default admin password is moxadmin")
|
||||||
|
|
1
main.go
1
main.go
|
@ -2863,6 +2863,7 @@ func cmdVersion(c *cmd) {
|
||||||
c.Usage()
|
c.Usage()
|
||||||
}
|
}
|
||||||
fmt.Println(moxvar.Version)
|
fmt.Println(moxvar.Version)
|
||||||
|
fmt.Printf("%s %s/%s\n", runtime.Version(), runtime.GOOS, runtime.GOARCH)
|
||||||
}
|
}
|
||||||
|
|
||||||
// todo: should make it possible to run this command against a running mox. it should disconnect existing clients for accounts with a bumped uidvalidity, so they will reconnect and refetch the data.
|
// todo: should make it possible to run this command against a running mox. it should disconnect existing clients for accounts with a bumped uidvalidity, so they will reconnect and refetch the data.
|
||||||
|
|
Loading…
Reference in a new issue