From b003341441f1e2f6b5b27363e744152114ac8a7d Mon Sep 17 00:00:00 2001 From: Francis Kayiwa Date: Tue, 28 May 2024 13:40:56 -0400 Subject: [PATCH 1/3] add new relay server --- config/environments/production.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config/environments/production.rb b/config/environments/production.rb index 93fda169..f7fa4cc5 100644 --- a/config/environments/production.rb +++ b/config/environments/production.rb @@ -64,7 +64,7 @@ config.action_mailer.delivery_method = :smtp config.action_mailer.smtp_settings = { - address: 'lib-ponyexpr.princeton.edu' + address: 'lib-ponyexpr-prod.princeton.edu' } # Ignore bad email addresses and do not raise email delivery errors. From 6bd8c33d308aea7602e16caef9d7b57d61552695 Mon Sep 17 00:00:00 2001 From: Max Kadel Date: Thu, 20 Jun 2024 13:06:21 -0400 Subject: [PATCH 2/3] Update production.rb --- config/environments/production.rb | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/config/environments/production.rb b/config/environments/production.rb index f7fa4cc5..f3c97803 100644 --- a/config/environments/production.rb +++ b/config/environments/production.rb @@ -64,7 +64,8 @@ config.action_mailer.delivery_method = :smtp config.action_mailer.smtp_settings = { - address: 'lib-ponyexpr-prod.princeton.edu' + address: 'lib-ponyexpr-prod.princeton.edu', + enable_starttls: false } # Ignore bad email addresses and do not raise email delivery errors. From 56c09f16127b95834c9e70d3b4ec4b2c62059dd1 Mon Sep 17 00:00:00 2001 From: Max Kadel Date: Thu, 20 Jun 2024 13:14:32 -0400 Subject: [PATCH 3/3] Rubocop --- config/environments/production.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config/environments/production.rb b/config/environments/production.rb index f3c97803..9e6740ee 100644 --- a/config/environments/production.rb +++ b/config/environments/production.rb @@ -1,5 +1,5 @@ # frozen_string_literal: true -Rails.application.configure do +Rails.application.configure do # rubocop:disable Metrics/BlockLength # Settings specified here will take precedence over those in config/application.rb. # Code is not reloaded between requests.