aerc/commands/compose
Koni Marti b19b844a63 pgp: PGP/MIME encryption for outgoing emails
implements PGP/MIME encryption with go-pgpmail. The Encrypt() function of
go-pgpmail requires a list of public keys which are taken from the
keystore. The keystore is searched for the email addresses of all
recipients (to, cc, and bcc).
If you want to be able to read the encrypted email afterwards, add
yourself as a recipient in either to, cc, or bcc as well.

Public keys can be exported from gpg into aerc as follows:
$ gpg --export  >> ~/.local/share/aerc/keyring.asc

When composing a message, the encryption is enabled with the
":encrypt" command. This sets a bool flag in the Composer struct.
A reapted application of this command will toggle the flag.
The encrypted message can also be signed by using the ":sign"
command before or after ":encrypt".

References: https://todo.sr.ht/~rjarry/aerc/6
Signed-off-by: Koni Marti <koni.marti@gmail.com>
2022-01-07 13:45:34 +01:00
..
abort.go go.mod: change base git url 2021-11-05 10:21:45 +01:00
attach.go go.mod: change base git url 2021-11-05 10:21:45 +01:00
cc-bcc.go go.mod: change base git url 2021-11-05 10:21:45 +01:00
compose.go go.mod: change base git url 2021-11-05 10:21:45 +01:00
detach.go go.mod: change base git url 2021-11-05 10:21:45 +01:00
edit.go go.mod: change base git url 2021-11-05 10:21:45 +01:00
encrypt.go pgp: PGP/MIME encryption for outgoing emails 2022-01-07 13:45:34 +01:00
header.go go.mod: change base git url 2021-11-05 10:21:45 +01:00
next-field.go go.mod: change base git url 2021-11-05 10:21:45 +01:00
postpone.go go.mod: change base git url 2021-11-05 10:21:45 +01:00
send.go go.mod: change base git url 2021-11-05 10:21:45 +01:00
sign.go pgp: PGP/MIME signing for outgoing emails 2022-01-07 13:45:34 +01:00