mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-11-22 07:53:39 +01:00
fix replies to encrypted mails dont open with encryption switched on
This commit is contained in:
parent
db180f816d
commit
d384f2407a
@ -4263,7 +4263,7 @@ app.classes.mail = AppJS.extend(
|
||||
.removeClass('mailCompose_copyEmail')
|
||||
.css('cursor','move');
|
||||
}
|
||||
|
||||
|
||||
var dragItems = jQuery('div.ms-sel-item');
|
||||
dragItems.each(function(i,item){
|
||||
var $isErr = jQuery(item).find('.ui-state-error');
|
||||
@ -4457,7 +4457,7 @@ app.classes.mail = AppJS.extend(
|
||||
};
|
||||
// set encrypted checkbox, if not already set
|
||||
var composeToolbar = this.et2.getWidgetById('composeToolbar');
|
||||
if (composeToolbar.checkbox('pgp'))
|
||||
if (!composeToolbar.checkbox('pgp'))
|
||||
{
|
||||
composeToolbar.checkbox('pgp',true);
|
||||
}
|
||||
|
@ -865,7 +865,7 @@ var AppJS = Class.extend(
|
||||
{
|
||||
jQuery(window).on('mailvelope', function()
|
||||
{
|
||||
self.mailvelopeOpenKeyring.then(callback);
|
||||
self.mailvelopeOpenKeyring().then(callback);
|
||||
});
|
||||
}
|
||||
},
|
||||
|
Loading…
Reference in New Issue
Block a user