From 29e0a43efe7c06d4c7ae52600beef79993744191 Mon Sep 17 00:00:00 2001 From: Douwe Maan Date: Thu, 24 Sep 2015 15:11:41 +0200 Subject: Update mail_room --- Gemfile | 2 +- Gemfile.lock | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Gemfile b/Gemfile index b29846f738a..ac272dd2160 100644 --- a/Gemfile +++ b/Gemfile @@ -286,7 +286,7 @@ gem "newrelic_rpm", '~> 3.9.4.245' gem 'octokit', '~> 3.7.0' -gem "mail_room", "~> 0.5.1" +gem "mail_room", "~> 0.5.2" gem 'email_reply_parser', '~> 0.5.8' diff --git a/Gemfile.lock b/Gemfile.lock index 6070beb9d07..5bc1c998f38 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -384,7 +384,7 @@ GEM systemu (~> 2.6.2) mail (2.6.3) mime-types (>= 1.16, < 3) - mail_room (0.5.1) + mail_room (0.5.2) method_source (0.8.2) mime-types (1.25.1) mimemagic (0.3.0) @@ -848,7 +848,7 @@ DEPENDENCIES jquery-ui-rails (~> 4.2.1) kaminari (~> 0.16.3) letter_opener (~> 1.1.2) - mail_room (~> 0.5.1) + mail_room (~> 0.5.2) minitest (~> 5.7.0) mousetrap-rails (~> 1.4.6) mysql2 (~> 0.3.16) -- cgit v1.2.1 From 477017722b4e3a9e3ab8e3c51608aedc9bf2f8d2 Mon Sep 17 00:00:00 2001 From: Douwe Maan Date: Thu, 24 Sep 2015 15:15:25 +0200 Subject: Add and document option to use StartTLS with mail_room. --- config/mail_room.yml.example | 2 ++ doc/incoming_email/README.md | 4 ++++ 2 files changed, 6 insertions(+) diff --git a/config/mail_room.yml.example b/config/mail_room.yml.example index dd8edfc42eb..82e1a42058e 100644 --- a/config/mail_room.yml.example +++ b/config/mail_room.yml.example @@ -6,6 +6,8 @@ # :port: 993 # # Whether the IMAP server uses SSL # :ssl: true + # # Whether the IMAP server uses StartTLS + # :start_tls: false # # Email account username. Usually the full email address. # :email: "replies@gitlab.example.com" # # Email account password diff --git a/doc/incoming_email/README.md b/doc/incoming_email/README.md index c94e25bd4cc..01ab22321ed 100644 --- a/doc/incoming_email/README.md +++ b/doc/incoming_email/README.md @@ -88,6 +88,8 @@ In this example, we'll use the Gmail address `gitlab-incoming@gmail.com`. :port: 993 # Whether the IMAP server uses SSL :ssl: true + # Whether the IMAP server uses StartTLS + :start_tls: false # Email account username. Usually the full email address. :email: "gitlab-incoming@gmail.com" # Email account password @@ -161,6 +163,8 @@ In this example, we'll use the Gmail address `gitlab-incoming@gmail.com`. :port: 993 # Whether the IMAP server uses SSL :ssl: true + # Whether the IMAP server uses StartTLS + :start_tls: false # Email account username. Usually the full email address. :email: "gitlab-incoming@gmail.com" # Email account password -- cgit v1.2.1 From f6be2e0d6c666e12f0025e476db9e8387ff8ed79 Mon Sep 17 00:00:00 2001 From: Douwe Maan Date: Thu, 24 Sep 2015 15:15:29 +0200 Subject: Update changelog --- CHANGELOG | 2 ++ 1 file changed, 2 insertions(+) diff --git a/CHANGELOG b/CHANGELOG index 48d2b646339..9f967830009 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -17,6 +17,8 @@ v 8.0.2 (unreleased) - Fix top margin for sign-in button on public pages - Fix LDAP attribute mapping - Use standard Markdown font in Markdown preview instead of fixed-width font (Stan Hu) + - Fix Reply by email for non-UTF-8 messages. + - Add option to use StartTLS with Reply by email IMAP server. v 8.0.1 - Remove git refs used internally by GitLab from network graph (Stan Hu) -- cgit v1.2.1