From 4a412b96aa71451b013f4cebb9becdfe746586b5 Mon Sep 17 00:00:00 2001 From: Alex Auvolat Date: Wed, 29 Jun 2022 20:10:42 +0200 Subject: [PATCH] Add possibility to fetch full RFC822 --- src/imap/mailbox_view.rs | 6 +++++- src/mail/mailbox.rs | 3 ++- 2 files changed, 7 insertions(+), 2 deletions(-) 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) } diff --git a/src/mail/mailbox.rs b/src/mail/mailbox.rs index bb1ca7a..479021d 100644 --- a/src/mail/mailbox.rs +++ b/src/mail/mailbox.rs @@ -239,7 +239,8 @@ impl MailboxInternal { let mail = br#"From: Garage team Subject: Welcome to Aerogramme!! -This is just a test email, feel free to ignore."#; +This is just a test email, feel free to ignore. +"#; let mail = IMF::try_from(&mail[..]).unwrap(); self.append(mail, None).await?;