From 932a43daac272295f9869f541bd592dcdffc7ade Mon Sep 17 00:00:00 2001 From: Christoph Haas Date: Mon, 3 Feb 2025 01:08:50 +0100 Subject: [PATCH] Do not complain about SMTP problems in dev mode --- config/environments/development.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config/environments/development.rb b/config/environments/development.rb index 749eef4..0013462 100644 --- a/config/environments/development.rb +++ b/config/environments/development.rb @@ -34,7 +34,7 @@ Rails.application.configure do config.active_storage.service = :local # Don't care if the mailer can't send. - config.action_mailer.raise_delivery_errors = true + config.action_mailer.raise_delivery_errors = false config.action_mailer.smtp_settings = { address: 'localhost', port: 25,