Bug 379274 - Should not be possible to delete or detach attachments from signed/encrypted mails (SeaMonkey), r+sr=Neil

This commit is contained in:
mcsmurf%mcsmurf.de 2007-05-06 10:27:32 +00:00
Родитель 787c4a5065
Коммит c26ebbf76f
1 изменённых файлов: 5 добавлений и 0 удалений

Просмотреть файл

@ -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());
}