From 10cd3aa72a02edfde4c72d59514b0e9395f2e594 Mon Sep 17 00:00:00 2001 From: DocuSeal Date: Mon, 16 Oct 2023 20:19:28 +0300 Subject: [PATCH] smtp ssl verify mode none --- lib/action_mailer_configs_interceptor.rb | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/action_mailer_configs_interceptor.rb b/lib/action_mailer_configs_interceptor.rb index 4f948302..9902ca3c 100644 --- a/lib/action_mailer_configs_interceptor.rb +++ b/lib/action_mailer_configs_interceptor.rb @@ -40,6 +40,7 @@ module ActionMailerConfigsInterceptor address: value['host'], port: value['port'], domain: value['domain'], + openssl_verify_mode: OpenSSL::SSL::VERIFY_NONE, authentication: value.fetch('authentication', 'plain'), enable_starttls_auto: true, ssl: value['security'] == 'ssl',