From 4a412b96aa71451b013f4cebb9becdfe746586b5 Mon Sep 17 00:00:00 2001 From: Alex Auvolat Date: Wed, 29 Jun 2022 20:10:42 +0200 Subject: Add possibility to fetch full RFC822 --- src/imap/mailbox_view.rs | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) (limited to 'src/imap/mailbox_view.rs') diff --git a/src/imap/mailbox_view.rs b/src/imap/mailbox_view.rs index 9a956b6..e1ea516 100644 --- a/src/imap/mailbox_view.rs +++ b/src/imap/mailbox_view.rs @@ -246,6 +246,11 @@ impl MailboxView { IString::Literal(meta.headers.clone().try_into().unwrap()), )))) } + FetchAttribute::Rfc822 => { + attributes.push(MessageAttribute::Rfc822(NString(Some( + IString::Literal(body.as_ref().unwrap().clone().try_into().unwrap()), + )))) + } FetchAttribute::Envelope => { attributes.push(MessageAttribute::Envelope(message_envelope(&parsed))) } @@ -260,7 +265,6 @@ impl MailboxView { })); } - tracing::info!("Fetch result: {:?}", ret); Ok(ret) } -- cgit v1.2.3