TheFox / smtpd

SMTP server (library) for receiving emails, written in pure PHP.
https://fox21.at
MIT License
121 stars 30 forks source link

STARTTLS or SSL/TLS #18

Open Lars- opened 5 years ago

Lars- commented 5 years ago

Hello,

First of all, awesome code! I think it's so cool that someone rewrites these things in PHP. Keep it going!

My question: I'm trying to connect it to a client that only supports STARTTLS or SSL/TLS. I don't think it's possible with the current package, so I decided to try nginx Mail Proxy. But that doesn't seem to work either.

Do you have any idea how I can add STARTTLS or SSL/TLS to your smtpd server?

Thanks!

~Lars

TheFox commented 5 years ago

Thank you.

No idea. I'm currently not working on this project. Maybe it's only possible by implementing further RFCs. Not sure.

Lars- commented 5 years ago

I created a workaround by using Emailrelay. It's not the best solution, but it works. Thanks anyway.