mirror of
https://gitlab.com/ric_harvey/MailHog.git
synced 2024-11-23 14:24:03 +00:00
61 lines
1.3 KiB
Go
61 lines
1.3 KiB
Go
package main
|
|
|
|
import (
|
|
"flag"
|
|
"os"
|
|
|
|
"github.com/ian-kent/go-log/log"
|
|
gotcha "github.com/ian-kent/gotcha/app"
|
|
"github.com/mailhog/MailHog-Server/api"
|
|
cfgapi "github.com/mailhog/MailHog-Server/config"
|
|
"github.com/mailhog/MailHog-Server/smtp"
|
|
"github.com/mailhog/MailHog-UI/assets"
|
|
cfgui "github.com/mailhog/MailHog-UI/config"
|
|
"github.com/mailhog/MailHog-UI/web"
|
|
"github.com/mailhog/http"
|
|
)
|
|
|
|
var apiconf *cfgapi.Config
|
|
var uiconf *cfgui.Config
|
|
var exitCh chan int
|
|
|
|
func configure() {
|
|
cfgapi.RegisterFlags()
|
|
cfgui.RegisterFlags()
|
|
flag.Parse()
|
|
apiconf = cfgapi.Configure()
|
|
uiconf = cfgui.Configure()
|
|
}
|
|
|
|
func main() {
|
|
configure()
|
|
|
|
exitCh = make(chan int)
|
|
if uiconf.UIBindAddr == apiconf.APIBindAddr {
|
|
cb := func(app *gotcha.App) {
|
|
web.CreateWeb(uiconf, app)
|
|
api.CreateAPIv1(apiconf, app)
|
|
api.CreateAPIv2(apiconf, app)
|
|
}
|
|
go http.Listen(uiconf.UIBindAddr, assets.Asset, exitCh, cb)
|
|
} else {
|
|
cb1 := func(app *gotcha.App) {
|
|
api.CreateAPIv1(apiconf, app)
|
|
api.CreateAPIv2(apiconf, app)
|
|
}
|
|
cb2 := func(app *gotcha.App) {
|
|
web.CreateWeb(uiconf, app)
|
|
}
|
|
go http.Listen(apiconf.APIBindAddr, assets.Asset, exitCh, cb1)
|
|
go http.Listen(uiconf.UIBindAddr, assets.Asset, exitCh, cb2)
|
|
}
|
|
go smtp.Listen(apiconf, exitCh)
|
|
|
|
for {
|
|
select {
|
|
case <-exitCh:
|
|
log.Printf("Received exit signal")
|
|
os.Exit(0)
|
|
}
|
|
}
|
|
}
|