mhale / smtpd

An SMTP server package written in Go, in the style of the built-in HTTP server.
The Unlicense
404 stars 92 forks source link

tls support #5

Closed ginkoob closed 6 years ago

ginkoob commented 7 years ago

is there tls support planned or can you provide guidance how to implement it?

mhale commented 7 years ago

I have no plans to support TLS at the moment. Using it with SMTP is less straightforward than with HTTP and as I don't need encryption or authentication for my use case, I thought it best to keep the code as simple as possible.

If you want to implement it yourself, these links may be helpful:

mhale commented 7 years ago

I've just added TLS support. Please have a play with it and let me know how you find it.

mhale commented 6 years ago

Closing this issue as it's been three months without any response.