spec/test_app/config/environments/test.rb in mail_manager-3.0.0 vs spec/test_app/config/environments/test.rb in mail_manager-3.2.0
- old
+ new
@@ -32,6 +32,19 @@
# Raise exception on mass assignment protection for Active Record models
config.active_record.mass_assignment_sanitizer = :strict
# Print deprecation notices to the stderr
config.active_support.deprecation = :stderr
+
+ config.action_mailer.smtp_settings = {
+ :address=>"mail.lvh.me",
+ :port=>25000,
+ :domain=>"mail.lvh.me",
+ :user_name=>'bobo',
+ :password=>'Secret1!',
+ :authentication=>nil,
+ :enable_starttls_auto=>false,
+ :openssl_verify_mode=>nil,
+ :ssl=>false,
+ :tls=>false
+ }
end