mirror of
https://github.com/inverse-inc/sogo.git
synced 2026-05-15 16:35:35 +00:00
(fix) sent messages cannot be replied to their BCC email addresses (fixes #4460)
This commit is contained in:
@@ -275,7 +275,7 @@
|
||||
*/
|
||||
Message.prototype.allowReplyAll = function() {
|
||||
var recipientsCount = 0;
|
||||
recipientsCount = _.reduce(['to', 'cc'], _.bind(function(count, type) {
|
||||
recipientsCount = _.reduce(['to', 'cc', 'bcc'], _.bind(function(count, type) {
|
||||
if (this[type])
|
||||
return count + this[type].length;
|
||||
else
|
||||
|
||||
Reference in New Issue
Block a user