(feat) trivial warning for encrypted mails

pull/239/head
Ludovic Marcotte 2017-12-23 09:36:22 -05:00
parent 643c6b7ebf
commit ada9c57ef7
1 changed files with 5 additions and 0 deletions

View File

@ -302,6 +302,11 @@
message: formattedMessage
};
}
else if (part.type == 'UIxMailPartEncryptedViewer') {
_this.$smime = {
message: "THIS MAIL IS ENCRYPTED!"
};
}
_.forEach(part.content, function(mixedPart) {
_visit(mixedPart);
});