summaryrefslogtreecommitdiff
path: root/src/rfc822.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/rfc822.rs')
-rw-r--r--src/rfc822.rs1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/rfc822.rs b/src/rfc822.rs
index b3edca8..6944715 100644
--- a/src/rfc822.rs
+++ b/src/rfc822.rs
@@ -341,6 +341,7 @@ fn parse_mail_body(pm: &ParsedMail) -> Result<MailBody, maildir::MailEntryError>
}
}
Body::SevenBit(eb) => eb.get_as_string()?,
+ Body::QuotedPrintable(eb) => eb.get_decoded_as_string()?,
_ => todo!(),
};
MailBody::Discrete(b)