TLS

S

Sean Nakasone

Anyone know if ruby supports TLS in SMTP? can you please provide code
snippets?
 
A

ara.t.howard

Anyone know if ruby supports TLS in SMTP? can you please provide
code snippets?

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

def quit
begin
getok('QUIT')
rescue EOFError
end
end
end




a @ http://drawohara.com/
 
S

seannakasone

# thanks, it works. here's the entire code.

msgstr = <<END_OF_MESSAGE
Subject: This is my subject.

This is a test message.
The quick
brown fox.
END_OF_MESSAGE

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


def quit
begin
getok('QUIT')
rescue EOFError
end
end
end


Net::SMTP.start('smtp.gmail.com', 587, 'mail.domain.com',
'your_account', 'your_pass', :login) do |smtp|
smtp.send_message msgstr,
'(e-mail address removed)',
'(e-mail address removed)',
'(e-mail address removed)'
end

# you need to substitute:
# mail.domain.com - with the mail server on your domain.
# your_account
# your_pass
# (e-mail address removed)
# (e-mail address removed)
# (e-mail address removed)
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

No members online now.

Forum statistics

Threads
474,432
Messages
2,571,680
Members
48,796
Latest member
Greg L.

Latest Threads

Top