ruby / net-smtp

This library provides functionality to send internet mail via SMTP, the Simple Mail Transfer Protocol.
Other
44 stars 30 forks source link

Net::SMTP.start() and #start() accepts `tls_` prefix arguments. #17

Closed tmtm closed 3 years ago

tmtm commented 4 years ago

tls_xxxx argument is passed to OpenSSL::SSL::SSLContext#set_params as xxxx parameter.

For example, Net::SMTP#start(tls_timeout: 123) calls set_params({timeout: 123}).

tmtm commented 3 years ago

solved by #22