reformat code again
This commit is contained in:
parent
5cfa06dbf8
commit
d42062ce48
18 changed files with 194 additions and 131 deletions
|
@ -11,7 +11,7 @@ between the header information and the body of the message."#;
|
|||
|
||||
let email = eml_codec::email(input).unwrap();
|
||||
println!(
|
||||
"{} just sent you an email with subject \"{}\"",
|
||||
"{} just sent you an email with subject \"{}\"",
|
||||
email.imf.from[0].to_string(),
|
||||
email.imf.subject.unwrap().to_string(),
|
||||
);
|
||||
|
|
|
@ -1,5 +1,3 @@
|
|||
|
||||
|
||||
#[derive(Debug, PartialEq)]
|
||||
pub enum EMLError<'a> {
|
||||
ParseError(nom::Err<nom::error::Error<&'a [u8]>>),
|
||||
|
|
|
@ -176,8 +176,8 @@ mod tests {
|
|||
);
|
||||
}
|
||||
|
||||
use crate::text::encoding::{EncodedWord, QuotedChunk, QuotedWord};
|
||||
use crate::text::quoted::QuotedString;
|
||||
use crate::text::encoding::{EncodedWord, QuotedWord, QuotedChunk};
|
||||
|
||||
#[test]
|
||||
fn test_strange_groups() {
|
||||
|
@ -186,50 +186,61 @@ mod tests {
|
|||
br#""Colleagues": "James Smythe" <james@vandelay.com>;, Friends:
|
||||
jane@example.com, =?UTF-8?Q?John_Sm=C3=AEth?= <john@example.com>;"#
|
||||
),
|
||||
Ok((&b""[..], vec![
|
||||
AddressRef::Many(GroupRef {
|
||||
name: Phrase(vec![Word::Quoted(QuotedString(vec![&b"Colleagues"[..]]))]),
|
||||
participants: vec![
|
||||
MailboxRef {
|
||||
Ok((
|
||||
&b""[..],
|
||||
vec![
|
||||
AddressRef::Many(GroupRef {
|
||||
name: Phrase(vec![Word::Quoted(QuotedString(vec![&b"Colleagues"[..]]))]),
|
||||
participants: vec![MailboxRef {
|
||||
name: Some(Phrase(vec![Word::Quoted(QuotedString(vec![
|
||||
&b"James"[..], &b" "[..], &b"Smythe"[..]
|
||||
&b"James"[..],
|
||||
&b" "[..],
|
||||
&b"Smythe"[..]
|
||||
]))])),
|
||||
addrspec: AddrSpec {
|
||||
local_part: LocalPart(vec![LocalPartToken::Word(Word::Atom(&b"james"[..]))]),
|
||||
local_part: LocalPart(vec![LocalPartToken::Word(Word::Atom(
|
||||
&b"james"[..]
|
||||
))]),
|
||||
domain: Domain::Atoms(vec![&b"vandelay"[..], &b"com"[..]]),
|
||||
}
|
||||
},
|
||||
],
|
||||
}),
|
||||
AddressRef::Many(GroupRef {
|
||||
name: Phrase(vec![Word::Atom(&b"Friends"[..])]),
|
||||
participants: vec![
|
||||
MailboxRef{
|
||||
name: None,
|
||||
addrspec: AddrSpec {
|
||||
local_part: LocalPart(vec![LocalPartToken::Word(Word::Atom(&b"jane"[..]))]),
|
||||
domain: Domain::Atoms(vec![&b"example"[..], &b"com"[..]]),
|
||||
}
|
||||
},
|
||||
MailboxRef{
|
||||
name: Some(Phrase(vec![Word::Encoded(EncodedWord::Quoted(QuotedWord {
|
||||
enc: encoding_rs::UTF_8,
|
||||
chunks: vec![
|
||||
QuotedChunk::Safe(&b"John"[..]),
|
||||
QuotedChunk::Space,
|
||||
QuotedChunk::Safe(&b"Sm"[..]),
|
||||
QuotedChunk::Encoded(vec![0xc3, 0xae]),
|
||||
QuotedChunk::Safe(&b"th"[..]),
|
||||
]
|
||||
}))])),
|
||||
addrspec: AddrSpec {
|
||||
local_part: LocalPart(vec![LocalPartToken::Word(Word::Atom(&b"john"[..]))]),
|
||||
domain: Domain::Atoms(vec![&b"example"[..], &b"com"[..]]),
|
||||
}
|
||||
},
|
||||
]
|
||||
}),
|
||||
]))
|
||||
},],
|
||||
}),
|
||||
AddressRef::Many(GroupRef {
|
||||
name: Phrase(vec![Word::Atom(&b"Friends"[..])]),
|
||||
participants: vec![
|
||||
MailboxRef {
|
||||
name: None,
|
||||
addrspec: AddrSpec {
|
||||
local_part: LocalPart(vec![LocalPartToken::Word(Word::Atom(
|
||||
&b"jane"[..]
|
||||
))]),
|
||||
domain: Domain::Atoms(vec![&b"example"[..], &b"com"[..]]),
|
||||
}
|
||||
},
|
||||
MailboxRef {
|
||||
name: Some(Phrase(vec![Word::Encoded(EncodedWord::Quoted(
|
||||
QuotedWord {
|
||||
enc: encoding_rs::UTF_8,
|
||||
chunks: vec![
|
||||
QuotedChunk::Safe(&b"John"[..]),
|
||||
QuotedChunk::Space,
|
||||
QuotedChunk::Safe(&b"Sm"[..]),
|
||||
QuotedChunk::Encoded(vec![0xc3, 0xae]),
|
||||
QuotedChunk::Safe(&b"th"[..]),
|
||||
]
|
||||
}
|
||||
))])),
|
||||
addrspec: AddrSpec {
|
||||
local_part: LocalPart(vec![LocalPartToken::Word(Word::Atom(
|
||||
&b"john"[..]
|
||||
))]),
|
||||
domain: Domain::Atoms(vec![&b"example"[..], &b"com"[..]]),
|
||||
}
|
||||
},
|
||||
]
|
||||
}),
|
||||
]
|
||||
))
|
||||
);
|
||||
}
|
||||
}
|
||||
|
|
|
@ -11,9 +11,9 @@ use crate::imf::address::{address_list, mailbox_list, nullable_address_list, Add
|
|||
use crate::imf::datetime::section as date;
|
||||
use crate::imf::identification::{msg_id, msg_list, MessageID, MessageIDList};
|
||||
use crate::imf::mailbox::{mailbox, AddrSpec, MailboxList, MailboxRef};
|
||||
use crate::imf::Imf;
|
||||
use crate::imf::mime::{version, Version};
|
||||
use crate::imf::trace::{received_log, return_path, ReceivedLog};
|
||||
use crate::imf::Imf;
|
||||
use crate::text::misc_token::{phrase_list, unstructured, PhraseList, Unstructured};
|
||||
use crate::text::whitespace::obs_crlf;
|
||||
|
||||
|
|
|
@ -1,4 +1,3 @@
|
|||
use std::fmt;
|
||||
use nom::{
|
||||
branch::alt,
|
||||
bytes::complete::{tag, take_while},
|
||||
|
@ -7,6 +6,7 @@ use nom::{
|
|||
sequence::{delimited, pair, tuple},
|
||||
IResult,
|
||||
};
|
||||
use std::fmt;
|
||||
|
||||
use crate::imf::mailbox::is_dtext;
|
||||
use crate::text::whitespace::cfws;
|
||||
|
@ -19,17 +19,22 @@ pub struct MessageID<'a> {
|
|||
}
|
||||
impl<'a> ToString for MessageID<'a> {
|
||||
fn to_string(&self) -> String {
|
||||
format!("{}@{}", String::from_utf8_lossy(self.left), String::from_utf8_lossy(self.right))
|
||||
format!(
|
||||
"{}@{}",
|
||||
String::from_utf8_lossy(self.left),
|
||||
String::from_utf8_lossy(self.right)
|
||||
)
|
||||
}
|
||||
}
|
||||
impl<'a> fmt::Debug for MessageID<'a> {
|
||||
fn fmt(&self, fmt: &mut fmt::Formatter<'_>) -> fmt::Result {
|
||||
fmt.debug_tuple("MessageID").field(&format_args!("\"{}\"", self.to_string())).finish()
|
||||
fmt.debug_tuple("MessageID")
|
||||
.field(&format_args!("\"{}\"", self.to_string()))
|
||||
.finish()
|
||||
}
|
||||
}
|
||||
pub type MessageIDList<'a> = Vec<MessageID<'a>>;
|
||||
|
||||
|
||||
/// Message identifier
|
||||
///
|
||||
/// ```abnf
|
||||
|
|
|
@ -1,4 +1,3 @@
|
|||
use std::fmt;
|
||||
use nom::{
|
||||
branch::alt,
|
||||
bytes::complete::{tag, take_while1},
|
||||
|
@ -7,6 +6,7 @@ use nom::{
|
|||
sequence::{delimited, pair, preceded, terminated, tuple},
|
||||
IResult,
|
||||
};
|
||||
use std::fmt;
|
||||
|
||||
use crate::text::ascii;
|
||||
use crate::text::misc_token::{phrase, word, Phrase, Word};
|
||||
|
@ -29,7 +29,9 @@ impl<'a> ToString for AddrSpec<'a> {
|
|||
}
|
||||
impl<'a> fmt::Debug for AddrSpec<'a> {
|
||||
fn fmt(&self, fmt: &mut fmt::Formatter<'_>) -> fmt::Result {
|
||||
fmt.debug_tuple("AddrSpec").field(&format_args!("\"{}\"", self.to_string())).finish()
|
||||
fmt.debug_tuple("AddrSpec")
|
||||
.field(&format_args!("\"{}\"", self.to_string()))
|
||||
.finish()
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -209,7 +211,9 @@ impl<'a> ToString for Domain<'a> {
|
|||
}
|
||||
impl<'a> fmt::Debug for Domain<'a> {
|
||||
fn fmt(&self, fmt: &mut fmt::Formatter<'_>) -> fmt::Result {
|
||||
fmt.debug_tuple("Domain").field(&format_args!("\"{}\"", self.to_string())).finish()
|
||||
fmt.debug_tuple("Domain")
|
||||
.field(&format_args!("\"{}\"", self.to_string()))
|
||||
.finish()
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
@ -53,27 +53,26 @@ pub struct Imf<'a> {
|
|||
// it may result in missing data or silently overriden data.
|
||||
impl<'a> FromIterator<Field<'a>> for Imf<'a> {
|
||||
fn from_iter<I: IntoIterator<Item = Field<'a>>>(iter: I) -> Self {
|
||||
iter.into_iter()
|
||||
.fold(Imf::default(), |mut section, field| {
|
||||
match field {
|
||||
Field::Date(v) => section.date = v,
|
||||
Field::From(v) => section.from.extend(v),
|
||||
Field::Sender(v) => section.sender = Some(v),
|
||||
Field::ReplyTo(v) => section.reply_to.extend(v),
|
||||
Field::To(v) => section.to.extend(v),
|
||||
Field::Cc(v) => section.cc.extend(v),
|
||||
Field::Bcc(v) => section.bcc.extend(v),
|
||||
Field::MessageID(v) => section.msg_id = Some(v),
|
||||
Field::InReplyTo(v) => section.in_reply_to.extend(v),
|
||||
Field::References(v) => section.references.extend(v),
|
||||
Field::Subject(v) => section.subject = Some(v),
|
||||
Field::Comments(v) => section.comments.push(v),
|
||||
Field::Keywords(v) => section.keywords.push(v),
|
||||
Field::ReturnPath(v) => v.map(|x| section.return_path.push(x)).unwrap_or(()),
|
||||
Field::Received(v) => section.received.push(v),
|
||||
Field::MIMEVersion(v) => section.mime_version = Some(v),
|
||||
};
|
||||
section
|
||||
})
|
||||
iter.into_iter().fold(Imf::default(), |mut section, field| {
|
||||
match field {
|
||||
Field::Date(v) => section.date = v,
|
||||
Field::From(v) => section.from.extend(v),
|
||||
Field::Sender(v) => section.sender = Some(v),
|
||||
Field::ReplyTo(v) => section.reply_to.extend(v),
|
||||
Field::To(v) => section.to.extend(v),
|
||||
Field::Cc(v) => section.cc.extend(v),
|
||||
Field::Bcc(v) => section.bcc.extend(v),
|
||||
Field::MessageID(v) => section.msg_id = Some(v),
|
||||
Field::InReplyTo(v) => section.in_reply_to.extend(v),
|
||||
Field::References(v) => section.references.extend(v),
|
||||
Field::Subject(v) => section.subject = Some(v),
|
||||
Field::Comments(v) => section.comments.push(v),
|
||||
Field::Keywords(v) => section.keywords.push(v),
|
||||
Field::ReturnPath(v) => v.map(|x| section.return_path.push(x)).unwrap_or(()),
|
||||
Field::Received(v) => section.received.push(v),
|
||||
Field::MIMEVersion(v) => section.mime_version = Some(v),
|
||||
};
|
||||
section
|
||||
})
|
||||
}
|
||||
}
|
||||
|
|
|
@ -1,8 +1,8 @@
|
|||
mod error;
|
||||
mod header;
|
||||
mod imf;
|
||||
mod mime;
|
||||
mod part;
|
||||
mod imf;
|
||||
mod text;
|
||||
|
||||
pub fn email(input: &[u8]) -> Result<part::composite::Message, error::EMLError> {
|
||||
|
|
|
@ -6,10 +6,10 @@ use nom::{
|
|||
};
|
||||
|
||||
use crate::header::{field_name, CompFieldList};
|
||||
use crate::imf::identification::{msg_id, MessageID};
|
||||
use crate::mime::mechanism::{mechanism, Mechanism};
|
||||
use crate::mime::mime::AnyMIME;
|
||||
use crate::mime::r#type::{naive_type, NaiveType};
|
||||
use crate::imf::identification::{msg_id, MessageID};
|
||||
use crate::text::misc_token::{unstructured, Unstructured};
|
||||
use crate::text::whitespace::obs_crlf;
|
||||
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
use crate::imf::identification::MessageID;
|
||||
use crate::mime::field::Content;
|
||||
use crate::mime::mechanism::Mechanism;
|
||||
use crate::mime::r#type::{self as ctype, AnyType};
|
||||
use crate::imf::identification::MessageID;
|
||||
use crate::text::misc_token::Unstructured; //Multipart, Message, Text, Binary};
|
||||
|
||||
#[derive(Debug, PartialEq, Clone)]
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
use nom::{
|
||||
bytes::complete::{tag},
|
||||
bytes::complete::tag,
|
||||
combinator::{map, opt},
|
||||
multi::many0,
|
||||
sequence::{preceded, terminated, tuple},
|
||||
|
@ -260,15 +260,11 @@ mod tests {
|
|||
parameter_list(b";boundary=\"festivus\";"),
|
||||
Ok((
|
||||
&b""[..],
|
||||
vec![
|
||||
Parameter {
|
||||
name: &b"boundary"[..],
|
||||
value: MIMEWord::Quoted(QuotedString(vec![
|
||||
&b"festivus"[..]
|
||||
])),
|
||||
}
|
||||
],
|
||||
vec![Parameter {
|
||||
name: &b"boundary"[..],
|
||||
value: MIMEWord::Quoted(QuotedString(vec![&b"festivus"[..]])),
|
||||
}],
|
||||
))
|
||||
);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
@ -1,16 +1,16 @@
|
|||
use nom::IResult;
|
||||
|
||||
use crate::header::{header, CompFieldList};
|
||||
use crate::mime;
|
||||
use crate::imf::{self as imf};
|
||||
use crate::mime;
|
||||
use crate::part::{self, AnyPart};
|
||||
use crate::text::boundary::{boundary, Delimiter};
|
||||
use crate::part::{AnyPart, self};
|
||||
|
||||
//--- Multipart
|
||||
#[derive(Debug, PartialEq)]
|
||||
pub struct Multipart<'a> {
|
||||
pub interpreted: mime::mime::Multipart<'a>,
|
||||
pub children: Vec<AnyPart<'a>>
|
||||
pub interpreted: mime::mime::Multipart<'a>,
|
||||
pub children: Vec<AnyPart<'a>>,
|
||||
}
|
||||
|
||||
pub fn multipart<'a>(
|
||||
|
@ -24,8 +24,24 @@ pub fn multipart<'a>(
|
|||
let mut mparts: Vec<AnyPart> = vec![];
|
||||
loop {
|
||||
let input = match boundary(bound)(input_loop) {
|
||||
Err(_) => return Ok((input_loop, Multipart { interpreted: m.clone(), children: mparts })),
|
||||
Ok((inp, Delimiter::Last)) => return Ok((inp, Multipart{ interpreted: m.clone(), children: mparts})),
|
||||
Err(_) => {
|
||||
return Ok((
|
||||
input_loop,
|
||||
Multipart {
|
||||
interpreted: m.clone(),
|
||||
children: mparts,
|
||||
},
|
||||
))
|
||||
}
|
||||
Ok((inp, Delimiter::Last)) => {
|
||||
return Ok((
|
||||
inp,
|
||||
Multipart {
|
||||
interpreted: m.clone(),
|
||||
children: mparts,
|
||||
},
|
||||
))
|
||||
}
|
||||
Ok((inp, Delimiter::Next)) => inp,
|
||||
};
|
||||
|
||||
|
@ -57,25 +73,32 @@ pub fn message<'a>(
|
|||
m: mime::mime::Message<'a>,
|
||||
) -> impl Fn(&'a [u8]) -> IResult<&'a [u8], Message<'a>> {
|
||||
move |input: &[u8]| {
|
||||
let (input, fields): (_, CompFieldList<part::field::MixedField>) = header(part::field::mixed_field)(input)?;
|
||||
let (input, fields): (_, CompFieldList<part::field::MixedField>) =
|
||||
header(part::field::mixed_field)(input)?;
|
||||
let (in_mime, imf) = fields.sections();
|
||||
|
||||
let part = part::to_anypart(in_mime, input);
|
||||
|
||||
Ok((&[], Message { interpreted: m.clone(), imf, child: Box::new(part) }))
|
||||
Ok((
|
||||
&[],
|
||||
Message {
|
||||
interpreted: m.clone(),
|
||||
imf,
|
||||
child: Box::new(part),
|
||||
},
|
||||
))
|
||||
}
|
||||
}
|
||||
|
||||
#[cfg(test)]
|
||||
mod tests {
|
||||
use super::*;
|
||||
use crate::text::encoding::{Base64Word, EncodedWord, QuotedChunk, QuotedWord};
|
||||
use crate::text::misc_token::{Phrase, UnstrToken, Unstructured, Word};
|
||||
use crate::part::discrete::Text;
|
||||
use crate::part::AnyPart;
|
||||
use crate::text::encoding::{Base64Word, EncodedWord, QuotedChunk, QuotedWord};
|
||||
use crate::text::misc_token::{Phrase, UnstrToken, Unstructured, Word};
|
||||
use chrono::{FixedOffset, TimeZone};
|
||||
|
||||
|
||||
#[test]
|
||||
fn test_multipart() {
|
||||
let base_mime = mime::mime::Multipart(
|
||||
|
@ -109,7 +132,7 @@ This is the epilogue. It is also to be ignored.
|
|||
Multipart {
|
||||
interpreted: base_mime,
|
||||
children: vec![
|
||||
AnyPart::Txt(Text {
|
||||
AnyPart::Txt(Text {
|
||||
interpreted: mime::mime::Text(
|
||||
mime::r#type::Text {
|
||||
subtype: mime::r#type::TextSubtype::Plain,
|
||||
|
|
|
@ -4,32 +4,36 @@ use crate::mime;
|
|||
|
||||
#[derive(PartialEq)]
|
||||
pub struct Text<'a> {
|
||||
pub interpreted: mime::mime::Text<'a>,
|
||||
pub body: &'a [u8]
|
||||
pub interpreted: mime::mime::Text<'a>,
|
||||
pub body: &'a [u8],
|
||||
}
|
||||
|
||||
impl<'a> fmt::Debug for Text<'a> {
|
||||
fn fmt(&self, fmt: &mut fmt::Formatter<'_>) -> fmt::Result {
|
||||
fmt
|
||||
.debug_struct("part::Text")
|
||||
fmt.debug_struct("part::Text")
|
||||
.field("mime", &self.interpreted)
|
||||
.field("body", &format_args!("\"{}\"", String::from_utf8_lossy(self.body)))
|
||||
.field(
|
||||
"body",
|
||||
&format_args!("\"{}\"", String::from_utf8_lossy(self.body)),
|
||||
)
|
||||
.finish()
|
||||
}
|
||||
}
|
||||
|
||||
#[derive(PartialEq)]
|
||||
pub struct Binary<'a> {
|
||||
pub interpreted: mime::mime::Binary<'a>,
|
||||
pub body: &'a [u8]
|
||||
pub interpreted: mime::mime::Binary<'a>,
|
||||
pub body: &'a [u8],
|
||||
}
|
||||
|
||||
impl<'a> fmt::Debug for Binary<'a> {
|
||||
fn fmt(&self, fmt: &mut fmt::Formatter<'_>) -> fmt::Result {
|
||||
fmt
|
||||
.debug_struct("part::Binary")
|
||||
fmt.debug_struct("part::Binary")
|
||||
.field("mime", &self.interpreted)
|
||||
.field("body", &format_args!("\"{}\"", String::from_utf8_lossy(self.body)))
|
||||
.field(
|
||||
"body",
|
||||
&format_args!("\"{}\"", String::from_utf8_lossy(self.body)),
|
||||
)
|
||||
.finish()
|
||||
}
|
||||
}
|
||||
|
|
|
@ -1,11 +1,7 @@
|
|||
use nom::{
|
||||
IResult,
|
||||
branch::alt,
|
||||
combinator::map,
|
||||
};
|
||||
use nom::{branch::alt, combinator::map, IResult};
|
||||
|
||||
use crate::mime;
|
||||
use crate::imf;
|
||||
use crate::mime;
|
||||
use crate::part::CompFieldList;
|
||||
|
||||
pub enum MixedField<'a> {
|
||||
|
@ -61,5 +57,3 @@ pub fn mixed_field(input: &[u8]) -> IResult<&[u8], MixedField> {
|
|||
map(imf::field::field, MixedField::IMF),
|
||||
))(input)
|
||||
}
|
||||
|
||||
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
pub mod field;
|
||||
pub mod composite;
|
||||
pub mod discrete;
|
||||
pub mod field;
|
||||
|
||||
use nom::{
|
||||
branch::alt,
|
||||
|
@ -14,10 +14,13 @@ use nom::{
|
|||
use crate::header::CompFieldList;
|
||||
use crate::mime;
|
||||
use crate::mime::mime::AnyMIME;
|
||||
use crate::part::{
|
||||
composite::{message, multipart, Message, Multipart},
|
||||
discrete::{Binary, Text},
|
||||
};
|
||||
use crate::text::ascii::CRLF;
|
||||
use crate::text::boundary::boundary;
|
||||
use crate::text::whitespace::obs_crlf;
|
||||
use crate::part::{composite::{Multipart, Message, multipart, message}, discrete::{Text, Binary}};
|
||||
|
||||
#[derive(Debug, PartialEq)]
|
||||
pub enum AnyPart<'a> {
|
||||
|
@ -31,12 +34,26 @@ pub fn to_anypart<'a>(m: AnyMIME<'a>, rpart: &'a [u8]) -> AnyPart<'a> {
|
|||
match m {
|
||||
AnyMIME::Mult(a) => map(multipart(a), AnyPart::Mult)(rpart)
|
||||
.map(|v| v.1)
|
||||
.unwrap_or(AnyPart::Txt(Text { interpreted: mime::mime::Text::default(), body: rpart })),
|
||||
AnyMIME::Msg(a) => map(message(a), AnyPart::Msg)(rpart)
|
||||
.map(|v| v.1)
|
||||
.unwrap_or(AnyPart::Txt(Text { interpreted: mime::mime::Text::default(), body: rpart })),
|
||||
AnyMIME::Txt(a) => AnyPart::Txt(Text { interpreted: a, body: rpart}),
|
||||
AnyMIME::Bin(a) => AnyPart::Bin(Binary{ interpreted: a, body: rpart }),
|
||||
.unwrap_or(AnyPart::Txt(Text {
|
||||
interpreted: mime::mime::Text::default(),
|
||||
body: rpart,
|
||||
})),
|
||||
AnyMIME::Msg(a) => {
|
||||
map(message(a), AnyPart::Msg)(rpart)
|
||||
.map(|v| v.1)
|
||||
.unwrap_or(AnyPart::Txt(Text {
|
||||
interpreted: mime::mime::Text::default(),
|
||||
body: rpart,
|
||||
}))
|
||||
}
|
||||
AnyMIME::Txt(a) => AnyPart::Txt(Text {
|
||||
interpreted: a,
|
||||
body: rpart,
|
||||
}),
|
||||
AnyMIME::Bin(a) => AnyPart::Bin(Binary {
|
||||
interpreted: a,
|
||||
body: rpart,
|
||||
}),
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
@ -1,4 +1,10 @@
|
|||
use nom::{branch::alt, bytes::complete::tag, combinator::{eof, opt}, sequence::tuple, IResult};
|
||||
use nom::{
|
||||
branch::alt,
|
||||
bytes::complete::tag,
|
||||
combinator::{eof, opt},
|
||||
sequence::tuple,
|
||||
IResult,
|
||||
};
|
||||
|
||||
use crate::text::whitespace::obs_crlf;
|
||||
|
||||
|
|
|
@ -13,8 +13,8 @@ use nom::{
|
|||
};
|
||||
|
||||
use crate::text::ascii;
|
||||
use crate::text::words;
|
||||
use crate::text::whitespace::cfws;
|
||||
use crate::text::words;
|
||||
|
||||
pub fn encoded_word(input: &[u8]) -> IResult<&[u8], EncodedWord> {
|
||||
alt((encoded_word_quoted, encoded_word_base64))(input)
|
||||
|
@ -147,7 +147,7 @@ fn hex_octet(input: &[u8]) -> IResult<&[u8], u8> {
|
|||
|
||||
let (rest, hbytes) = preceded(tag("="), take(2usize))(input)?;
|
||||
|
||||
let hstr = String::from_utf8_lossy(hbytes);
|
||||
let hstr = String::from_utf8_lossy(hbytes);
|
||||
let parsed = u8::from_str_radix(hstr.as_ref(), 16)
|
||||
.map_err(|_| nom::Err::Error(Error::new(input, ErrorKind::Verify)))?;
|
||||
|
||||
|
|
|
@ -1,4 +1,3 @@
|
|||
use std::fmt;
|
||||
use nom::{
|
||||
branch::alt,
|
||||
bytes::complete::{tag, take_while1},
|
||||
|
@ -8,6 +7,7 @@ use nom::{
|
|||
sequence::preceded,
|
||||
IResult,
|
||||
};
|
||||
use std::fmt;
|
||||
|
||||
use crate::text::{
|
||||
ascii,
|
||||
|
@ -72,7 +72,9 @@ impl<'a> ToString for Word<'a> {
|
|||
}
|
||||
impl<'a> fmt::Debug for Word<'a> {
|
||||
fn fmt(&self, fmt: &mut fmt::Formatter<'_>) -> fmt::Result {
|
||||
fmt.debug_tuple("Word").field(&format_args!("\"{}\"", self.to_string())).finish()
|
||||
fmt.debug_tuple("Word")
|
||||
.field(&format_args!("\"{}\"", self.to_string()))
|
||||
.finish()
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -103,7 +105,9 @@ impl<'a> ToString for Phrase<'a> {
|
|||
}
|
||||
impl<'a> fmt::Debug for Phrase<'a> {
|
||||
fn fmt(&self, fmt: &mut fmt::Formatter<'_>) -> fmt::Result {
|
||||
fmt.debug_tuple("Phrase").field(&format_args!("\"{}\"", self.to_string())).finish()
|
||||
fmt.debug_tuple("Phrase")
|
||||
.field(&format_args!("\"{}\"", self.to_string()))
|
||||
.finish()
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -175,7 +179,9 @@ impl<'a> ToString for Unstructured<'a> {
|
|||
}
|
||||
impl<'a> fmt::Debug for Unstructured<'a> {
|
||||
fn fmt(&self, fmt: &mut fmt::Formatter<'_>) -> fmt::Result {
|
||||
fmt.debug_tuple("Unstructured").field(&format_args!("\"{}\"", self.to_string())).finish()
|
||||
fmt.debug_tuple("Unstructured")
|
||||
.field(&format_args!("\"{}\"", self.to_string()))
|
||||
.finish()
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue