I'm deploying an app (Redmine) and can't seem to get the SMTP configuration right. Here's what I have:
config.action_mailer.smtp_settings = {
:address => "mail.redminealchemy.com",
:port => 26,
:domain => "redminealchemy.com",
:authentication => :login,
:user_name => "redmine@redminealchemy.com",
:password => "redmine",
}
Most of that I found in the cPanel area for configuring mail clients. I'm not so sure if it should be redmine@redminealchemy.com or redmine+redminealchemy.com? How do I debug this?