search for: smtpsyntaxerror

Displaying 10 results from an estimated 10 matches for "smtpsyntaxerror".

2005 Apr 20
5
ActionMailer: Net::SMTPSyntaxError (502 unimplemented (#5.5.1) error
Quick ActionMailer Question: I''m trying to send a test email message using ActionMailer and I get a Net::SMTPSyntaxError (502 unimplemented (#5.5.1) error. I''m attempting to access a remote smtp server and have setup my settings in the environment.rb file according to the "how to" article. My test controller: class MailTestController < ApplicationController def index Notifier::deliver_test...
2006 Sep 11
1
ActionMailer SMTPSyntaxError 503
...ry, no mailbox here by that name), I added this to my settings: :domain => "www.afterneath.com", :authentication => :login, :user_name => "web-Id1Oio7c81i9Zq0HfjR8jw@public.gmane.org", :password => "(password)" and now I get this error: Net::SMTPSyntaxError in StoreController#create_customer 503 you are already authenticated any ideas? -- Posted via http://www.ruby-forum.com/. --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. T...
2008 Apr 11
1
Net::SMTPSyntaxError
..., :domain => ''[my domain], :authentication => :plain, :user_name => ''do-not-reply-hcDgGtZH8xNBDgjK7y7TUQ@public.gmane.org'', :password => ''[my password]'' } but when i click on send mail button, it shows following error: Net::SMTPSyntaxError in MailingController#sendmail 502 unimplemented (#5.5.1) RAILS_ROOT: C:/work/2phone Application Trace | Framework Trace | Full Trace c:/ruby/lib/ruby/1.8/net/smtp.rb:680:in `check_response'' c:/ruby/lib/ruby/1.8/net/smtp.rb:582:in `auth_login'' c:/ruby/lib/ruby/1.8/net/smtp.rb:68...
2006 Dec 28
1
ActionMailer/SMTP: Net::SMTPSyntaxError when message body contains only a 'dot'
FYI: I don''t think this is a very well know. It seems that, on some operating systems, ActionMailer/SMTP crashes when it sends an email with only a ''.'' (aka a ''dot'' or a ''period''). Specifically, you get Net::SMTPSyntaxError (502 Error: command not implemented): Environment Details: $ uname -a Linux private1 2.6.15-26-server #1 SMP Thu Aug 3 04:09:15 UTC 2006 i686 GNU/Linux $ ruby --version ruby 1.8.4 (2005-12-24) [i686-linux] $ rails --version Rails 1.1.6 Email Sending Details (example.com used in place of real...
2006 Aug 28
4
SMTPSyntaxError (501 <>: missing or malformed local part)
I get 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'' /us...
2006 Jan 24
4
SMTPSyntaxError with Action Mailer
I''ve been trying to get my action mailer powered form to work 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/...
2008 Apr 11
7
Net::SMTPAuthenticationError
Hey guys, I want to send an email via ROR and I have put this code at the very end in the config/environment.rb file- ActionMailer::Base.delivery_method = :smtp ActionMailer::Base.perform_deliveries = true ActionMailer::Base.logger = nil ActionMailer::Base.raise_delivery_errors = true ActionMailer::Base.smtp_settings = { :address => "[my smtp server]", :port => 25, :domain
2007 Jun 26
0
ActionMailer testing errors rescue... Net::
...ing various mails sent by my app (on localhost with Postfix - OS X of course...) no proble when postfix is running.. but if Postfix is not running I don''t have any raised error... I tried using the NET lib... rescue Net::SMTPFatalError, Net::SMTPServerBusy, Net::SMTPUnknownError, Net::SMTPSyntaxError, TimeoutError no matter cannot get an error... any info or link will be welcome.. (especially on net lib..) thanks kad -- Posted via http://www.ruby-forum.com/. --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups &q...
2006 Jan 24
9
ActionMailer: Mail isn''t delivered
Hi all I used the search for this, but I got an Application Error, so sorry for the newbie question. I have tried to send an e-mail using ActionMailer. I have to following config (environment.rb): ActionMailer::Base.server_settings = { :address => "mail.psyguide.org", :port => 25, :domain => "mail.psyguide.org", #:authentication => :login, #:user_name
2005 Nov 14
6
ActionMailer - Sent but no mail?
Hi, I am attempting to use ActionMailer to send out an email (SMTP) and am having an issue. The log files show that the email is sent, but the email is not making it to my inbox. I have followed the documentation both on the Wiki and in the AWD book. I''m not sure which setting I have incorrect and need some pointers. :authentication - should this be set to true, or