ix-ai / smtp

This is a SMTP docker container for sending emails. You can also relay emails to gmail and amazon SES.
MIT License
92 stars 14 forks source link

Disable server TLS if no certificate/key provided #15

Closed llmora closed 1 year ago

llmora commented 1 year ago

Current exim version enables TLS by default for the server and generates a self-signed certificate. When a client tries to send an e-mail it will likely fail as it cannot verify the certificate. This change disables server support for TLS so clients can connect without verifying the certificate. TLS usage for connecting to remote mail servers remains enabled.

tlex commented 1 year ago

Thanks for the PR.