From 93bc300940660f026e75ba1592c4aad4af98e123 Mon Sep 17 00:00:00 2001 From: Emi Matchu Date: Sun, 18 Feb 2024 14:15:23 -0800 Subject: [PATCH] Update SMTP settings I moved `@openneo.net` mail to Fastmail instead of Dreamhost, so this setting needs to change to match! --- config/environments/production.rb | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/config/environments/production.rb b/config/environments/production.rb index 4a3937ac..a0ee2738 100644 --- a/config/environments/production.rb +++ b/config/environments/production.rb @@ -83,8 +83,9 @@ Rails.application.configure do config.action_mailer.delivery_method = :smtp config.action_mailer.smtp_settings = { - :address => "mail.openneo.net", - :port => 587, + :address => "smtp.fastmail.com", + :port => 465, + :tls => true, :domain => "openneo.net", :authentication => :login, :user_name => "matchu@openneo.net",