diff --git a/Gemfile b/Gemfile index 144240b62..a21af8c01 100644 --- a/Gemfile +++ b/Gemfile @@ -39,6 +39,8 @@ gem 'rack-attack', '>= 6.7.0' gem 'down' # authentication type to fetch and send mail over oauth2.0 gem 'gmail_xoauth' +# Lock net-smtp to 0.3.4 to avoid issues with gmail_xoauth2 +gem 'net-smtp', '~> 0.3.4' # Prevent CSV injection gem 'csv-safe' diff --git a/Gemfile.lock b/Gemfile.lock index 62c6829ed..96881eb30 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -479,7 +479,7 @@ GEM net-protocol net-protocol (0.2.2) timeout - net-smtp (0.4.0) + net-smtp (0.3.4) net-protocol netrc (0.11.0) newrelic-sidekiq-metrics (1.6.2) @@ -903,6 +903,7 @@ DEPENDENCIES meta_request mock_redis neighbor + net-smtp (~> 0.3.4) newrelic-sidekiq-metrics (>= 1.6.2) newrelic_rpm omniauth (>= 2.1.2) diff --git a/app/javascript/dashboard/components/widgets/conversation/Message.vue b/app/javascript/dashboard/components/widgets/conversation/Message.vue index 8eb03137b..e6890535b 100644 --- a/app/javascript/dashboard/components/widgets/conversation/Message.vue +++ b/app/javascript/dashboard/components/widgets/conversation/Message.vue @@ -1,7 +1,10 @@