Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
G
gitlab-ce
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
gitlab-ce
Commits
11cc2cd2
Commit
11cc2cd2
authored
Oct 01, 2015
by
Stan Hu
Committed by
Robert Speicher
Oct 05, 2015
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix Message-ID field to be RFC 2111-compliant to prevent e-mails from being dropped
Closes #2867
parent
f9a0c22d
Changes
3
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
5 additions
and
1 deletion
+5
-1
CHANGELOG
CHANGELOG
+3
-0
app/mailers/notify.rb
app/mailers/notify.rb
+1
-1
spec/mailers/notify_spec.rb
spec/mailers/notify_spec.rb
+1
-0
No files found.
CHANGELOG
View file @
11cc2cd2
Please view this file on the master branch, on stable branches it's out of date.
Please view this file on the master branch, on stable branches it's out of date.
v 8.0.4
- Fix Message-ID header to be RFC 2111-compliant to prevent e-mails being dropped (Stan Hu)
v 8.0.3
v 8.0.3
- Fix URL shown in Slack notifications
- Fix URL shown in Slack notifications
- Fix bug where projects would appear to be stuck in the forked import state (Stan Hu)
- Fix bug where projects would appear to be stuck in the forked import state (Stan Hu)
...
...
app/mailers/notify.rb
View file @
11cc2cd2
...
@@ -140,7 +140,7 @@ class Notify < BaseMailer
...
@@ -140,7 +140,7 @@ class Notify < BaseMailer
# * have a 'In-Reply-To' or 'References' header that references the original 'Message-ID'
# * have a 'In-Reply-To' or 'References' header that references the original 'Message-ID'
#
#
def
mail_answer_thread
(
model
,
headers
=
{})
def
mail_answer_thread
(
model
,
headers
=
{})
headers
[
'Message-ID'
]
=
SecureRandom
.
hex
headers
[
'Message-ID'
]
=
"<
#{
SecureRandom
.
hex
}
@
#{
Gitlab
.
config
.
gitlab
.
host
}
>"
headers
[
'In-Reply-To'
]
=
message_id
(
model
)
headers
[
'In-Reply-To'
]
=
message_id
(
model
)
headers
[
'References'
]
=
message_id
(
model
)
headers
[
'References'
]
=
message_id
(
model
)
...
...
spec/mailers/notify_spec.rb
View file @
11cc2cd2
...
@@ -52,6 +52,7 @@ describe Notify do
...
@@ -52,6 +52,7 @@ describe Notify do
end
end
it
'has headers that reference an existing thread'
do
it
'has headers that reference an existing thread'
do
is_expected
.
to
have_header
'Message-ID'
,
/<(.*)@
#{
Gitlab
.
config
.
gitlab
.
host
}
>/
is_expected
.
to
have_header
'References'
,
/<
#{
thread_id_prefix
}
(.*)@
#{
Gitlab
.
config
.
gitlab
.
host
}
>/
is_expected
.
to
have_header
'References'
,
/<
#{
thread_id_prefix
}
(.*)@
#{
Gitlab
.
config
.
gitlab
.
host
}
>/
is_expected
.
to
have_header
'In-Reply-To'
,
/<
#{
thread_id_prefix
}
(.*)@
#{
Gitlab
.
config
.
gitlab
.
host
}
>/
is_expected
.
to
have_header
'In-Reply-To'
,
/<
#{
thread_id_prefix
}
(.*)@
#{
Gitlab
.
config
.
gitlab
.
host
}
>/
is_expected
.
to
have_header
'X-GitLab-Project'
,
/
#{
project
.
name
}
/
is_expected
.
to
have_header
'X-GitLab-Project'
,
/
#{
project
.
name
}
/
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment