Fixed bodystructure tests
This commit is contained in:
@@ -600,7 +600,7 @@ impl SessionData {
|
||||
}
|
||||
}
|
||||
|
||||
trait AsImapDataItem<'x> {
|
||||
pub trait AsImapDataItem<'x> {
|
||||
fn body_structure(&self, is_extended: bool) -> BodyPart;
|
||||
fn body_section<'z: 'x>(
|
||||
&'z self,
|
||||
|
||||
@@ -350,7 +350,7 @@ impl SessionData {
|
||||
}
|
||||
Err(MethodError::ServerUnavailable) => {
|
||||
response.rtype = ResponseType::No;
|
||||
response.message = "Some messaged could not be updated.".into();
|
||||
response.message = "Some messages could not be updated.".into();
|
||||
}
|
||||
Err(_) => {
|
||||
return Err(StatusResponse::database_failure()
|
||||
|
||||
@@ -1,6 +1,10 @@
|
||||
use std::{fs, path::PathBuf};
|
||||
|
||||
use imap_proto::protocol::fetch::Section;
|
||||
use imap::op::fetch::AsImapDataItem;
|
||||
use imap_proto::{
|
||||
protocol::fetch::{BodyContents, DataItem, Section},
|
||||
ResponseCode, StatusResponse,
|
||||
};
|
||||
use mail_parser::Message;
|
||||
|
||||
#[test]
|
||||
|
||||
Reference in New Issue
Block a user