diff --git a/CHANGELOG.md b/CHANGELOG.md
index 723ee4c9b..6fe04174a 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -5,7 +5,7 @@ All notable changes to this project will be documented in this file. This projec
## [0.3.3] - 2023-08-02
### Added
-- Encryption at rest with **S/MIME** and **PGP** support.
+- Encryption at rest with **S/MIME** or **OpenPGP**.
- Support for referencing context variables from dynamic values.
### Changed
diff --git a/README.md b/README.md
index 9495bacda..04bc99853 100644
--- a/README.md
+++ b/README.md
@@ -34,7 +34,7 @@ Key features:
- Email aliases, mailing lists, subaddressing and catch-all addresses support.
- Integration with **OpenTelemetry** to enable monitoring, tracing, and performance analysis.
- **Secure**:
- - Encryption at rest with **S/MIME** and **PGP** support.
+ - Encryption at rest with **S/MIME** or **OpenPGP**.
- OAuth 2.0 [authorization code](https://www.rfc-editor.org/rfc/rfc8628) and [device authorization](https://www.rfc-editor.org/rfc/rfc8628) flows.
- Access Control Lists (ACLs).
- Rate limiting.
diff --git a/crates/jmap/src/email/crypto.rs b/crates/jmap/src/email/crypto.rs
index 489687579..0c102a9c8 100644
--- a/crates/jmap/src/email/crypto.rs
+++ b/crates/jmap/src/email/crypto.rs
@@ -151,7 +151,7 @@ impl EncryptMessage for Message<'_> {
for cert in ¶ms.certs {
keys.push(SignedPublicKey::from_bytes(&cert[..]).map_err(|err| {
EncryptMessageError::Error(format!(
- "Failed to parse PGP public key: {}",
+ "Failed to parse OpenPGP public key: {}",
err
))
})?);
@@ -430,13 +430,13 @@ fn try_parse_pem(bytes: &[u8]) -> Result