From e4eb0992f48bf5c2de3e780769debfdfa883fefd Mon Sep 17 00:00:00 2001 From: Chris Kimpton Date: Sun, 11 Dec 2011 20:31:33 +0000 Subject: [PATCH] amended rails config, smtp_settings is :address, not :host (at least under Rails 3.1.3) --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 81108ee..fd5afb2 100644 --- a/README.md +++ b/README.md @@ -42,7 +42,7 @@ Under RVM your mailcatcher command may only available under the ruby you install To set up your rails app, I recommend adding this to your `environment/development.rb`: config.action_mailer.delivery_method = :smtp - config.action_mailer.smtp_settings = { :host => "localhost", :port => 1025 } + config.action_mailer.smtp_settings = { :address => "localhost", :port => 1025 } ### PHP