>>>>> "A" == Archit Baweja <bighead / users.sourceforge.net> writes: A> http://blade.nagaokaut.ac.jp/cgi-bin/scat.rb/ruby/ruby-core/2780 A> which says that a SSL patch for Net::POP3 was "checked in". But I can't A> seem to find any of the Net::POP3#enable_ssl and friend methods. It's in 1.9.0 uln% grep VERSION version.h #define RUBY_VERSION "1.9.0" #define RUBY_VERSION_CODE 190 #define RUBY_VERSION_MAJOR 1 #define RUBY_VERSION_MINOR 9 #define RUBY_VERSION_TEENY 0 uln% uln% grep enable_ssl lib/net/pop.rb def POP3.enable_ssl(verify = OpenSSL::SSL::VERIFY_PEER, certs = nil) def enable_ssl(verify = OpenSSL::SSL::VERIFY_PEER, certs = nil, uln% Guy Decoux