1package main
2
3import (
4 "log"
5)
6
7// also see localserve.go, code is similar or even shared.
8func cmdServe(c *cmd) {
9 c.help = `Start mox, serving SMTP/IMAP/HTTPS. Not implemented on windows.
10`
11 args := c.Parse()
12 if len(args) != 0 {
13 c.Usage()
14 }
15 log.Fatalln("mox serve not implemented on windows yet due to unfamiliarity with the windows security model, other commands including localserve do work")
16}
17