gpg: don't send messages that failed encryption

Add error handling for messages that were unable to be encrypted.
Previously, messages that failed encryption would be sent with no
content. This patch adds error handling - when encryption fails, the
user is returned to the Review screen and instructed to check the public
keys for their recipients.

Reported-by: Moritz Poldrack <moritz@poldrack.dev>
Signed-off-by: Tim Culverhouse <tim@timculverhouse.com>
Acked-by: Moritz Poldrack <moritz@poldrack.dev>
This commit is contained in:
Tim Culverhouse 2022-06-25 09:22:49 -05:00 committed by Robin Jarry
parent 96db50c4f0
commit 6a10123f4a
3 changed files with 11 additions and 2 deletions
widgets

View file

@ -598,7 +598,10 @@ func (c *Composer) WriteMessage(header *mail.Header, writer io.Writer) error {
if err != nil {
return err
}
cleartext.Close()
err = cleartext.Close()
if err != nil {
return err
}
io.Copy(writer, &buf)
return nil