Actions
Defect #16619
closedMailer.token_for generates invalid message_id when using from address with full name
Status:
Closed
Priority:
Normal
Assignee:
Category:
Email notifications
Target version:
Start date:
Due date:
% Done:
0%
Estimated time:
Resolution:
Fixed
Affected version:
Description
The token generator in Mailer.rb (Mailer.token_for) has the following code:
host = Setting.mail_from.to_s.gsub(%r{^.*@}, '')
If you have configured Redmine to send from an address with both name and email, (f.ex. "Redmine Mailer<no-reply@redmine.org>") this results in a Message-id like the following being created:
<redmine.journal-2421.20140408113649@redmine.org>>
the double ">" at the end is considered illegal by some mail servers, and results in them rejecting it.
A possible solution could be the following:
host = Setting.mail_from.to_s.gsub(%r{(^.*@)|>}, '')
Updated by Jean-Philippe Lang over 10 years ago
- Subject changed from Mailer.rb token generator to Mailer.token_for generates invalid message_id when using from address with full name
- Status changed from New to Resolved
- Assignee set to Jean-Philippe Lang
- Target version set to 2.5.2
- Resolution set to Fixed
Fixed in r13126, thanks for pointing this out.
Actions