[lnkForumImage]
TotalShareware - Download Free Software

Confronta i prezzi di migliaia di prodotti.
Asp Forum
 Home | Login | Register | Search 


 

sean_n

9/21/2007 6:07:00 PM

3 Answers

Alexey Verkhovsky

9/21/2007 6:41:00 PM

0

ara.t.howard

9/21/2007 7:59:00 PM

0


On Sep 21, 2007, at 12:10 PM, Sean Nakasone wrote:

> 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://draw...
--
we can deny everything, except that we have the possibility of being
better. simply reflect on that.
h.h. the 14th dalai lama




sean_n

9/27/2007 9:38:00 AM

0


# 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,
'from_email@domain.com',
'to_email@domain.com',
'another_to_email@domain.com'
end

# you need to substitute:
# mail.domain.com - with the mail server on your domain.
# your_account
# your_pass
# from_email@domain.com
# to_email@domain.com
# another_to_email@domain.com