ActionMailer email error

Hi guys,
Not sure what is wrong with my emailing. I suspected it has to do with
the environment config but it looks fine to me. The error I get is:


Errno::ECONNRESET in EmailController#remind

An existing connection was forcibly closed by the remote host.


Rails 1.2.5, ActionMailer 1.3.5, Ruby 1.8

environment.rb:

Action Mailer email stuff

ActionMailer::Base.delivery_method = :smtp
ActionMailer::Base.server_settings = {
:address => “smtp.comcast.net”,
:port => 25,
:domain => “www.proletariandesign.com”,
:authentication => :login,
:user_name => “xxxx”,
:password => “xxxx”
}

Thanks for any help.

  • Adeel