pgp: enable quoted replies of encrypted messages
When quoting an encrypted message for reply, the quoted text is shown as "Version: 1.0". This is due to this being the first non-multipart text portion of the message, which is what the quoted reply logic looks for. Properly quote replies to encrypted messages by decrypting the message, and quoting the content. The message must be open in a message view in order to quote it (it must be decrypted, which is handled by the message viewer). Suggested-by: Moritz Poldrack <moritz@poldrack.dev> Signed-off-by: Tim Culverhouse <tim@timculverhouse.com> Tested-by: Jens Grassel <jens@wegtam.com>
This commit is contained in:
parent
cd002567e8
commit
dcd397f776
2 changed files with 41 additions and 0 deletions
lib/crypto
|
|
@ -31,3 +31,18 @@ func New(s string) Provider {
|
|||
return &pgp.Mail{}
|
||||
}
|
||||
}
|
||||
|
||||
func IsEncrypted(bs *models.BodyStructure) bool {
|
||||
if bs == nil {
|
||||
return false
|
||||
}
|
||||
if bs.MIMEType == "application" && bs.MIMESubType == "pgp-encrypted" {
|
||||
return true
|
||||
}
|
||||
for _, part := range bs.Parts {
|
||||
if IsEncrypted(part) {
|
||||
return true
|
||||
}
|
||||
}
|
||||
return false
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue