diff options
-rw-r--r-- | ChangeLog | 4 | ||||
-rw-r--r-- | lib/net/imap.rb | 18 |
2 files changed, 22 insertions, 0 deletions
@@ -1,3 +1,7 @@ +Sun Sep 11 23:23:02 2005 Shugo Maeda <shugo@ruby-lang.org> + + * lib/net/imap.rb (starttls): supported the STARTTLS command. + Sun Sep 11 22:18:07 2005 Masatoshi SEKI <m_seki@mva.biglobe.ne.jp> * bin/erb (ERB::Main#run): set ERB#filename so that it is used diff --git a/lib/net/imap.rb b/lib/net/imap.rb index 82d5b2973..a5c143371 100644 --- a/lib/net/imap.rb +++ b/lib/net/imap.rb @@ -322,6 +322,24 @@ module Net send_command("LOGOUT") end + # Sends a STARTTLS command to start TLS session. + def starttls(ctx = nil) + if @sock.kind_of?(OpenSSL::SSL::SSLSocket) + raise RuntimeError, "already using SSL" + end + send_command("STARTTLS") do |resp| + if resp.kind_of?(TaggedResponse) && resp.name == "OK" + if ctx + @sock = OpenSSL::SSL::SSLSocket.new(@sock, ctx) + else + @sock = OpenSSL::SSL::SSLSocket.new(@sock) + end + @sock.sync_close = true + @sock.connect + end + end + end + # Sends an AUTHENTICATE command to authenticate the client. # The +auth_type+ parameter is a string that represents # the authentication mechanism to be used. Currently Net::IMAP |