Hello,
I am having trouble getting CP 2.7 with ruby 1.87 to send emails.
The server runs postfix and is able to send/receive emails just fine from the command line.
Both of these configs have been tried in configuration.yaml with no success. The test page says that it's sending emails, but maillog never show that an attempt was made.
Sendmail command
production:
email_delivery:
delivery_method: :sendmail
#Simple SMTP server at localhost
production:
email_delivery:
delivery_method: :smtp
smtp_settings:
address: "localhost"
port: 25
The only indication in the log file is this record:
Processing AdminController#test_email (for 184.58.217.97 at 2012-02-14 15:19:23) [GET]
Parameters: {"controller"=>"admin", "action"=>"test_email"}
Sending email notification to:
Redirected to http://linhes:3000/settings/edit?tab=notifications
Completed in 23ms (DB: 3) | 302 Found [http://linhes/admin/test_email]
Please advise on steps to take
-james