mirror of
https://github.com/the-djmaze/snappymail.git
synced 2026-07-13 03:27:39 +03:00
Support S/MIME decrypted opaque signed message #1450
This commit is contained in:
parent
e2b08ba160
commit
b3afbe107d
1 changed files with 6 additions and 0 deletions
|
|
@ -80,6 +80,12 @@ export function MimeToMessage(data, message)
|
||||||
detached: true
|
detached: true
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
} else if ('application/pkcs7-mime' === type.value /*&& 'signed-data' === type.params['smime-type']=*/) {
|
||||||
|
message.smimeSigned({
|
||||||
|
micAlg: type.micalg,
|
||||||
|
bodyPart: part,
|
||||||
|
detached: false
|
||||||
|
});
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue