Skip to content

Commit

Permalink
fix(mail(js)): expose all account identities in popup window
Browse files Browse the repository at this point in the history
Fixes #5442
  • Loading branch information
cgx committed Dec 15, 2021
1 parent 46971d4 commit 78855be
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion UI/WebServerResources/js/Mailer/Account.service.js
Expand Up @@ -577,7 +577,7 @@
}

_.forEach(this.identities, function (identity) {
if (!identity.isReadOnly)
if (!identity.isReadOnly || deep)
identities.push(_.pick(identity, ['email', 'fullName', 'replyTo', 'signature', 'isDefault']));
if (identity.isDefault)
defaultIdentity = identity;
Expand Down

0 comments on commit 78855be

Please sign in to comment.