Defect #30787
closedOther recipients are not listed in To field even if Setting.bcc_recipients is false
0%
Description
In Redmine prior to 4.0, you can see to see all recipients of the notification email in the To field if "Blind carbon copy recipients (bcc)" setting (Setting.bcc_recipients
) is false. With this feature, you can know who the notification was sent by the update.
However, this feature is broken in Redmine 4.0. After upgrading to 4.0, only your email address is in the To field and other recipients are not listed there even if Setting.bcc_recipients is false.
Suppose the following issue:
- Assignee is foo@example.com
- Watcher is bar@example.com
When someone updates the issue, foo@example.com and bar@example.com should receive a notification. The To field in the header should be like the following if Setting.bcc_recipients is false:
To: foo@example.com, bar@example.com
However, in Redmine 4.0, actual To field are like the following. Only the recipient of the message is listed:
(The email that foo@example.com received)
To: foo@example.com
(The email that bar@example.com received)
To: bar@example.com
Related issues