ignore application/pgp-signature parts for display
This commit is contained in:
parent
0374dc9cb1
commit
e8c591e6be
1 changed files with 2 additions and 0 deletions
|
@ -166,6 +166,8 @@ public class MessageExtractor {
|
|||
Html html = new Html(part);
|
||||
viewables.add(html);
|
||||
}
|
||||
} else if (part.getMimeType().equalsIgnoreCase("application/pgp-signature")) {
|
||||
// ignore this type explicitly
|
||||
} else {
|
||||
// Everything else is treated as attachment.
|
||||
attachments.add(part);
|
||||
|
|
Loading…
Reference in a new issue