search for: getok

Displaying 9 results from an estimated 9 matches for "getok".

Did you mean: gettok
2006 Aug 28
4
SMTPSyntaxError (501 <>: missing or malformed local part)
...t this when trying to send out an email. What exactly does this error mean? ________________________________________ Net::SMTPSyntaxError (501 <>: missing or malformed local part ): /usr/lib/ruby/1.8/net/smtp.rb:680:in `check_response'' /usr/lib/ruby/1.8/net/smtp.rb:653:in `getok'' /usr/lib/ruby/1.8/net/smtp.rb:635:in `rcptto'' /usr/lib/ruby/1.8/net/smtp.rb:546:in `send0'' /usr/lib/ruby/1.8/net/smtp.rb:545:in `send0'' /usr/lib/ruby/1.8/net/smtp.rb:472:in `sendmail'' /usr/lib/ruby/gems/1.8/gems/actionmailer-1.2.5/li...
2009 Jun 15
1
NoMethodError: undefined method `password_reset_instructions' for UserNotifier:Class
...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 rescue OpenSSL::SSL::SSLError end end end Any Help would be greatly appreciated. I get the same result in console. Thanks Nicholas
2008 Jul 24
0
Errno::EBADF Send an Email in Rails using GMail
...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'') rescue return false return true end def quit begin getok(''QUIT'') rescue EOFError, OpenSSL::SSL::SSLError end end end I get the following error message: Errno::EBADF in EmailerController#sendmail Bad file descriptor - co...
2009 Apr 09
1
Mailing error in Rails 2.3.2
...@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, OpenSSL::SSL::SSLError end end end end ------------------------------------------------------ This code works if not included with my rails app and run through command prompt. If this code is i...
2006 Feb 08
2
ActionMailer EOFError (sometimes)
...tocol.rb:196:in `rbuf_fill'' /usr/local/lib/ruby/1.8/net/protocol.rb:160:in `readuntil'' /usr/local/lib/ruby/1.8/net/protocol.rb:171:in `readline'' /usr/local/lib/ruby/1.8/net/smtp.rb:664:in `recv_response'' /usr/local/lib/ruby/1.8/net/smtp.rb:651:in `getok'' /usr/local/lib/ruby/1.8/net/smtp.rb:649:in `critical'' /usr/local/lib/ruby/1.8/net/smtp.rb:649:in `getok'' /usr/local/lib/ruby/1.8/net/smtp.rb:639:in `quit'' /usr/local/lib/ruby/1.8/net/smtp.rb:426:in `do_finish'' /usr/local/lib/ruby/1.8...
2006 Jan 24
4
SMTPSyntaxError with Action Mailer
...all day. I can get it to work perfectly in development mode. But when I run it in production mode I get an error, the log spits this out Net::SMTPSyntaxError (501 Syntax: HELO hostname ): /usr/lib/ruby/1.8/net/smtp.rb:680:in `check_response'' /usr/lib/ruby/1.8/net/smtp.rb:653:in `getok'' /usr/lib/ruby/1.8/net/smtp.rb:623:in `helo'' /usr/lib/ruby/1.8/net/smtp.rb:401:in `do_start'' /usr/lib/ruby/1.8/net/smtp.rb:378:in `start'' /usr/lib/ruby/1.8/net/smtp.rb:316:in `start'' /usr/lib/ruby/gems/1.8/gems/actionmailer-1.1.5/lib/...
2006 Dec 28
1
ActionMailer/SMTP: Net::SMTPSyntaxError when message body contains only a 'dot'
...ublic.gmane.org Subject: test with a ''.'' in the message Content-Type: text/plain; charset=utf-8 . Net::SMTPSyntaxError (502 Error: command not implemented ): /usr/local/lib/ruby/1.8/net/smtp.rb:680:in `check_response'' /usr/local/lib/ruby/1.8/net/smtp.rb:653:in `getok'' /usr/local/lib/ruby/1.8/net/smtp.rb:639:in `quit'' /usr/local/lib/ruby/1.8/net/smtp.rb:426:in `do_finish'' /usr/local/lib/ruby/1.8/net/smtp.rb:381:in `start'' /usr/local/lib/ruby/1.8/net/smtp.rb:316:in `start'' /usr/local/lib/ruby/gems/1...
2007 Dec 11
1
501 Syntax: HELO hostname - Mail problem
...and they are ok. It seems it''s choking right at the begging of the connection to the smtp server, when my computer needs to identify itself by sending the HELO hostname Full trace: C:/ruby/lib/ruby/1.8/net/smtp.rb:680:in `check_response'' C:/ruby/lib/ruby/1.8/net/smtp.rb:653:in `getok'' C:/ruby/lib/ruby/1.8/net/smtp.rb:623:in `helo'' C:/ruby/lib/ruby/1.8/net/smtp.rb:401:in `do_start'' C:/ruby/lib/ruby/1.8/net/smtp.rb:378:in `start'' C:/ruby/lib/ruby/1.8/net/smtp.rb:316:in `start'' C:/ruby/bin/REShop/vendor/rails/actionmailer/lib/action_mai...
2009 Feb 08
2
SocketError in EmailController#correspond
SocketError in EmailController#correspond getaddrinfo: no address associated with hostname. Please see above, these are the errors i get when i try to email a user on my networking site. Can you help please. Actionmailer address = smtp.vodafone.ie Below is code used for the email controller in apps/controllers/email_controller.rb There doesnt seem to be any code missing. Can someone help with