mirror of
https://gitlab.com/ric_harvey/MailHog.git
synced 2024-11-24 14:54:03 +00:00
44 lines
777 B
Go
44 lines
777 B
Go
|
package smtp
|
||
|
|
||
|
import (
|
||
|
"io"
|
||
|
"log"
|
||
|
"net"
|
||
|
|
||
|
"github.com/mailhog/MailHog-Server/config"
|
||
|
)
|
||
|
|
||
|
func Listen(cfg *config.Config, exitCh chan int) *net.TCPListener {
|
||
|
log.Printf("[SMTP] Binding to address: %s\n", cfg.SMTPBindAddr)
|
||
|
ln, err := net.Listen("tcp", cfg.SMTPBindAddr)
|
||
|
if err != nil {
|
||
|
log.Fatalf("[SMTP] Error listening on socket: %s\n", err)
|
||
|
}
|
||
|
defer ln.Close()
|
||
|
|
||
|
for {
|
||
|
conn, err := ln.Accept()
|
||
|
if err != nil {
|
||
|
log.Printf("[SMTP] Error accepting connection: %s\n", err)
|
||
|
continue
|
||
|
}
|
||
|
|
||
|
if cfg.Monkey != nil {
|
||
|
ok := cfg.Monkey.Accept(conn)
|
||
|
if !ok {
|
||
|
conn.Close()
|
||
|
continue
|
||
|
}
|
||
|
}
|
||
|
|
||
|
go Accept(
|
||
|
conn.(*net.TCPConn).RemoteAddr().String(),
|
||
|
io.ReadWriteCloser(conn),
|
||
|
cfg.Storage,
|
||
|
cfg.MessageChan,
|
||
|
cfg.Hostname,
|
||
|
cfg.Monkey,
|
||
|
)
|
||
|
}
|
||
|
}
|