Sming - Open Source framework for high efficiency native ESP8266 development

User avatar
By t_i_t_o
#31224 There is a new SDK v1.4 and the release notes it say something about SSL, does it get us closer to SMTPs with TLS? I am also interested in this.
User avatar
By lethe
#31255
t_i_t_o wrote:There is a new SDK v1.4 and the release notes it say something about SSL, does it get us closer to SMTPs with TLS? I am also interested in this.

The SDK only supports TLS sockets, however most SMTP servers use the STARTTLS protocol to upgrade an unencrypted connection to TLS. So unless your server supports TLS sockets (SMTPS) on a dedicated port (usually 465), you still need to implement STARTTLS.
User avatar
By t_i_t_o
#31672 I am generally interested in sending mails via the gmail SMTP server which supports port 465. But currently I've solved this using Raspberry Pi and stunnel in the middle. Anyway ESP directly communicating with the gmail SMTP would be much cleaner approach.