Sha256: d1ded5ef1ed881f04cf4dd7aa2ca5fac3737d79e8c3a4702ab8cedaded4cf1ed

Contents?: true

Size: 1.74 KB

Versions: 5

Compression:

Stored size: 1.74 KB

Contents

# $Id: smtp_tls.rb 536 2008-02-18 23:07:49Z tim_pease $

# This code enables SMTPTLS authentication requireed for sending mail
# via the gmail servers. I found this code via a blog entry from James
# Britt.
#
# http://d.hatena.ne.jp/zorio/20060416
# http://www.jamesbritt.com/2007/12/18/sending-mail-through-gmail-with-ruby-s-net-smtp

require "openssl"
require "net/smtp"

Net::SMTP.class_eval do
  private
  def do_start(helodomain, user, secret, authtype)
    raise IOError, 'SMTP session already started' if @started
    check_auth_args user, secret, authtype if user or secret

    sock = timeout(@open_timeout) { TCPSocket.open(@address, @port) }
    @socket = Net::InternetMessageIO.new(sock)
    @socket.read_timeout = 60 #@read_timeout
    @socket.debug_output = STDERR #@debug_output

    check_response(critical { recv_response() })
    do_helo(helodomain)

    raise 'openssl library not installed' unless defined?(OpenSSL)
    starttls
    ssl = OpenSSL::SSL::SSLSocket.new(sock)
    ssl.sync_close = true
    ssl.connect
    @socket = Net::InternetMessageIO.new(ssl)
    @socket.read_timeout = 60 #@read_timeout
    @socket.debug_output = STDERR #@debug_output
    do_helo(helodomain)

    authenticate user, secret, authtype if user
    @started = true
  ensure
    unless @started
      # authentication failed, cancel connection.
        @socket.close if not @started and @socket and not @socket.closed?
      @socket = nil
    end
  end

  def do_helo(helodomain)
    begin
      if @esmtp
        ehlo helodomain
      else
        helo helodomain
      end
    rescue Net::ProtocolError
      if @esmtp
        @esmtp = false
        @error_occured = false
        retry
      end
      raise
    end
  end

  def starttls
    getok('STARTTLS')
  end
end

# EOF

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
bones-1.3.4 lib/bones/smtp_tls.rb
bones-2.0.0 lib/bones/smtp_tls.rb
bones-1.3.3 lib/bones/smtp_tls.rb
bones-1.3.5 lib/bones/smtp_tls.rb
bones-2.0.1 lib/bones/smtp_tls.rb