summaryrefslogtreecommitdiffstats
path: root/melib/src/email
diff options
context:
space:
mode:
authorManos Pitsidianakis <el13635@mail.ntua.gr>2019-06-10 15:38:25 +0300
committerManos Pitsidianakis <el13635@mail.ntua.gr>2019-06-10 19:40:51 +0300
commit8a070873932c957619f7ead2acad2afd5efffb1f (patch)
treefa46abae70fbf51d891590467b59fed886cf6ec9 /melib/src/email
parentd772d10d6632018f884595d85cacc37ba94caede (diff)
add testing crate with emailparse bin
Diffstat (limited to 'melib/src/email')
-rw-r--r--melib/src/email/attachments.rs9
1 files changed, 7 insertions, 2 deletions
diff --git a/melib/src/email/attachments.rs b/melib/src/email/attachments.rs
index aed43135..95c9462c 100644
--- a/melib/src/email/attachments.rs
+++ b/melib/src/email/attachments.rs
@@ -53,11 +53,16 @@ pub struct Attachment {
impl fmt::Debug for Attachment {
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
- write!(f, "Attachment {{\n content_type: {:?},\n content_transfer_encoding: {:?},\n raw: Vec of {} bytes\n, body:\n{}\n }}",
+ write!(f, "Attachment {{\n content_type: {:?},\n content_transfer_encoding: {:?},\n raw: Vec of {} bytes\n, body:\n{}\n}}",
self.content_type,
self.content_transfer_encoding,
self.raw.len(),
- str::from_utf8(&self.raw).unwrap())
+ {
+ let mut text = Vec::with_capacity(4096);
+ self.get_text_recursive(&mut text);
+ std::str::from_utf8(&text).map(|r| r.to_string()).unwrap_or_else(|e| format!("Unicode error {}", e))
+ }
+ )
}
}