mirror of
https://github.com/inverse-inc/sogo.git
synced 2026-05-23 04:15:26 +00:00
feat(mail): new option to force default identity
Users can now force the default identity to always be used when replying or forwarding a message.
This commit is contained in:
@@ -74,6 +74,10 @@
|
||||
}
|
||||
};
|
||||
|
||||
this.hasDefaultIdentity = function() {
|
||||
return _.findIndex(this.account.identities, function(identity) { return !!identity.isDefault; }) >= 0;
|
||||
};
|
||||
|
||||
this.setDefaultIdentity = function ($event, $index) {
|
||||
_.forEach(this.account.identities, function(identity, i) {
|
||||
if (i == $index)
|
||||
|
||||
Reference in New Issue
Block a user