From ea22bf504afd7f97a55b3b06b0703b7293a6fa67 Mon Sep 17 00:00:00 2001 From: aamine Date: Tue, 15 Aug 2006 02:21:59 +0000 Subject: * lib/net/smtp.rb: support SMTP/SSL. Thanks Kazuhiro NISHIYAMA. * lib/net/smtp.rb: new method SMTP.use_ssl? * lib/net/smtp.rb: new method SMTP.enable_ssl. * lib/net/smtp.rb: new method SMTP.disable_ssl. * lib/net/smtp.rb: new method SMTP.default_ssl_port. * lib/net/smtp.rb: new method SMTP.default_tls_port. * lib/net/smtp.rb: now SMTP#enable_tls accepts a SSLContext object, instead of a verity and cert. [FEATURE CHANGE] * lib/net/smtp.rb: new method SMTP.ssl_context. * lib/net/smtp.rb: new method SMTP.default_ssl_context. * lib/net/smtp.rb: export SMTP.authenticate. * lib/net/smtp.rb: export SMTP.auth_plain. * lib/net/smtp.rb: export SMTP.auth_login. * lib/net/smtp.rb: export SMTP.auth_cram_md5. * lib/net/smtp.rb: export SMTP.starttls. * lib/net/smtp.rb: export SMTP.helo. * lib/net/smtp.rb: export SMTP.ehlo. * lib/net/smtp.rb: export SMTP.mailfrom. * lib/net/smtp.rb: export SMTP.rcptto. * lib/net/smtp.rb: export SMTP.rcptto_list. * lib/net/smtp.rb: export SMTP.data. * lib/net/smtp.rb: export SMTP.quit. git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@10726 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- ChangeLog | 45 +++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 45 insertions(+) (limited to 'ChangeLog') diff --git a/ChangeLog b/ChangeLog index 10183999d..e65b0f008 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,48 @@ +Tue Aug 15 11:21:08 2006 Minero Aoki + + * lib/net/smtp.rb: support SMTP/SSL. Thanks Kazuhiro NISHIYAMA. + + * lib/net/smtp.rb: new method SMTP.use_ssl? + + * lib/net/smtp.rb: new method SMTP.enable_ssl. + + * lib/net/smtp.rb: new method SMTP.disable_ssl. + + * lib/net/smtp.rb: new method SMTP.default_ssl_port. + + * lib/net/smtp.rb: new method SMTP.default_tls_port. + + * lib/net/smtp.rb: now SMTP#enable_tls accepts a SSLContext + object, instead of a verity and cert. [FEATURE CHANGE] + + * lib/net/smtp.rb: new method SMTP.ssl_context. + + * lib/net/smtp.rb: new method SMTP.default_ssl_context. + + * lib/net/smtp.rb: export SMTP.authenticate. + + * lib/net/smtp.rb: export SMTP.auth_plain. + + * lib/net/smtp.rb: export SMTP.auth_login. + + * lib/net/smtp.rb: export SMTP.auth_cram_md5. + + * lib/net/smtp.rb: export SMTP.starttls. + + * lib/net/smtp.rb: export SMTP.helo. + + * lib/net/smtp.rb: export SMTP.ehlo. + + * lib/net/smtp.rb: export SMTP.mailfrom. + + * lib/net/smtp.rb: export SMTP.rcptto. + + * lib/net/smtp.rb: export SMTP.rcptto_list. + + * lib/net/smtp.rb: export SMTP.data. + + * lib/net/smtp.rb: export SMTP.quit. + Sat Aug 12 22:33:06 2006 Eric Hodel * string.c (String#split): Describe grouping behavior. Patch by Jan -- cgit