Email On Dreamhost

Hi guys

is there any way i some one tell me how to set up email on Dreamhost

this is my production log

:SMTPAuthenticationError (535 Error: authentication failed)

Include your application configuration below

ActionMailer::Base.delivery_method = :smtp
ActionMailer::Base.server_settings = {
:address => “mail.irishwebdesigner.com”,
:domain => “irishwebdesigner.com”,
:port => 25,
:authentication => :login,
:user_name => “jdunneuk”,
:password => “password” }
ActionMailer::Base.perform_deliveries = true
ActionMailer::Base.raise_delivery_errors = true
ActionMailer::Base.default_charset = “utf-8”

I’ve just checked my config and the only difference I have is that
I’ve got the domain and address the same… So maybe have a crack at
that.

Cheers,
Dan
www.peoplehub.com.au

Oh, to clarify, in your case that would be to have :domain and
:address as “mail.irishwebdesigner.com

Dan
www.peoplehub.com.au

Hi !

2006/3/27, John D. [email protected]:

is there any way i some one tell me how to set up email on Dreamhost

Mine’s setup like this:

ActionMailer::Base.server_settings = {
:domain => “www.careernudge.com”,
:address => “mail.careernudge.com”,
:port => 25,
:authentication => :login,
:user_name => ‘m123456’, # mbox name only - no domain
:password => ‘the-password’ # mbox password
}

You’ll find your mbox name on the control panel.

Hope that helps !