mirror of
https://github.com/mjl-/mox.git
synced 2024-12-26 16:33:47 +03:00
17 lines
405 B
Go
17 lines
405 B
Go
|
package main
|
||
|
|
||
|
import (
|
||
|
"log"
|
||
|
)
|
||
|
|
||
|
// also see localserve.go, code is similar or even shared.
|
||
|
func cmdServe(c *cmd) {
|
||
|
c.help = `Start mox, serving SMTP/IMAP/HTTPS. Not implemented on windows.
|
||
|
`
|
||
|
args := c.Parse()
|
||
|
if len(args) != 0 {
|
||
|
c.Usage()
|
||
|
}
|
||
|
log.Fatalln("mox serve not implemented on windows yet due to unfamiliarity with the windows security model, other commands including localserve do work")
|
||
|
}
|