I''ve just installed the salted login generator. I''m having problems with it because it cannot successfully send a confirmation email. My SMTP server (Exim) gives the following error. 2005-06-20 18:09:37 rejected EHLO from localhost [127.0.0.1]: syntactically invalid argument(s): (no argument given) Ideas? Thanks David P.S. On a side note, the generated code essentially eats an exceptions, and produces an error message for the user. In my experience, doing this without logging the exception (with backtrace) is a very bad idea, as it makes it very difficult to diagnose production problems.
On Mon, Jun 20, 2005 at 08:38:52PM -0400, David Corbin wrote:> 2005-06-20 18:09:37 rejected EHLO from localhost [127.0.0.1]: > syntactically invalid argument(s): (no argument given)Hi, The syntax for EHLO/HELO is "EHLO name" where name is the fqdn of the client. The message above seems to indicate that the name part was not given. Ronny _______________________________________________ Rails mailing list Rails-1W37MKcQCpIf0INCOvqR/iCwEArCW2h5@public.gmane.org http://lists.rubyonrails.org/mailman/listinfo/rails
On Monday 20 June 2005 09:02 pm, Ronny Haryanto wrote:> On Mon, Jun 20, 2005 at 08:38:52PM -0400, David Corbin wrote: > > 2005-06-20 18:09:37 rejected EHLO from localhost [127.0.0.1]: > > syntactically invalid argument(s): (no argument given) > > Hi, > > The syntax for EHLO/HELO is "EHLO name" where name is the fqdn of the > client. The message above seems to indicate that the name part was not > given.Right. The quickstart page doesn''t mention the need to set a domain in the Mailer configuration. Setting it fixes things. David