forked from extern/egroupware
fix error when switching encryption on for text mail, fix double signature when switching encryption off (by not doing a server round-trip)
This commit is contained in:
parent
d384f2407a
commit
f0da3a71f9
@ -4508,7 +4508,10 @@ app.classes.mail = AppJS.extend(
|
|||||||
self.et2._inst.submit();
|
self.et2._inst.submit();
|
||||||
return; // ToDo: do that without reload
|
return; // ToDo: do that without reload
|
||||||
}
|
}
|
||||||
self.mailvelopeCompose();
|
self.mailvelopeOpenKeyring().then(function(_keyring)
|
||||||
|
{
|
||||||
|
self.mailvelopeCompose(_keyring);
|
||||||
|
});
|
||||||
})
|
})
|
||||||
.catch(function(_err)
|
.catch(function(_err)
|
||||||
{
|
{
|
||||||
@ -4525,7 +4528,9 @@ app.classes.mail = AppJS.extend(
|
|||||||
{
|
{
|
||||||
if (_button_id == et2_dialog.YES_BUTTON )
|
if (_button_id == et2_dialog.YES_BUTTON )
|
||||||
{
|
{
|
||||||
self.et2._inst.submit();
|
self.et2.getWidgetById('mimeType').set_readonly(false);
|
||||||
|
self.et2.getWidgetById('mail_plaintext').set_disabled(false);
|
||||||
|
jQuery('iframe[src^=chrome-extension]').remove();
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
|
Loading…
Reference in New Issue
Block a user