зеркало из https://github.com/mozilla/pjs.git
Bug 379274 - Should not be possible to delete or detach attachments from signed/encrypted mails (SeaMonkey), r+sr=Neil
This commit is contained in:
Родитель
787c4a5065
Коммит
c26ebbf76f
|
@ -1053,6 +1053,11 @@ createNewAttachmentInfo.prototype.detachAttachment = function detachAttachment()
|
|||
|
||||
function CanDetachAttachments()
|
||||
{
|
||||
if (("content-type" in currentHeaderData) &&
|
||||
/application\/x-pkcs7-(mime|signature)/
|
||||
.test(currentHeaderData["content-type"].headerValue))
|
||||
return false;
|
||||
|
||||
var uri = GetLoadedMessage();
|
||||
return !IsNewsMessage(uri) && (!IsImapMessage(uri) || CheckOnline());
|
||||
}
|
||||
|
|
Загрузка…
Ссылка в новой задаче