mirror of
https://github.com/foxcpp/maddy.git
synced 2025-04-07 06:57:37 +03:00
10 lines
189 B
Go
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)
|
|
}
|