flashmob / go-guerrilla

Mini SMTP server written in golang
MIT License
2.79k stars 366 forks source link

ineffectual assignment #154

Closed tegk closed 5 years ago

tegk commented 5 years ago

guerrilla.go:104:2 Returned error of g.makeServers() is not handled as g.backend().Start() reassignets it.

err := g.makeServers()
// start backend for processing email
err = g.backend().Start()
if err != nil {
    return g, err
}

This could relate to a potential scope bug at guerrilla.go:132:30 that I am investigating.