search for: internetmessageio

Displaying 4 results from an estimated 4 matches for "internetmessageio".

2009 Jun 15
1
NoMethodError: undefined method `password_reset_instructions' for UserNotifier: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 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...
2008 Jul 24
0
Errno::EBADF Send an Email in Rails using GMail
...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) if starttls raise ''openssl library not installed'' unless defined?(OpenSSL) ssl = Open...
2009 Apr 09
1
Mailing error in Rails 2.3.2
...omain, user, secret, authtype) raise IOError, ''SMTP session already started'' if @started #check_auth_args user, secret, authtype if user or secret check_auth_args user, 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)...
2006 Dec 07
6
Response To Form Submission Hanging
Hello, I am using Mechanize to post a form to a website. When I do this by hand in my browser the response takes about 35s to come back (it''s a long page full of tables and graphics). When I do this with Mechanize, the server starts to respond and then appears to hang. The obvious conclusion is that my code is wrong but I am reasonably sure that I haven''t altered it