(feat) trivial warning for encrypted mails

This commit is contained in:
Ludovic Marcotte
2017-12-23 09:36:22 -05:00
parent 643c6b7ebf
commit ada9c57ef7

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