config.action_mailer.delivery_method = :smtp
config.action_mailer.smtp_settings = {
#we're using stunnel to tunnel TLS (SSL) connections to our gmail app for domains.  another option is available at 
#http://www.rubyinside.com/how-to-use-gmails-smtp-server-with-rails-394.html
  :address        => "localhost",
  :port           => 1099,
  :domain         => ".com",
  :authentication => :login,
  :user_name      => "@.com",
  :password       => "yourpassowrd"
}