Gmail アカウントを使用してメールを配信しようとすると、タイムアウト::エラー (実行期限切れ): が発生します。私のconfig/environments/development.rbには、次のものがあります。
config.action_mailer.delivery_method = :smtp
config.action_mailer.perform_deliveries = true
config.action_mailer.raise_delivery_errors = true
config.action_mailer.smtp_settings = {
:address => "smtp.gmail.com",
:port => 587,
:domain => 'mydomain.com',
:user_name => 'me@mydomain.com',
:password => 'password',
:authentication => 'plain',
:enable_starttls_auto => true }
これは私を夢中にさせています!