Simple accept/listen loop for the SMTP server.
[mailpopbox.git] / smtp / conn.go
1 package smtp
2
3 import (
4 "io"
5 "net"
6 )
7
8 func AcceptConnection(conn net.Conn, server Server) error {
9 conn.Close()
10 return nil
11 }