From f32876708aa9b64bdf6be7671e58f2fc54fe4e6f Mon Sep 17 00:00:00 2001 From: Alexander Krotov Date: Sat, 7 Dec 2019 18:57:25 +0300 Subject: [PATCH] Update outdated comment MIME wrapping is now done by the email crate, which implements RFC5322 --- src/aheader.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/aheader.rs b/src/aheader.rs index 944d3c9d8..c748ef6f1 100644 --- a/src/aheader.rs +++ b/src/aheader.rs @@ -100,8 +100,8 @@ impl fmt::Display for Aheader { write!(fmt, " prefer-encrypt=mutual;")?; } - // adds a whitespace every 78 characters, this allows libEtPan to - // wrap the lines according to RFC 5322 + // adds a whitespace every 78 characters, this allows + // email crate to wrap the lines according to RFC 5322 // (which may insert a linebreak before every whitespace) let keydata = self.public_key.to_base64().chars().enumerate().fold( String::new(),