1
0
mirror of https://github.com/vlang/v.git synced 2023-08-10 21:13:21 +03:00

net.smtp: add STARTTLS and implicit SSL support (#13473)

This commit is contained in:
starryskye
2022-02-16 00:18:51 -07:00
committed by GitHub
parent d4fc8601e0
commit 6d2a88e31f
4 changed files with 114 additions and 18 deletions

View File

@ -157,6 +157,7 @@ pub fn new_test_session(_vargs string, will_compile bool) TestSession {
$if windows {
skip_files << 'examples/database/mysql.v'
skip_files << 'examples/database/orm.v'
skip_files << 'examples/smtp/mail.v' // requires OpenSSL
skip_files << 'examples/websocket/ping.v' // requires OpenSSL
skip_files << 'examples/websocket/client-server/client.v' // requires OpenSSL
skip_files << 'examples/websocket/client-server/server.v' // requires OpenSSL