Encrypt to Self#
The Problem#
Once you encrypt an email to someone you cannot read it.
This is good for security, but bad for record-keeping.
If you wanted to keep a copy of an encrypted email you could set $fcc_clear.
A better option is to encrypt the saved copy to yourself.
Setting Up Self-Encryption with S/MIME#
Enable S/MIME self-encryption:
set smime_self_encrypt = yes set smime_default_key = bb345e23.0
If you have a different key for signing, set it separately:
set smime_sign_as = "SMIME-SIGNING-KEY"
Setting Up Self-Encryption with PGP#
Enable PGP self-encryption:
set pgp_self_encrypt = yes set pgp_default_key = A4AF18C5582473BD35A1E9CE78BB3D480042198E
If you have a different key for signing, set it separately:
set pgp_sign_as = "PGP-SIGNING-KEY"
Variables#
Name |
Type |
Default |
|---|---|---|
|
string |
(empty) |
|
boolean |
|
|
string |
(empty) |
|
string |
(empty) |
|
boolean |
|
|
string |
(empty) |
Example neomuttrc#
# Example NeoMutt config file for the encrypt-to-self feature.
# --------------------------------------------------------------------------
# VARIABLES β shown with their default values
# --------------------------------------------------------------------------
# Save a copy of outgoing email, encrypted to yourself
set pgp_self_encrypt = "yes"
set pgp_default_key = "PGP-KEY"
# set pgp_sign_as = "PGP-SIGNING-KEY"
# Save a copy of outgoing email, encrypted to yourself
set smime_self_encrypt = "yes"
set smime_default_key = "SMIME-KEY"
# set smime_sign_as = "SMIME-SIGNING-KEY"
# vim: filetype=neomuttrc
Encryption Information Block#
Show a block of encryption information about a message
Support#
Since: NeoMutt 2024-04-10
Dependencies: Gpgme
Introduction#
This feature shows a block of information that provides information about an encrypted message; mainly about its recipients. Here is an example of such a block:
[-- Begin encryption information --]
Recipient: RSA key, ID 00C14A7DBBDD521C
Recipient: RSA key, ID 0000000000000000
[-- End encryption information --]
π· Screenshot Needed
Subject: Encryption information block in pager
Description: The NeoMutt pager displaying a decrypted email with the encryption information block visible. The block shows β[β Begin encryption information β]β and β[β End encryption information β]β markers with recipient key details (e.g., βRecipient: RSA key, ID 00C14A7DBBDD521Cβ) between them.
Highlights: The encryption information block integrated into the message display, showing how recipient key IDs appear when viewing an encrypted message with $crypt_encryption_info enabled.
Usage#
Itβs enabled by default.
The variable to control it is crypt_encryption_info.