maddy/smtp.go
2016-12-23 12:59:39 +01:00

10 lines
189 B
Go

package maddy
import (
"github.com/mholt/caddy/caddyfile"
"github.com/emersion/go-smtp"
)
func newSMTPServer(tokens map[string][]caddyfile.Token) server {
return smtp.NewServer(nil)
}