We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Redmine sets a couple of special X-Redmine- headers in native email messages. These headers can then be used by email clients to filter messages.
X-Redmine-
It would be great, if Mentions plugin did the same. Especially, I'm interested in X-Redmine-Project.
X-Redmine-Project
The text was updated successfully, but these errors were encountered:
I was also looking for the X-Redmine-Project header
Sorry, something went wrong.
@teranex, just for your information, I managed to add such header via monkey-patching, something like:
alias_method_chain :notify_mentioning, :redmine_headers ... def notify_mentioning_with_redmine_headers(issue, journal, user) redmine_headers 'Project' => issue.project.identifier, 'Issue-Id' => issue.id notify_mentioning_without_redmine_headers(issue, journal, user) end
@s-andy thanks a lot!
No branches or pull requests
Redmine sets a couple of special
X-Redmine-
headers in native email messages. These headers can then be used by email clients to filter messages.It would be great, if Mentions plugin did the same. Especially, I'm interested in
X-Redmine-Project
.The text was updated successfully, but these errors were encountered: