diff options
| author | aamine <aamine@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2006-08-15 02:21:59 +0000 |
|---|---|---|
| committer | aamine <aamine@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2006-08-15 02:21:59 +0000 |
| commit | ea22bf504afd7f97a55b3b06b0703b7293a6fa67 (patch) | |
| tree | f6a264e323f3e6a976dd8a6c4bce393a2abd8853 /ChangeLog | |
| parent | ca394b26e81ff24de4f18a75614ff7426a1f4af0 (diff) | |
| download | ruby-ea22bf504afd7f97a55b3b06b0703b7293a6fa67.tar.gz ruby-ea22bf504afd7f97a55b3b06b0703b7293a6fa67.tar.xz ruby-ea22bf504afd7f97a55b3b06b0703b7293a6fa67.zip | |
* 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
Diffstat (limited to 'ChangeLog')
| -rw-r--r-- | ChangeLog | 45 |
1 files changed, 45 insertions, 0 deletions
@@ -1,3 +1,48 @@ +Tue Aug 15 11:21:08 2006 Minero Aoki <aamine@loveruby.net> + + * 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 <drbrain@segment7.net> * string.c (String#split): Describe grouping behavior. Patch by Jan |
