|
|
|
|
|
|
|
|
use std::cmp::min; |
|
|
use std::collections::{HashMap, HashSet}; |
|
|
use std::path::Path; |
|
|
use std::str; |
|
|
|
|
|
use anyhow::{bail, Context as _, Result}; |
|
|
use deltachat_contact_tools::{addr_cmp, addr_normalize, strip_rtlo_characters}; |
|
|
use deltachat_derive::{FromSql, ToSql}; |
|
|
use format_flowed::unformat_flowed; |
|
|
use lettre_email::mime::Mime; |
|
|
use mailparse::{addrparse_header, DispositionType, MailHeader, MailHeaderMap, SingleInfo}; |
|
|
|
|
|
use crate::aheader::{Aheader, EncryptPreference}; |
|
|
use crate::blob::BlobObject; |
|
|
use crate::chat::{add_info_msg, ChatId}; |
|
|
use crate::config::Config; |
|
|
use crate::constants::{self, Chattype, DC_DESIRED_TEXT_LINES, DC_DESIRED_TEXT_LINE_LEN}; |
|
|
use crate::contact::{Contact, ContactId, Origin}; |
|
|
use crate::context::Context; |
|
|
use crate::decrypt::{ |
|
|
keyring_from_peerstate, prepare_decryption, try_decrypt, validate_detached_signature, |
|
|
DecryptionInfo, |
|
|
}; |
|
|
use crate::dehtml::dehtml; |
|
|
use crate::events::EventType; |
|
|
use crate::headerdef::{HeaderDef, HeaderDefMap}; |
|
|
use crate::key::{self, load_self_secret_keyring, DcKey, Fingerprint, SignedPublicKey}; |
|
|
use crate::message::{ |
|
|
self, set_msg_failed, update_msg_state, Message, MessageState, MsgId, Viewtype, |
|
|
}; |
|
|
use crate::param::{Param, Params}; |
|
|
use crate::peerstate::Peerstate; |
|
|
use crate::simplify::{simplify, SimplifiedText}; |
|
|
use crate::sync::SyncItems; |
|
|
use crate::tools::{ |
|
|
create_smeared_timestamp, get_filemeta, parse_receive_headers, smeared_time, truncate_by_lines, |
|
|
validate_id, |
|
|
}; |
|
|
use crate::{chatlist_events, location, stock_str, tools}; |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#[derive(Debug)] |
|
|
pub(crate) struct MimeMessage { |
|
|
|
|
|
pub parts: Vec<Part>, |
|
|
|
|
|
|
|
|
headers: HashMap<String, String>, |
|
|
|
|
|
|
|
|
pub recipients: Vec<SingleInfo>, |
|
|
|
|
|
|
|
|
pub from: SingleInfo, |
|
|
|
|
|
|
|
|
|
|
|
pub from_is_signed: bool, |
|
|
|
|
|
pub incoming: bool, |
|
|
|
|
|
|
|
|
pub list_post: Option<String>, |
|
|
pub chat_disposition_notification_to: Option<SingleInfo>, |
|
|
pub decryption_info: DecryptionInfo, |
|
|
pub decrypting_failed: bool, |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
pub signatures: HashSet<Fingerprint>, |
|
|
|
|
|
|
|
|
|
|
|
pub gossiped_keys: HashMap<String, SignedPublicKey>, |
|
|
|
|
|
|
|
|
pub is_forwarded: bool, |
|
|
pub is_system_message: SystemMessage, |
|
|
pub location_kml: Option<location::Kml>, |
|
|
pub message_kml: Option<location::Kml>, |
|
|
pub(crate) sync_items: Option<SyncItems>, |
|
|
pub(crate) webxdc_status_update: Option<String>, |
|
|
pub(crate) user_avatar: Option<AvatarAction>, |
|
|
pub(crate) group_avatar: Option<AvatarAction>, |
|
|
pub(crate) mdn_reports: Vec<Report>, |
|
|
pub(crate) delivery_report: Option<DeliveryReport>, |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
pub(crate) footer: Option<String>, |
|
|
|
|
|
|
|
|
|
|
|
pub is_mime_modified: bool, |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
pub decoded_data: Vec<u8>, |
|
|
|
|
|
|
|
|
pub(crate) hop_info: String, |
|
|
|
|
|
|
|
|
pub(crate) is_bot: Option<bool>, |
|
|
|
|
|
|
|
|
pub(crate) timestamp_rcvd: i64, |
|
|
|
|
|
|
|
|
pub(crate) timestamp_sent: i64, |
|
|
} |
|
|
|
|
|
#[derive(Debug, PartialEq)] |
|
|
pub(crate) enum AvatarAction { |
|
|
Delete, |
|
|
Change(String), |
|
|
} |
|
|
|
|
|
|
|
|
#[derive( |
|
|
Debug, Default, Display, Clone, Copy, PartialEq, Eq, FromPrimitive, ToPrimitive, ToSql, FromSql, |
|
|
)] |
|
|
#[repr(u32)] |
|
|
pub enum SystemMessage { |
|
|
|
|
|
#[default] |
|
|
Unknown = 0, |
|
|
|
|
|
|
|
|
GroupNameChanged = 2, |
|
|
|
|
|
|
|
|
GroupImageChanged = 3, |
|
|
|
|
|
|
|
|
MemberAddedToGroup = 4, |
|
|
|
|
|
|
|
|
MemberRemovedFromGroup = 5, |
|
|
|
|
|
|
|
|
AutocryptSetupMessage = 6, |
|
|
|
|
|
|
|
|
SecurejoinMessage = 7, |
|
|
|
|
|
|
|
|
LocationStreamingEnabled = 8, |
|
|
|
|
|
|
|
|
LocationOnly = 9, |
|
|
|
|
|
|
|
|
EphemeralTimerChanged = 10, |
|
|
|
|
|
|
|
|
ChatProtectionEnabled = 11, |
|
|
|
|
|
|
|
|
ChatProtectionDisabled = 12, |
|
|
|
|
|
|
|
|
|
|
|
InvalidUnencryptedMail = 13, |
|
|
|
|
|
|
|
|
|
|
|
SecurejoinWait = 14, |
|
|
|
|
|
|
|
|
|
|
|
SecurejoinWaitTimeout = 15, |
|
|
|
|
|
|
|
|
|
|
|
MultiDeviceSync = 20, |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
WebxdcStatusUpdate = 30, |
|
|
|
|
|
|
|
|
WebxdcInfoMessage = 32, |
|
|
|
|
|
|
|
|
IrohNodeAddr = 40, |
|
|
} |
|
|
|
|
|
const MIME_AC_SETUP_FILE: &str = "application/autocrypt-setup"; |
|
|
|
|
|
impl MimeMessage { |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
pub(crate) async fn from_bytes( |
|
|
context: &Context, |
|
|
body: &[u8], |
|
|
partial: Option<u32>, |
|
|
) -> Result<Self> { |
|
|
let mail = mailparse::parse_mail(body)?; |
|
|
|
|
|
let timestamp_rcvd = smeared_time(context); |
|
|
let timestamp_sent = mail |
|
|
.headers |
|
|
.get_header_value(HeaderDef::Date) |
|
|
.and_then(|v| mailparse::dateparse(&v).ok()) |
|
|
.map_or(timestamp_rcvd, |value| { |
|
|
min(value, timestamp_rcvd + constants::TIMESTAMP_SENT_TOLERANCE) |
|
|
}); |
|
|
let mut hop_info = parse_receive_headers(&mail.get_headers()); |
|
|
|
|
|
let mut headers = Default::default(); |
|
|
let mut recipients = Default::default(); |
|
|
let mut from = Default::default(); |
|
|
let mut list_post = Default::default(); |
|
|
let mut chat_disposition_notification_to = None; |
|
|
|
|
|
|
|
|
MimeMessage::merge_headers( |
|
|
context, |
|
|
&mut headers, |
|
|
&mut recipients, |
|
|
&mut from, |
|
|
&mut list_post, |
|
|
&mut chat_disposition_notification_to, |
|
|
&mail.headers, |
|
|
); |
|
|
|
|
|
|
|
|
let mimetype = mail.ctype.mimetype.parse::<Mime>()?; |
|
|
let (part, mimetype) = |
|
|
if mimetype.type_() == mime::MULTIPART && mimetype.subtype().as_str() == "signed" { |
|
|
if let Some(part) = mail.subparts.first() { |
|
|
|
|
|
|
|
|
|
|
|
MimeMessage::merge_headers( |
|
|
context, |
|
|
&mut headers, |
|
|
&mut recipients, |
|
|
&mut from, |
|
|
&mut list_post, |
|
|
&mut chat_disposition_notification_to, |
|
|
&part.headers, |
|
|
); |
|
|
(part, part.ctype.mimetype.parse::<Mime>()?) |
|
|
} else { |
|
|
|
|
|
(&mail, mimetype) |
|
|
} |
|
|
} else { |
|
|
|
|
|
(&mail, mimetype) |
|
|
}; |
|
|
if mimetype.type_() == mime::MULTIPART && mimetype.subtype().as_str() == "mixed" { |
|
|
if let Some(part) = part.subparts.first() { |
|
|
for field in &part.headers { |
|
|
let key = field.get_key().to_lowercase(); |
|
|
|
|
|
|
|
|
if !headers.contains_key(&key) |
|
|
&& (key == "chat-user-avatar" || key == "chat-group-avatar") |
|
|
{ |
|
|
headers.insert(key.to_string(), field.get_value()); |
|
|
} |
|
|
} |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
if let Some(microsoft_message_id) = |
|
|
headers.remove(HeaderDef::XMicrosoftOriginalMessageId.get_headername()) |
|
|
{ |
|
|
headers.insert( |
|
|
HeaderDef::MessageId.get_headername().to_string(), |
|
|
microsoft_message_id, |
|
|
); |
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
Self::remove_secured_headers(&mut headers); |
|
|
|
|
|
let from = from.context("No from in message")?; |
|
|
let private_keyring = load_self_secret_keyring(context).await?; |
|
|
|
|
|
let mut decryption_info = |
|
|
prepare_decryption(context, &mail, &from.addr, timestamp_sent).await?; |
|
|
|
|
|
|
|
|
let mut mail_raw = Vec::new(); |
|
|
let mut gossiped_keys = Default::default(); |
|
|
let mut from_is_signed = false; |
|
|
hop_info += "\n\n"; |
|
|
hop_info += &decryption_info.dkim_results.to_string(); |
|
|
|
|
|
let incoming = !context.is_self_addr(&from.addr).await?; |
|
|
let public_keyring = match decryption_info.peerstate.is_none() && !incoming { |
|
|
true => key::load_self_public_keyring(context).await?, |
|
|
false => keyring_from_peerstate(decryption_info.peerstate.as_ref()), |
|
|
}; |
|
|
let (mail, mut signatures, encrypted) = match tokio::task::block_in_place(|| { |
|
|
try_decrypt(&mail, &private_keyring, &public_keyring) |
|
|
}) { |
|
|
Ok(Some((raw, signatures))) => { |
|
|
mail_raw = raw; |
|
|
let decrypted_mail = mailparse::parse_mail(&mail_raw)?; |
|
|
if std::env::var(crate::DCC_MIME_DEBUG).is_ok() { |
|
|
info!( |
|
|
context, |
|
|
"decrypted message mime-body:\n{}", |
|
|
String::from_utf8_lossy(&mail_raw), |
|
|
); |
|
|
} |
|
|
(Ok(decrypted_mail), signatures, true) |
|
|
} |
|
|
Ok(None) => (Ok(mail), HashSet::new(), false), |
|
|
Err(err) => { |
|
|
warn!(context, "decryption failed: {:#}", err); |
|
|
(Err(err), HashSet::new(), false) |
|
|
} |
|
|
}; |
|
|
let mail = mail.as_ref().map(|mail| { |
|
|
let (content, signatures_detached) = validate_detached_signature(mail, &public_keyring) |
|
|
.unwrap_or((mail, Default::default())); |
|
|
signatures.extend(signatures_detached); |
|
|
content |
|
|
}); |
|
|
if let (Ok(mail), true) = (mail, encrypted) { |
|
|
if !signatures.is_empty() { |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
let gossip_headers = mail.headers.get_all_values("Autocrypt-Gossip"); |
|
|
gossiped_keys = update_gossip_peerstates( |
|
|
context, |
|
|
timestamp_sent, |
|
|
&from.addr, |
|
|
&recipients, |
|
|
gossip_headers, |
|
|
) |
|
|
.await?; |
|
|
|
|
|
|
|
|
|
|
|
for h in [ |
|
|
HeaderDef::Subject, |
|
|
HeaderDef::ChatGroupId, |
|
|
HeaderDef::ChatGroupName, |
|
|
HeaderDef::ChatGroupNameChanged, |
|
|
HeaderDef::ChatGroupAvatar, |
|
|
HeaderDef::ChatGroupMemberRemoved, |
|
|
HeaderDef::ChatGroupMemberAdded, |
|
|
] { |
|
|
headers.remove(h.get_headername()); |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
let mut inner_from = None; |
|
|
|
|
|
MimeMessage::merge_headers( |
|
|
context, |
|
|
&mut headers, |
|
|
&mut recipients, |
|
|
&mut inner_from, |
|
|
&mut list_post, |
|
|
&mut chat_disposition_notification_to, |
|
|
&mail.headers, |
|
|
); |
|
|
|
|
|
if let (Some(inner_from), true) = (inner_from, !signatures.is_empty()) { |
|
|
if addr_cmp(&inner_from.addr, &from.addr) { |
|
|
from_is_signed = true; |
|
|
} else { |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
warn!( |
|
|
context, |
|
|
"From header in signed part doesn't match the outer one", |
|
|
); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
bail!("From header is forged"); |
|
|
} |
|
|
} |
|
|
} |
|
|
if signatures.is_empty() { |
|
|
Self::remove_secured_headers(&mut headers); |
|
|
|
|
|
|
|
|
if let (Some(peerstate), Ok(mail)) = (&mut decryption_info.peerstate, mail) { |
|
|
if timestamp_sent > peerstate.last_seen_autocrypt |
|
|
&& mail.ctype.mimetype != "multipart/report" |
|
|
{ |
|
|
peerstate.degrade_encryption(timestamp_sent); |
|
|
} |
|
|
} |
|
|
} |
|
|
if !encrypted { |
|
|
signatures.clear(); |
|
|
} |
|
|
if let Some(peerstate) = &mut decryption_info.peerstate { |
|
|
if peerstate.prefer_encrypt != EncryptPreference::Mutual && !signatures.is_empty() { |
|
|
peerstate.prefer_encrypt = EncryptPreference::Mutual; |
|
|
peerstate.save_to_db(&context.sql).await?; |
|
|
} |
|
|
} |
|
|
|
|
|
let mut parser = MimeMessage { |
|
|
parts: Vec::new(), |
|
|
headers, |
|
|
recipients, |
|
|
list_post, |
|
|
from, |
|
|
from_is_signed, |
|
|
incoming, |
|
|
chat_disposition_notification_to, |
|
|
decryption_info, |
|
|
decrypting_failed: mail.is_err(), |
|
|
|
|
|
|
|
|
signatures, |
|
|
gossiped_keys, |
|
|
is_forwarded: false, |
|
|
mdn_reports: Vec::new(), |
|
|
is_system_message: SystemMessage::Unknown, |
|
|
location_kml: None, |
|
|
message_kml: None, |
|
|
sync_items: None, |
|
|
webxdc_status_update: None, |
|
|
user_avatar: None, |
|
|
group_avatar: None, |
|
|
delivery_report: None, |
|
|
footer: None, |
|
|
is_mime_modified: false, |
|
|
decoded_data: Vec::new(), |
|
|
hop_info, |
|
|
is_bot: None, |
|
|
timestamp_rcvd, |
|
|
timestamp_sent, |
|
|
}; |
|
|
|
|
|
match partial { |
|
|
Some(org_bytes) => { |
|
|
parser |
|
|
.create_stub_from_partial_download(context, org_bytes) |
|
|
.await?; |
|
|
} |
|
|
None => match mail { |
|
|
Ok(mail) => { |
|
|
parser.parse_mime_recursive(context, mail, false).await?; |
|
|
} |
|
|
Err(err) => { |
|
|
let msg_body = stock_str::cant_decrypt_msg_body(context).await; |
|
|
let txt = format!("[{msg_body}]"); |
|
|
|
|
|
let part = Part { |
|
|
typ: Viewtype::Text, |
|
|
msg_raw: Some(txt.clone()), |
|
|
msg: txt, |
|
|
|
|
|
|
|
|
error: Some(format!("Decrypting failed: {err:#}")), |
|
|
..Default::default() |
|
|
}; |
|
|
parser.parts.push(part); |
|
|
} |
|
|
}, |
|
|
}; |
|
|
|
|
|
if parser.mdn_reports.is_empty() && parser.webxdc_status_update.is_none() { |
|
|
|
|
|
let is_bot = parser.headers.get("auto-submitted") |
|
|
== Some(&"auto-generated".to_string()) |
|
|
&& parser.headers.contains_key("chat-version"); |
|
|
parser.is_bot = Some(is_bot); |
|
|
} |
|
|
parser.maybe_remove_bad_parts(); |
|
|
parser.maybe_remove_inline_mailinglist_footer(); |
|
|
parser.heuristically_parse_ndn(context).await; |
|
|
parser.parse_headers(context).await?; |
|
|
|
|
|
if parser.is_mime_modified { |
|
|
parser.decoded_data = mail_raw; |
|
|
} |
|
|
|
|
|
Ok(parser) |
|
|
} |
|
|
|
|
|
|
|
|
fn parse_system_message_headers(&mut self, context: &Context) { |
|
|
if self.get_header(HeaderDef::AutocryptSetupMessage).is_some() && !self.incoming { |
|
|
self.parts.retain(|part| { |
|
|
part.mimetype.is_none() |
|
|
|| part.mimetype.as_ref().unwrap().as_ref() == MIME_AC_SETUP_FILE |
|
|
}); |
|
|
|
|
|
if self.parts.len() == 1 { |
|
|
self.is_system_message = SystemMessage::AutocryptSetupMessage; |
|
|
} else { |
|
|
warn!(context, "could not determine ASM mime-part"); |
|
|
} |
|
|
} else if let Some(value) = self.get_header(HeaderDef::ChatContent) { |
|
|
if value == "location-streaming-enabled" { |
|
|
self.is_system_message = SystemMessage::LocationStreamingEnabled; |
|
|
} else if value == "ephemeral-timer-changed" { |
|
|
self.is_system_message = SystemMessage::EphemeralTimerChanged; |
|
|
} else if value == "protection-enabled" { |
|
|
self.is_system_message = SystemMessage::ChatProtectionEnabled; |
|
|
} else if value == "protection-disabled" { |
|
|
self.is_system_message = SystemMessage::ChatProtectionDisabled; |
|
|
} else if value == "group-avatar-changed" { |
|
|
self.is_system_message = SystemMessage::GroupImageChanged; |
|
|
} |
|
|
} else if self.get_header(HeaderDef::ChatGroupMemberRemoved).is_some() { |
|
|
self.is_system_message = SystemMessage::MemberRemovedFromGroup; |
|
|
} else if self.get_header(HeaderDef::ChatGroupMemberAdded).is_some() { |
|
|
self.is_system_message = SystemMessage::MemberAddedToGroup; |
|
|
} else if self.get_header(HeaderDef::ChatGroupNameChanged).is_some() { |
|
|
self.is_system_message = SystemMessage::GroupNameChanged; |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
async fn parse_avatar_headers(&mut self, context: &Context) { |
|
|
if let Some(header_value) = self.get_header(HeaderDef::ChatGroupAvatar) { |
|
|
self.group_avatar = self |
|
|
.avatar_action_from_header(context, header_value.to_string()) |
|
|
.await; |
|
|
} |
|
|
|
|
|
if let Some(header_value) = self.get_header(HeaderDef::ChatUserAvatar) { |
|
|
self.user_avatar = self |
|
|
.avatar_action_from_header(context, header_value.to_string()) |
|
|
.await; |
|
|
} |
|
|
} |
|
|
|
|
|
fn parse_videochat_headers(&mut self) { |
|
|
if let Some(value) = self.get_header(HeaderDef::ChatContent) { |
|
|
if value == "videochat-invitation" { |
|
|
let instance = self |
|
|
.get_header(HeaderDef::ChatWebrtcRoom) |
|
|
.map(|s| s.to_string()); |
|
|
if let Some(part) = self.parts.first_mut() { |
|
|
part.typ = Viewtype::VideochatInvitation; |
|
|
part.param |
|
|
.set(Param::WebrtcRoom, instance.unwrap_or_default()); |
|
|
} |
|
|
} |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#[allow(clippy::indexing_slicing)] |
|
|
fn squash_attachment_parts(&mut self) { |
|
|
if let [textpart, filepart] = &self.parts[..] { |
|
|
let need_drop = textpart.typ == Viewtype::Text |
|
|
&& match filepart.typ { |
|
|
Viewtype::Image |
|
|
| Viewtype::Gif |
|
|
| Viewtype::Sticker |
|
|
| Viewtype::Audio |
|
|
| Viewtype::Voice |
|
|
| Viewtype::Video |
|
|
| Viewtype::Vcard |
|
|
| Viewtype::File |
|
|
| Viewtype::Webxdc => true, |
|
|
Viewtype::Unknown | Viewtype::Text | Viewtype::VideochatInvitation => false, |
|
|
}; |
|
|
|
|
|
if need_drop { |
|
|
let mut filepart = self.parts.swap_remove(1); |
|
|
|
|
|
|
|
|
filepart.msg.clone_from(&self.parts[0].msg); |
|
|
if let Some(quote) = self.parts[0].param.get(Param::Quote) { |
|
|
filepart.param.set(Param::Quote, quote); |
|
|
} |
|
|
|
|
|
|
|
|
self.parts[0].msg = "".to_string(); |
|
|
|
|
|
|
|
|
self.parts.push(filepart); |
|
|
let _ = self.parts.swap_remove(0); |
|
|
} |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
fn parse_attachments(&mut self) { |
|
|
|
|
|
|
|
|
if self.parts.len() != 1 { |
|
|
return; |
|
|
} |
|
|
|
|
|
if let Some(mut part) = self.parts.pop() { |
|
|
if part.typ == Viewtype::Audio && self.get_header(HeaderDef::ChatVoiceMessage).is_some() |
|
|
{ |
|
|
part.typ = Viewtype::Voice; |
|
|
} |
|
|
if part.typ == Viewtype::Image || part.typ == Viewtype::Gif { |
|
|
if let Some(value) = self.get_header(HeaderDef::ChatContent) { |
|
|
if value == "sticker" { |
|
|
part.typ = Viewtype::Sticker; |
|
|
} |
|
|
} |
|
|
} |
|
|
if part.typ == Viewtype::Audio |
|
|
|| part.typ == Viewtype::Voice |
|
|
|| part.typ == Viewtype::Video |
|
|
{ |
|
|
if let Some(field_0) = self.get_header(HeaderDef::ChatDuration) { |
|
|
let duration_ms = field_0.parse().unwrap_or_default(); |
|
|
if duration_ms > 0 && duration_ms < 24 * 60 * 60 * 1000 { |
|
|
part.param.set_int(Param::Duration, duration_ms); |
|
|
} |
|
|
} |
|
|
} |
|
|
|
|
|
self.parts.push(part); |
|
|
} |
|
|
} |
|
|
|
|
|
async fn parse_headers(&mut self, context: &Context) -> Result<()> { |
|
|
self.parse_system_message_headers(context); |
|
|
self.parse_avatar_headers(context).await; |
|
|
self.parse_videochat_headers(); |
|
|
if self.delivery_report.is_none() { |
|
|
self.squash_attachment_parts(); |
|
|
} |
|
|
|
|
|
if !context.get_config_bool(Config::Bot).await? { |
|
|
if let Some(ref subject) = self.get_subject() { |
|
|
let mut prepend_subject = true; |
|
|
if !self.decrypting_failed { |
|
|
let colon = subject.find(':'); |
|
|
if colon == Some(2) |
|
|
|| colon == Some(3) |
|
|
|| self.has_chat_version() |
|
|
|| subject.contains("Chat:") |
|
|
{ |
|
|
prepend_subject = false |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
if self.is_mailinglist_message() && !self.has_chat_version() { |
|
|
prepend_subject = true; |
|
|
} |
|
|
|
|
|
if prepend_subject && !subject.is_empty() { |
|
|
let part_with_text = self |
|
|
.parts |
|
|
.iter_mut() |
|
|
.find(|part| !part.msg.is_empty() && !part.is_reaction); |
|
|
if let Some(part) = part_with_text { |
|
|
part.msg = format!("{} – {}", subject, part.msg); |
|
|
} |
|
|
} |
|
|
} |
|
|
} |
|
|
|
|
|
if self.is_forwarded { |
|
|
for part in &mut self.parts { |
|
|
part.param.set_int(Param::Forwarded, 1); |
|
|
} |
|
|
} |
|
|
|
|
|
self.parse_attachments(); |
|
|
|
|
|
|
|
|
if !self.decrypting_failed && !self.parts.is_empty() { |
|
|
if let Some(ref dn_to) = self.chat_disposition_notification_to { |
|
|
|
|
|
let from = &self.from.addr; |
|
|
if !context.is_self_addr(from).await? { |
|
|
if from.to_lowercase() == dn_to.addr.to_lowercase() { |
|
|
if let Some(part) = self.parts.last_mut() { |
|
|
part.param.set_int(Param::WantsMdn, 1); |
|
|
} |
|
|
} else { |
|
|
warn!( |
|
|
context, |
|
|
"{} requested a read receipt to {}, ignoring", from, dn_to.addr |
|
|
); |
|
|
} |
|
|
} |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
if self.parts.is_empty() && self.mdn_reports.is_empty() { |
|
|
let mut part = Part { |
|
|
typ: Viewtype::Text, |
|
|
..Default::default() |
|
|
}; |
|
|
|
|
|
if let Some(ref subject) = self.get_subject() { |
|
|
if !self.has_chat_version() && self.webxdc_status_update.is_none() { |
|
|
part.msg = subject.to_string(); |
|
|
} |
|
|
} |
|
|
|
|
|
self.do_add_single_part(part); |
|
|
} |
|
|
|
|
|
if self.is_bot == Some(true) { |
|
|
for part in &mut self.parts { |
|
|
part.param.set(Param::Bot, "1"); |
|
|
} |
|
|
} |
|
|
|
|
|
Ok(()) |
|
|
} |
|
|
|
|
|
async fn avatar_action_from_header( |
|
|
&mut self, |
|
|
context: &Context, |
|
|
header_value: String, |
|
|
) -> Option<AvatarAction> { |
|
|
if header_value == "0" { |
|
|
Some(AvatarAction::Delete) |
|
|
} else if let Some(base64) = header_value |
|
|
.split_ascii_whitespace() |
|
|
.collect::<String>() |
|
|
.strip_prefix("base64:") |
|
|
{ |
|
|
match BlobObject::store_from_base64(context, base64, "avatar").await { |
|
|
Ok(path) => Some(AvatarAction::Change(path)), |
|
|
Err(err) => { |
|
|
warn!( |
|
|
context, |
|
|
"Could not decode and save avatar to blob file: {:#}", err, |
|
|
); |
|
|
None |
|
|
} |
|
|
} |
|
|
} else { |
|
|
|
|
|
|
|
|
let mut i = 0; |
|
|
while let Some(part) = self.parts.get_mut(i) { |
|
|
if let Some(part_filename) = &part.org_filename { |
|
|
if part_filename == &header_value { |
|
|
if let Some(blob) = part.param.get(Param::File) { |
|
|
let res = Some(AvatarAction::Change(blob.to_string())); |
|
|
self.parts.remove(i); |
|
|
return res; |
|
|
} |
|
|
break; |
|
|
} |
|
|
} |
|
|
i += 1; |
|
|
} |
|
|
None |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
pub fn was_encrypted(&self) -> bool { |
|
|
!self.signatures.is_empty() |
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
pub(crate) fn has_chat_version(&self) -> bool { |
|
|
self.headers.contains_key("chat-version") |
|
|
} |
|
|
|
|
|
pub(crate) fn get_subject(&self) -> Option<String> { |
|
|
self.get_header(HeaderDef::Subject) |
|
|
.map(|s| s.trim_start()) |
|
|
.filter(|s| !s.is_empty()) |
|
|
.map(|s| s.to_string()) |
|
|
} |
|
|
|
|
|
pub fn get_header(&self, headerdef: HeaderDef) -> Option<&str> { |
|
|
self.headers |
|
|
.get(headerdef.get_headername()) |
|
|
.map(|s| s.as_str()) |
|
|
} |
|
|
|
|
|
|
|
|
pub fn get_chat_group_id(&self) -> Option<&str> { |
|
|
self.get_header(HeaderDef::ChatGroupId) |
|
|
.filter(|s| validate_id(s)) |
|
|
} |
|
|
|
|
|
async fn parse_mime_recursive<'a>( |
|
|
&'a mut self, |
|
|
context: &'a Context, |
|
|
mail: &'a mailparse::ParsedMail<'a>, |
|
|
is_related: bool, |
|
|
) -> Result<bool> { |
|
|
enum MimeS { |
|
|
Multiple, |
|
|
Single, |
|
|
Message, |
|
|
} |
|
|
|
|
|
let mimetype = mail.ctype.mimetype.to_lowercase(); |
|
|
|
|
|
let m = if mimetype.starts_with("multipart") { |
|
|
if mail.ctype.params.contains_key("boundary") { |
|
|
MimeS::Multiple |
|
|
} else { |
|
|
MimeS::Single |
|
|
} |
|
|
} else if mimetype.starts_with("message") { |
|
|
if mimetype == "message/rfc822" && !is_attachment_disposition(mail) { |
|
|
MimeS::Message |
|
|
} else { |
|
|
MimeS::Single |
|
|
} |
|
|
} else { |
|
|
MimeS::Single |
|
|
}; |
|
|
|
|
|
let is_related = is_related || mimetype == "multipart/related"; |
|
|
match m { |
|
|
MimeS::Multiple => Box::pin(self.handle_multiple(context, mail, is_related)).await, |
|
|
MimeS::Message => { |
|
|
let raw = mail.get_body_raw()?; |
|
|
if raw.is_empty() { |
|
|
return Ok(false); |
|
|
} |
|
|
let mail = mailparse::parse_mail(&raw).context("failed to parse mail")?; |
|
|
|
|
|
Box::pin(self.parse_mime_recursive(context, &mail, is_related)).await |
|
|
} |
|
|
MimeS::Single => { |
|
|
self.add_single_part_if_known(context, mail, is_related) |
|
|
.await |
|
|
} |
|
|
} |
|
|
} |
|
|
|
|
|
async fn handle_multiple( |
|
|
&mut self, |
|
|
context: &Context, |
|
|
mail: &mailparse::ParsedMail<'_>, |
|
|
is_related: bool, |
|
|
) -> Result<bool> { |
|
|
let mut any_part_added = false; |
|
|
let mimetype = get_mime_type(mail, &get_attachment_filename(context, mail)?)?.0; |
|
|
match (mimetype.type_(), mimetype.subtype().as_str()) { |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
(mime::MULTIPART, "alternative") => { |
|
|
for cur_data in &mail.subparts { |
|
|
let mime_type = |
|
|
get_mime_type(cur_data, &get_attachment_filename(context, cur_data)?)?.0; |
|
|
if mime_type == "multipart/mixed" || mime_type == "multipart/related" { |
|
|
any_part_added = self |
|
|
.parse_mime_recursive(context, cur_data, is_related) |
|
|
.await?; |
|
|
break; |
|
|
} |
|
|
} |
|
|
if !any_part_added { |
|
|
|
|
|
for cur_data in &mail.subparts { |
|
|
if get_mime_type(cur_data, &get_attachment_filename(context, cur_data)?)? |
|
|
.0 |
|
|
.type_() |
|
|
== mime::TEXT |
|
|
{ |
|
|
any_part_added = self |
|
|
.parse_mime_recursive(context, cur_data, is_related) |
|
|
.await?; |
|
|
break; |
|
|
} |
|
|
} |
|
|
} |
|
|
if !any_part_added { |
|
|
|
|
|
for cur_part in &mail.subparts { |
|
|
if self |
|
|
.parse_mime_recursive(context, cur_part, is_related) |
|
|
.await? |
|
|
{ |
|
|
any_part_added = true; |
|
|
break; |
|
|
} |
|
|
} |
|
|
} |
|
|
if any_part_added && mail.subparts.len() > 1 { |
|
|
|
|
|
|
|
|
|
|
|
self.is_mime_modified = true; |
|
|
} |
|
|
} |
|
|
(mime::MULTIPART, "signed") => { |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
if let Some(first) = mail.subparts.first() { |
|
|
any_part_added = self |
|
|
.parse_mime_recursive(context, first, is_related) |
|
|
.await?; |
|
|
} |
|
|
} |
|
|
(mime::MULTIPART, "report") => { |
|
|
|
|
|
if mail.subparts.len() >= 2 { |
|
|
match mail.ctype.params.get("report-type").map(|s| s as &str) { |
|
|
Some("disposition-notification") => { |
|
|
if let Some(report) = self.process_report(context, mail)? { |
|
|
self.mdn_reports.push(report); |
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
let part = Part { |
|
|
typ: Viewtype::Unknown, |
|
|
..Default::default() |
|
|
}; |
|
|
self.parts.push(part); |
|
|
|
|
|
any_part_added = true; |
|
|
} |
|
|
|
|
|
Some("delivery-status") | None => { |
|
|
if let Some(report) = self.process_delivery_status(context, mail)? { |
|
|
self.delivery_report = Some(report); |
|
|
} |
|
|
|
|
|
|
|
|
for cur_data in &mail.subparts { |
|
|
if self |
|
|
.parse_mime_recursive(context, cur_data, is_related) |
|
|
.await? |
|
|
{ |
|
|
any_part_added = true; |
|
|
} |
|
|
} |
|
|
} |
|
|
Some("multi-device-sync") => { |
|
|
if let Some(second) = mail.subparts.get(1) { |
|
|
self.add_single_part_if_known(context, second, is_related) |
|
|
.await?; |
|
|
} |
|
|
} |
|
|
Some("status-update") => { |
|
|
if let Some(second) = mail.subparts.get(1) { |
|
|
self.add_single_part_if_known(context, second, is_related) |
|
|
.await?; |
|
|
} |
|
|
} |
|
|
Some(_) => { |
|
|
for cur_data in &mail.subparts { |
|
|
if self |
|
|
.parse_mime_recursive(context, cur_data, is_related) |
|
|
.await? |
|
|
{ |
|
|
any_part_added = true; |
|
|
} |
|
|
} |
|
|
} |
|
|
} |
|
|
} |
|
|
} |
|
|
_ => { |
|
|
|
|
|
|
|
|
for cur_data in &mail.subparts { |
|
|
if self |
|
|
.parse_mime_recursive(context, cur_data, is_related) |
|
|
.await? |
|
|
{ |
|
|
any_part_added = true; |
|
|
} |
|
|
} |
|
|
} |
|
|
} |
|
|
|
|
|
Ok(any_part_added) |
|
|
} |
|
|
|
|
|
|
|
|
async fn add_single_part_if_known( |
|
|
&mut self, |
|
|
context: &Context, |
|
|
mail: &mailparse::ParsedMail<'_>, |
|
|
is_related: bool, |
|
|
) -> Result<bool> { |
|
|
|
|
|
let filename = get_attachment_filename(context, mail)?; |
|
|
let (mime_type, msg_type) = get_mime_type(mail, &filename)?; |
|
|
let raw_mime = mail.ctype.mimetype.to_lowercase(); |
|
|
|
|
|
let old_part_count = self.parts.len(); |
|
|
|
|
|
match filename { |
|
|
Some(filename) => { |
|
|
self.do_add_single_file_part( |
|
|
context, |
|
|
msg_type, |
|
|
mime_type, |
|
|
&raw_mime, |
|
|
&mail.get_body_raw()?, |
|
|
&filename, |
|
|
is_related, |
|
|
) |
|
|
.await?; |
|
|
} |
|
|
None => { |
|
|
match mime_type.type_() { |
|
|
mime::IMAGE | mime::AUDIO | mime::VIDEO | mime::APPLICATION => { |
|
|
warn!(context, "Missing attachment"); |
|
|
return Ok(false); |
|
|
} |
|
|
mime::TEXT |
|
|
if mail.get_content_disposition().disposition |
|
|
== DispositionType::Extension("reaction".to_string()) => |
|
|
{ |
|
|
|
|
|
let decoded_data = match mail.get_body() { |
|
|
Ok(decoded_data) => decoded_data, |
|
|
Err(err) => { |
|
|
warn!(context, "Invalid body parsed {:#}", err); |
|
|
|
|
|
return Ok(false); |
|
|
} |
|
|
}; |
|
|
|
|
|
let part = Part { |
|
|
typ: Viewtype::Text, |
|
|
mimetype: Some(mime_type), |
|
|
msg: decoded_data, |
|
|
is_reaction: true, |
|
|
..Default::default() |
|
|
}; |
|
|
self.do_add_single_part(part); |
|
|
return Ok(true); |
|
|
} |
|
|
mime::TEXT | mime::HTML => { |
|
|
let decoded_data = match mail.get_body() { |
|
|
Ok(decoded_data) => decoded_data, |
|
|
Err(err) => { |
|
|
warn!(context, "Invalid body parsed {:#}", err); |
|
|
|
|
|
return Ok(false); |
|
|
} |
|
|
}; |
|
|
|
|
|
let is_plaintext = mime_type == mime::TEXT_PLAIN; |
|
|
let mut dehtml_failed = false; |
|
|
|
|
|
let SimplifiedText { |
|
|
text: simplified_txt, |
|
|
is_forwarded, |
|
|
is_cut, |
|
|
top_quote, |
|
|
footer, |
|
|
} = if decoded_data.is_empty() { |
|
|
Default::default() |
|
|
} else { |
|
|
let is_html = mime_type == mime::TEXT_HTML; |
|
|
if is_html { |
|
|
self.is_mime_modified = true; |
|
|
if let Some(text) = dehtml(&decoded_data) { |
|
|
text |
|
|
} else { |
|
|
dehtml_failed = true; |
|
|
SimplifiedText { |
|
|
text: decoded_data.clone(), |
|
|
..Default::default() |
|
|
} |
|
|
} |
|
|
} else { |
|
|
simplify(decoded_data.clone(), self.has_chat_version()) |
|
|
} |
|
|
}; |
|
|
|
|
|
self.is_mime_modified = self.is_mime_modified |
|
|
|| ((is_forwarded || is_cut || top_quote.is_some()) |
|
|
&& !self.has_chat_version()); |
|
|
|
|
|
let is_format_flowed = if let Some(format) = mail.ctype.params.get("format") |
|
|
{ |
|
|
format.as_str().to_ascii_lowercase() == "flowed" |
|
|
} else { |
|
|
false |
|
|
}; |
|
|
|
|
|
let (simplified_txt, simplified_quote) = if mime_type.type_() == mime::TEXT |
|
|
&& mime_type.subtype() == mime::PLAIN |
|
|
&& is_format_flowed |
|
|
{ |
|
|
let delsp = if let Some(delsp) = mail.ctype.params.get("delsp") { |
|
|
delsp.as_str().to_ascii_lowercase() == "yes" |
|
|
} else { |
|
|
false |
|
|
}; |
|
|
let unflowed_text = unformat_flowed(&simplified_txt, delsp); |
|
|
let unflowed_quote = top_quote.map(|q| unformat_flowed(&q, delsp)); |
|
|
(unflowed_text, unflowed_quote) |
|
|
} else { |
|
|
(simplified_txt, top_quote) |
|
|
}; |
|
|
|
|
|
let is_bot = context.get_config_bool(Config::Bot).await?; |
|
|
|
|
|
let simplified_txt = if is_bot { |
|
|
simplified_txt |
|
|
} else { |
|
|
|
|
|
let (simplified_txt, was_truncated) = truncate_by_lines( |
|
|
simplified_txt, |
|
|
DC_DESIRED_TEXT_LINES, |
|
|
DC_DESIRED_TEXT_LINE_LEN, |
|
|
); |
|
|
if was_truncated { |
|
|
self.is_mime_modified = was_truncated; |
|
|
} |
|
|
simplified_txt |
|
|
}; |
|
|
|
|
|
if !simplified_txt.is_empty() || simplified_quote.is_some() { |
|
|
let mut part = Part { |
|
|
dehtml_failed, |
|
|
typ: Viewtype::Text, |
|
|
mimetype: Some(mime_type), |
|
|
msg: simplified_txt, |
|
|
..Default::default() |
|
|
}; |
|
|
if let Some(quote) = simplified_quote { |
|
|
part.param.set(Param::Quote, quote); |
|
|
} |
|
|
part.msg_raw = Some(decoded_data); |
|
|
self.do_add_single_part(part); |
|
|
} |
|
|
|
|
|
if is_forwarded { |
|
|
self.is_forwarded = true; |
|
|
} |
|
|
|
|
|
if self.footer.is_none() && is_plaintext { |
|
|
self.footer = Some(footer.unwrap_or_default()); |
|
|
} |
|
|
} |
|
|
_ => {} |
|
|
} |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
Ok(self.parts.len() > old_part_count) |
|
|
} |
|
|
|
|
|
#[allow(clippy::too_many_arguments)] |
|
|
async fn do_add_single_file_part( |
|
|
&mut self, |
|
|
context: &Context, |
|
|
msg_type: Viewtype, |
|
|
mime_type: Mime, |
|
|
raw_mime: &str, |
|
|
decoded_data: &[u8], |
|
|
filename: &str, |
|
|
is_related: bool, |
|
|
) -> Result<()> { |
|
|
if decoded_data.is_empty() { |
|
|
return Ok(()); |
|
|
} |
|
|
if let Some(peerstate) = &mut self.decryption_info.peerstate { |
|
|
if peerstate.prefer_encrypt != EncryptPreference::Mutual |
|
|
&& mime_type.type_() == mime::APPLICATION |
|
|
&& mime_type.subtype().as_str() == "pgp-keys" |
|
|
&& Self::try_set_peer_key_from_file_part(context, peerstate, decoded_data).await? |
|
|
{ |
|
|
return Ok(()); |
|
|
} |
|
|
} |
|
|
let msg_type = if context |
|
|
.is_webxdc_file(filename, decoded_data) |
|
|
.await |
|
|
.unwrap_or(false) |
|
|
{ |
|
|
Viewtype::Webxdc |
|
|
} else if filename.ends_with(".kml") { |
|
|
|
|
|
|
|
|
if filename.starts_with("location") || filename.starts_with("message") { |
|
|
let parsed = location::Kml::parse(decoded_data) |
|
|
.map_err(|err| { |
|
|
warn!(context, "failed to parse kml part: {:#}", err); |
|
|
}) |
|
|
.ok(); |
|
|
if filename.starts_with("location") { |
|
|
self.location_kml = parsed; |
|
|
} else { |
|
|
self.message_kml = parsed; |
|
|
} |
|
|
return Ok(()); |
|
|
} |
|
|
msg_type |
|
|
} else if filename == "multi-device-sync.json" { |
|
|
if !context.get_config_bool(Config::SyncMsgs).await? { |
|
|
return Ok(()); |
|
|
} |
|
|
let serialized = String::from_utf8_lossy(decoded_data) |
|
|
.parse() |
|
|
.unwrap_or_default(); |
|
|
self.sync_items = context |
|
|
.parse_sync_items(serialized) |
|
|
.map_err(|err| { |
|
|
warn!(context, "failed to parse sync data: {:#}", err); |
|
|
}) |
|
|
.ok(); |
|
|
return Ok(()); |
|
|
} else if filename == "status-update.json" { |
|
|
let serialized = String::from_utf8_lossy(decoded_data) |
|
|
.parse() |
|
|
.unwrap_or_default(); |
|
|
self.webxdc_status_update = Some(serialized); |
|
|
return Ok(()); |
|
|
} else { |
|
|
msg_type |
|
|
}; |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
let blob = match BlobObject::create(context, filename, decoded_data).await { |
|
|
Ok(blob) => blob, |
|
|
Err(err) => { |
|
|
error!( |
|
|
context, |
|
|
"Could not add blob for mime part {}, error {:#}", filename, err |
|
|
); |
|
|
return Ok(()); |
|
|
} |
|
|
}; |
|
|
info!(context, "added blobfile: {:?}", blob.as_name()); |
|
|
|
|
|
|
|
|
let mut part = Part::default(); |
|
|
if mime_type.type_() == mime::IMAGE { |
|
|
if let Ok((width, height)) = get_filemeta(decoded_data) { |
|
|
part.param.set_int(Param::Width, width as i32); |
|
|
part.param.set_int(Param::Height, height as i32); |
|
|
} |
|
|
} |
|
|
|
|
|
part.typ = msg_type; |
|
|
part.org_filename = Some(filename.to_string()); |
|
|
part.mimetype = Some(mime_type); |
|
|
part.bytes = decoded_data.len(); |
|
|
part.param.set(Param::File, blob.as_name()); |
|
|
part.param.set(Param::Filename, filename); |
|
|
part.param.set(Param::MimeType, raw_mime); |
|
|
part.is_related = is_related; |
|
|
|
|
|
self.do_add_single_part(part); |
|
|
Ok(()) |
|
|
} |
|
|
|
|
|
|
|
|
async fn try_set_peer_key_from_file_part( |
|
|
context: &Context, |
|
|
peerstate: &mut Peerstate, |
|
|
decoded_data: &[u8], |
|
|
) -> Result<bool> { |
|
|
let key = match str::from_utf8(decoded_data) { |
|
|
Err(err) => { |
|
|
warn!(context, "PGP key attachment is not a UTF-8 file: {}", err); |
|
|
return Ok(false); |
|
|
} |
|
|
Ok(key) => key, |
|
|
}; |
|
|
let key = match SignedPublicKey::from_asc(key) { |
|
|
Err(err) => { |
|
|
warn!( |
|
|
context, |
|
|
"PGP key attachment is not an ASCII-armored file: {:#}", err |
|
|
); |
|
|
return Ok(false); |
|
|
} |
|
|
Ok((key, _)) => key, |
|
|
}; |
|
|
if let Err(err) = key.verify() { |
|
|
warn!(context, "attached PGP key verification failed: {}", err); |
|
|
return Ok(false); |
|
|
} |
|
|
if !key.details.users.iter().any(|user| { |
|
|
user.id |
|
|
.id() |
|
|
.ends_with((String::from("<") + &peerstate.addr + ">").as_bytes()) |
|
|
}) { |
|
|
return Ok(false); |
|
|
} |
|
|
if let Some(curr_key) = &peerstate.public_key { |
|
|
if key != *curr_key && peerstate.prefer_encrypt != EncryptPreference::Reset { |
|
|
|
|
|
|
|
|
|
|
|
warn!( |
|
|
context, |
|
|
"not using attached PGP key for peer '{}' because another one is already set \ |
|
|
with prefer-encrypt={}", |
|
|
peerstate.addr, |
|
|
peerstate.prefer_encrypt, |
|
|
); |
|
|
return Ok(false); |
|
|
} |
|
|
} |
|
|
peerstate.public_key = Some(key); |
|
|
info!( |
|
|
context, |
|
|
"using attached PGP key for peer '{}' with prefer-encrypt=mutual", peerstate.addr, |
|
|
); |
|
|
peerstate.prefer_encrypt = EncryptPreference::Mutual; |
|
|
peerstate.save_to_db(&context.sql).await?; |
|
|
Ok(true) |
|
|
} |
|
|
|
|
|
fn do_add_single_part(&mut self, mut part: Part) { |
|
|
if self.was_encrypted() { |
|
|
part.param.set_int(Param::GuaranteeE2ee, 1); |
|
|
} |
|
|
self.parts.push(part); |
|
|
} |
|
|
|
|
|
pub(crate) fn get_mailinglist_header(&self) -> Option<&str> { |
|
|
if let Some(list_id) = self.get_header(HeaderDef::ListId) { |
|
|
|
|
|
|
|
|
return Some(list_id); |
|
|
} else if let Some(sender) = self.get_header(HeaderDef::Sender) { |
|
|
|
|
|
|
|
|
if let Some(precedence) = self.get_header(HeaderDef::Precedence) { |
|
|
if precedence == "list" || precedence == "bulk" { |
|
|
|
|
|
|
|
|
|
|
|
return Some(sender); |
|
|
} |
|
|
} |
|
|
} |
|
|
None |
|
|
} |
|
|
|
|
|
pub(crate) fn is_mailinglist_message(&self) -> bool { |
|
|
self.get_mailinglist_header().is_some() |
|
|
} |
|
|
|
|
|
|
|
|
pub(crate) fn is_schleuder_message(&self) -> bool { |
|
|
if let Some(list_help) = self.get_header(HeaderDef::ListHelp) { |
|
|
list_help == "<https://schleuder.org/>" |
|
|
} else { |
|
|
false |
|
|
} |
|
|
} |
|
|
|
|
|
pub fn replace_msg_by_error(&mut self, error_msg: &str) { |
|
|
self.is_system_message = SystemMessage::Unknown; |
|
|
if let Some(part) = self.parts.first_mut() { |
|
|
part.typ = Viewtype::Text; |
|
|
part.msg = format!("[{error_msg}]"); |
|
|
self.parts.truncate(1); |
|
|
} |
|
|
} |
|
|
|
|
|
pub(crate) fn get_rfc724_mid(&self) -> Option<String> { |
|
|
self.get_header(HeaderDef::MessageId) |
|
|
.and_then(|msgid| parse_message_id(msgid).ok()) |
|
|
} |
|
|
|
|
|
fn remove_secured_headers(headers: &mut HashMap<String, String>) { |
|
|
headers.remove("secure-join-fingerprint"); |
|
|
headers.remove("secure-join-auth"); |
|
|
headers.remove("chat-verified"); |
|
|
headers.remove("autocrypt-gossip"); |
|
|
|
|
|
|
|
|
if let Some(secure_join) = headers.remove("secure-join") { |
|
|
if secure_join == "vc-request" || secure_join == "vg-request" { |
|
|
headers.insert("secure-join".to_string(), secure_join); |
|
|
} |
|
|
} |
|
|
} |
|
|
|
|
|
fn merge_headers( |
|
|
context: &Context, |
|
|
headers: &mut HashMap<String, String>, |
|
|
recipients: &mut Vec<SingleInfo>, |
|
|
from: &mut Option<SingleInfo>, |
|
|
list_post: &mut Option<String>, |
|
|
chat_disposition_notification_to: &mut Option<SingleInfo>, |
|
|
fields: &[mailparse::MailHeader<'_>], |
|
|
) { |
|
|
for field in fields { |
|
|
|
|
|
let key = field.get_key().to_lowercase(); |
|
|
if !headers.contains_key(&key) || |
|
|
is_known(&key) || key.starts_with("chat-") |
|
|
{ |
|
|
if key == HeaderDef::ChatDispositionNotificationTo.get_headername() { |
|
|
match addrparse_header(field) { |
|
|
Ok(addrlist) => { |
|
|
*chat_disposition_notification_to = addrlist.extract_single_info(); |
|
|
} |
|
|
Err(e) => warn!(context, "Could not read {} address: {}", key, e), |
|
|
} |
|
|
} else { |
|
|
let value = field.get_value(); |
|
|
headers.insert(key.to_string(), value); |
|
|
} |
|
|
} |
|
|
} |
|
|
let recipients_new = get_recipients(fields); |
|
|
if !recipients_new.is_empty() { |
|
|
*recipients = recipients_new; |
|
|
} |
|
|
let from_new = get_from(fields); |
|
|
if from_new.is_some() { |
|
|
*from = from_new; |
|
|
} |
|
|
let list_post_new = get_list_post(fields); |
|
|
if list_post_new.is_some() { |
|
|
*list_post = list_post_new; |
|
|
} |
|
|
} |
|
|
|
|
|
fn process_report( |
|
|
&self, |
|
|
context: &Context, |
|
|
report: &mailparse::ParsedMail<'_>, |
|
|
) -> Result<Option<Report>> { |
|
|
|
|
|
let report_body = if let Some(subpart) = report.subparts.get(1) { |
|
|
subpart.get_body_raw()? |
|
|
} else { |
|
|
bail!("Report does not have second MIME part"); |
|
|
}; |
|
|
let (report_fields, _) = mailparse::parse_headers(&report_body)?; |
|
|
|
|
|
|
|
|
if report_fields |
|
|
.get_header_value(HeaderDef::Disposition) |
|
|
.is_none() |
|
|
{ |
|
|
warn!( |
|
|
context, |
|
|
"Ignoring unknown disposition-notification, Message-Id: {:?}.", |
|
|
report_fields.get_header_value(HeaderDef::MessageId) |
|
|
); |
|
|
return Ok(None); |
|
|
}; |
|
|
|
|
|
let original_message_id = report_fields |
|
|
.get_header_value(HeaderDef::OriginalMessageId) |
|
|
|
|
|
|
|
|
.or_else(|| report.headers.get_header_value(HeaderDef::InReplyTo)) |
|
|
.and_then(|v| parse_message_id(&v).ok()); |
|
|
let additional_message_ids = report_fields |
|
|
.get_header_value(HeaderDef::AdditionalMessageIds) |
|
|
.map_or_else(Vec::new, |v| { |
|
|
v.split(' ') |
|
|
.filter_map(|s| parse_message_id(s).ok()) |
|
|
.collect() |
|
|
}); |
|
|
|
|
|
Ok(Some(Report { |
|
|
original_message_id, |
|
|
additional_message_ids, |
|
|
})) |
|
|
} |
|
|
|
|
|
fn process_delivery_status( |
|
|
&self, |
|
|
context: &Context, |
|
|
report: &mailparse::ParsedMail<'_>, |
|
|
) -> Result<Option<DeliveryReport>> { |
|
|
|
|
|
let mut failure = true; |
|
|
|
|
|
if let Some(status_part) = report.subparts.get(1) { |
|
|
|
|
|
|
|
|
if status_part.ctype.mimetype != "message/delivery-status" |
|
|
&& status_part.ctype.mimetype != "message/global-delivery-status" |
|
|
{ |
|
|
warn!(context, "Second part of Delivery Status Notification is not message/delivery-status or message/global-delivery-status, ignoring"); |
|
|
return Ok(None); |
|
|
} |
|
|
|
|
|
let status_body = status_part.get_body_raw()?; |
|
|
|
|
|
|
|
|
let (_, sz) = mailparse::parse_headers(&status_body)?; |
|
|
|
|
|
|
|
|
if let Some(status_body) = status_body.get(sz..) { |
|
|
let (status_fields, _) = mailparse::parse_headers(status_body)?; |
|
|
if let Some(action) = status_fields.get_first_value("action") { |
|
|
if action != "failed" { |
|
|
info!(context, "DSN with {:?} action", action); |
|
|
failure = false; |
|
|
} |
|
|
} else { |
|
|
warn!(context, "DSN without action"); |
|
|
} |
|
|
} else { |
|
|
warn!(context, "DSN without per-recipient fields"); |
|
|
} |
|
|
} else { |
|
|
|
|
|
return Ok(None); |
|
|
} |
|
|
|
|
|
|
|
|
if let Some(original_msg) = report.subparts.get(2).filter(|p| { |
|
|
p.ctype.mimetype.contains("rfc822") |
|
|
|| p.ctype.mimetype == "message/global" |
|
|
|| p.ctype.mimetype == "message/global-headers" |
|
|
}) { |
|
|
let report_body = original_msg.get_body_raw()?; |
|
|
let (report_fields, _) = mailparse::parse_headers(&report_body)?; |
|
|
|
|
|
if let Some(original_message_id) = report_fields |
|
|
.get_header_value(HeaderDef::MessageId) |
|
|
.and_then(|v| parse_message_id(&v).ok()) |
|
|
{ |
|
|
let mut to_list = |
|
|
get_all_addresses_from_header(&report.headers, "x-failed-recipients"); |
|
|
let to = if to_list.len() == 1 { |
|
|
Some(to_list.pop().unwrap()) |
|
|
} else { |
|
|
None |
|
|
}; |
|
|
|
|
|
return Ok(Some(DeliveryReport { |
|
|
rfc724_mid: original_message_id, |
|
|
failed_recipient: to.map(|s| s.addr), |
|
|
failure, |
|
|
})); |
|
|
} |
|
|
|
|
|
warn!( |
|
|
context, |
|
|
"ignoring unknown ndn-notification, Message-Id: {:?}", |
|
|
report_fields.get_header_value(HeaderDef::MessageId) |
|
|
); |
|
|
} |
|
|
|
|
|
Ok(None) |
|
|
} |
|
|
|
|
|
fn maybe_remove_bad_parts(&mut self) { |
|
|
let good_parts = self.parts.iter().filter(|p| !p.dehtml_failed).count(); |
|
|
if good_parts == 0 { |
|
|
|
|
|
self.parts.truncate(1); |
|
|
} else if good_parts < self.parts.len() { |
|
|
self.parts.retain(|p| !p.dehtml_failed); |
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
if !self.has_chat_version() && self.is_mime_modified { |
|
|
fn is_related_image(p: &&Part) -> bool { |
|
|
(p.typ == Viewtype::Image || p.typ == Viewtype::Gif) && p.is_related |
|
|
} |
|
|
let related_image_cnt = self.parts.iter().filter(is_related_image).count(); |
|
|
if related_image_cnt > 1 { |
|
|
let mut is_first_image = true; |
|
|
self.parts.retain(|p| { |
|
|
let retain = is_first_image || !is_related_image(&p); |
|
|
if p.typ == Viewtype::Image || p.typ == Viewtype::Gif { |
|
|
is_first_image = false; |
|
|
} |
|
|
retain |
|
|
}); |
|
|
} |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
fn maybe_remove_inline_mailinglist_footer(&mut self) { |
|
|
if self.is_mailinglist_message() && !self.is_schleuder_message() { |
|
|
let text_part_cnt = self |
|
|
.parts |
|
|
.iter() |
|
|
.filter(|p| p.typ == Viewtype::Text) |
|
|
.count(); |
|
|
if text_part_cnt == 2 { |
|
|
if let Some(last_part) = self.parts.last() { |
|
|
if last_part.typ == Viewtype::Text { |
|
|
self.parts.pop(); |
|
|
} |
|
|
} |
|
|
} |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#[allow(clippy::indexing_slicing)] |
|
|
async fn heuristically_parse_ndn(&mut self, context: &Context) { |
|
|
let maybe_ndn = if let Some(from) = self.get_header(HeaderDef::From_) { |
|
|
let from = from.to_ascii_lowercase(); |
|
|
from.contains("mailer-daemon") || from.contains("mail-daemon") |
|
|
} else { |
|
|
false |
|
|
}; |
|
|
if maybe_ndn && self.delivery_report.is_none() { |
|
|
for original_message_id in self |
|
|
.parts |
|
|
.iter() |
|
|
.filter_map(|part| part.msg_raw.as_ref()) |
|
|
.flat_map(|part| part.lines()) |
|
|
.filter_map(|line| line.split_once("Message-ID:")) |
|
|
.filter_map(|(_, message_id)| parse_message_id(message_id).ok()) |
|
|
{ |
|
|
if let Ok(Some(_)) = message::rfc724_mid_exists(context, &original_message_id).await |
|
|
{ |
|
|
self.delivery_report = Some(DeliveryReport { |
|
|
rfc724_mid: original_message_id, |
|
|
failed_recipient: None, |
|
|
failure: true, |
|
|
}) |
|
|
} |
|
|
} |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
pub async fn handle_reports(&self, context: &Context, from_id: ContactId, parts: &[Part]) { |
|
|
for report in &self.mdn_reports { |
|
|
for original_message_id in report |
|
|
.original_message_id |
|
|
.iter() |
|
|
.chain(&report.additional_message_ids) |
|
|
{ |
|
|
if let Err(err) = |
|
|
handle_mdn(context, from_id, original_message_id, self.timestamp_sent).await |
|
|
{ |
|
|
warn!(context, "Could not handle MDN: {err:#}."); |
|
|
} |
|
|
} |
|
|
} |
|
|
|
|
|
if let Some(delivery_report) = &self.delivery_report { |
|
|
if delivery_report.failure { |
|
|
let error = parts |
|
|
.iter() |
|
|
.find(|p| p.typ == Viewtype::Text) |
|
|
.map(|p| p.msg.clone()); |
|
|
if let Err(err) = handle_ndn(context, delivery_report, error).await { |
|
|
warn!(context, "Could not handle NDN: {err:#}."); |
|
|
} |
|
|
} |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
pub async fn get_parent_timestamp(&self, context: &Context) -> Result<Option<i64>> { |
|
|
let parent_timestamp = if let Some(field) = self |
|
|
.get_header(HeaderDef::InReplyTo) |
|
|
.and_then(|msgid| parse_message_id(msgid).ok()) |
|
|
{ |
|
|
context |
|
|
.sql |
|
|
.query_get_value("SELECT timestamp FROM msgs WHERE rfc724_mid=?", (field,)) |
|
|
.await? |
|
|
} else { |
|
|
None |
|
|
}; |
|
|
Ok(parent_timestamp) |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
async fn update_gossip_peerstates( |
|
|
context: &Context, |
|
|
message_time: i64, |
|
|
from: &str, |
|
|
recipients: &[SingleInfo], |
|
|
gossip_headers: Vec<String>, |
|
|
) -> Result<HashMap<String, SignedPublicKey>> { |
|
|
|
|
|
let mut gossiped_keys: HashMap<String, SignedPublicKey> = Default::default(); |
|
|
|
|
|
for value in &gossip_headers { |
|
|
let header = match value.parse::<Aheader>() { |
|
|
Ok(header) => header, |
|
|
Err(err) => { |
|
|
warn!(context, "Failed parsing Autocrypt-Gossip header: {}", err); |
|
|
continue; |
|
|
} |
|
|
}; |
|
|
|
|
|
if !recipients |
|
|
.iter() |
|
|
.any(|info| addr_cmp(&info.addr, &header.addr)) |
|
|
{ |
|
|
warn!( |
|
|
context, |
|
|
"Ignoring gossiped \"{}\" as the address is not in To/Cc list.", &header.addr, |
|
|
); |
|
|
continue; |
|
|
} |
|
|
if addr_cmp(from, &header.addr) { |
|
|
|
|
|
warn!( |
|
|
context, |
|
|
"Ignoring gossiped \"{}\" as it equals the From address", &header.addr, |
|
|
); |
|
|
continue; |
|
|
} |
|
|
|
|
|
let peerstate; |
|
|
if let Some(mut p) = Peerstate::from_addr(context, &header.addr).await? { |
|
|
p.apply_gossip(&header, message_time); |
|
|
p.save_to_db(&context.sql).await?; |
|
|
peerstate = p; |
|
|
} else { |
|
|
let p = Peerstate::from_gossip(&header, message_time); |
|
|
p.save_to_db(&context.sql).await?; |
|
|
peerstate = p; |
|
|
}; |
|
|
peerstate |
|
|
.handle_fingerprint_change(context, message_time) |
|
|
.await?; |
|
|
|
|
|
gossiped_keys.insert(header.addr.to_lowercase(), header.public_key); |
|
|
} |
|
|
|
|
|
Ok(gossiped_keys) |
|
|
} |
|
|
|
|
|
|
|
|
#[derive(Debug)] |
|
|
pub(crate) struct Report { |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
original_message_id: Option<String>, |
|
|
|
|
|
additional_message_ids: Vec<String>, |
|
|
} |
|
|
|
|
|
|
|
|
#[derive(Debug)] |
|
|
pub(crate) struct DeliveryReport { |
|
|
pub rfc724_mid: String, |
|
|
pub failed_recipient: Option<String>, |
|
|
pub failure: bool, |
|
|
} |
|
|
|
|
|
#[allow(clippy::indexing_slicing)] |
|
|
pub(crate) fn parse_message_ids(ids: &str) -> Vec<String> { |
|
|
|
|
|
let mut msgids = Vec::new(); |
|
|
for id in ids.split_whitespace() { |
|
|
let mut id = id.to_string(); |
|
|
if id.starts_with('<') { |
|
|
id = id[1..].to_string(); |
|
|
} |
|
|
if id.ends_with('>') { |
|
|
id = id[..id.len() - 1].to_string(); |
|
|
} |
|
|
if !id.is_empty() { |
|
|
msgids.push(id); |
|
|
} |
|
|
} |
|
|
msgids |
|
|
} |
|
|
|
|
|
pub(crate) fn parse_message_id(ids: &str) -> Result<String> { |
|
|
if let Some(id) = parse_message_ids(ids).first() { |
|
|
Ok(id.to_string()) |
|
|
} else { |
|
|
bail!("could not parse message_id: {}", ids); |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
fn is_known(key: &str) -> bool { |
|
|
matches!( |
|
|
key, |
|
|
"return-path" |
|
|
| "date" |
|
|
| "from" |
|
|
| "sender" |
|
|
| "reply-to" |
|
|
| "to" |
|
|
| "cc" |
|
|
| "bcc" |
|
|
| "message-id" |
|
|
| "in-reply-to" |
|
|
| "references" |
|
|
| "subject" |
|
|
| "secure-join" |
|
|
) |
|
|
} |
|
|
|
|
|
|
|
|
#[derive(Debug, Default, Clone)] |
|
|
pub struct Part { |
|
|
|
|
|
pub typ: Viewtype, |
|
|
|
|
|
|
|
|
pub mimetype: Option<Mime>, |
|
|
|
|
|
|
|
|
pub msg: String, |
|
|
|
|
|
|
|
|
pub msg_raw: Option<String>, |
|
|
|
|
|
|
|
|
pub bytes: usize, |
|
|
|
|
|
|
|
|
pub param: Params, |
|
|
|
|
|
|
|
|
pub(crate) org_filename: Option<String>, |
|
|
|
|
|
|
|
|
pub error: Option<String>, |
|
|
|
|
|
|
|
|
pub(crate) dehtml_failed: bool, |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
pub(crate) is_related: bool, |
|
|
|
|
|
|
|
|
pub(crate) is_reaction: bool, |
|
|
} |
|
|
|
|
|
|
|
|
fn get_mime_type( |
|
|
mail: &mailparse::ParsedMail<'_>, |
|
|
filename: &Option<String>, |
|
|
) -> Result<(Mime, Viewtype)> { |
|
|
let mimetype = mail.ctype.mimetype.parse::<Mime>()?; |
|
|
|
|
|
let viewtype = match mimetype.type_() { |
|
|
mime::TEXT => match mimetype.subtype() { |
|
|
mime::VCARD if is_valid_deltachat_vcard(mail) => Viewtype::Vcard, |
|
|
mime::PLAIN | mime::HTML if !is_attachment_disposition(mail) => Viewtype::Text, |
|
|
_ => Viewtype::File, |
|
|
}, |
|
|
mime::IMAGE => match mimetype.subtype() { |
|
|
mime::GIF => Viewtype::Gif, |
|
|
mime::SVG => Viewtype::File, |
|
|
_ => Viewtype::Image, |
|
|
}, |
|
|
mime::AUDIO => Viewtype::Audio, |
|
|
mime::VIDEO => Viewtype::Video, |
|
|
mime::MULTIPART => Viewtype::Unknown, |
|
|
mime::MESSAGE => { |
|
|
if is_attachment_disposition(mail) { |
|
|
Viewtype::File |
|
|
} else { |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Viewtype::Unknown |
|
|
} |
|
|
} |
|
|
mime::APPLICATION => match mimetype.subtype() { |
|
|
mime::OCTET_STREAM => match filename { |
|
|
Some(filename) => match message::guess_msgtype_from_suffix(Path::new(&filename)) { |
|
|
Some((viewtype, _)) => viewtype, |
|
|
None => Viewtype::File, |
|
|
}, |
|
|
None => Viewtype::File, |
|
|
}, |
|
|
_ => Viewtype::File, |
|
|
}, |
|
|
_ => Viewtype::Unknown, |
|
|
}; |
|
|
|
|
|
Ok((mimetype, viewtype)) |
|
|
} |
|
|
|
|
|
fn is_attachment_disposition(mail: &mailparse::ParsedMail<'_>) -> bool { |
|
|
let ct = mail.get_content_disposition(); |
|
|
ct.disposition == DispositionType::Attachment |
|
|
&& ct |
|
|
.params |
|
|
.iter() |
|
|
.any(|(key, _value)| key.starts_with("filename")) |
|
|
} |
|
|
|
|
|
fn is_valid_deltachat_vcard(mail: &mailparse::ParsedMail) -> bool { |
|
|
let Ok(body) = &mail.get_body() else { |
|
|
return false; |
|
|
}; |
|
|
let contacts = deltachat_contact_tools::parse_vcard(body); |
|
|
if let [c] = &contacts[..] { |
|
|
return deltachat_contact_tools::may_be_valid_addr(&c.addr); |
|
|
} |
|
|
false |
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
fn get_attachment_filename( |
|
|
context: &Context, |
|
|
mail: &mailparse::ParsedMail, |
|
|
) -> Result<Option<String>> { |
|
|
let ct = mail.get_content_disposition(); |
|
|
|
|
|
|
|
|
|
|
|
let mut desired_filename = ct.params.get("filename").map(|s| s.to_string()); |
|
|
|
|
|
if desired_filename.is_none() { |
|
|
if let Some(name) = ct.params.get("filename*").map(|s| s.to_string()) { |
|
|
|
|
|
|
|
|
|
|
|
warn!(context, "apostrophed encoding invalid: {}", name); |
|
|
desired_filename = Some(name); |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
if desired_filename.is_none() { |
|
|
desired_filename = ct.params.get("name").map(|s| s.to_string()); |
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
if desired_filename.is_none() { |
|
|
desired_filename = mail.ctype.params.get("name").map(|s| s.to_string()); |
|
|
} |
|
|
|
|
|
|
|
|
if desired_filename.is_none() && ct.disposition == DispositionType::Attachment { |
|
|
if let Some(subtype) = mail.ctype.mimetype.split('/').nth(1) { |
|
|
desired_filename = Some(format!("file.{subtype}",)); |
|
|
} else { |
|
|
bail!( |
|
|
"could not determine attachment filename: {:?}", |
|
|
ct.disposition |
|
|
); |
|
|
}; |
|
|
} |
|
|
|
|
|
let desired_filename = desired_filename.map(|filename| strip_rtlo_characters(&filename)); |
|
|
|
|
|
Ok(desired_filename) |
|
|
} |
|
|
|
|
|
|
|
|
pub(crate) fn get_recipients(headers: &[MailHeader]) -> Vec<SingleInfo> { |
|
|
let to_addresses = get_all_addresses_from_header(headers, "to"); |
|
|
let cc_addresses = get_all_addresses_from_header(headers, "cc"); |
|
|
|
|
|
let mut res = to_addresses; |
|
|
res.extend(cc_addresses); |
|
|
res |
|
|
} |
|
|
|
|
|
|
|
|
pub(crate) fn get_from(headers: &[MailHeader]) -> Option<SingleInfo> { |
|
|
let all = get_all_addresses_from_header(headers, "from"); |
|
|
tools::single_value(all) |
|
|
} |
|
|
|
|
|
|
|
|
pub(crate) fn get_list_post(headers: &[MailHeader]) -> Option<String> { |
|
|
get_all_addresses_from_header(headers, "list-post") |
|
|
.into_iter() |
|
|
.next() |
|
|
.map(|s| s.addr) |
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
fn get_all_addresses_from_header(headers: &[MailHeader], header: &str) -> Vec<SingleInfo> { |
|
|
let mut result: Vec<SingleInfo> = Default::default(); |
|
|
|
|
|
if let Some(header) = headers |
|
|
.iter() |
|
|
.rev() |
|
|
.find(|h| h.get_key().to_lowercase() == header) |
|
|
{ |
|
|
if let Ok(addrs) = mailparse::addrparse_header(header) { |
|
|
for addr in addrs.iter() { |
|
|
match addr { |
|
|
mailparse::MailAddr::Single(ref info) => { |
|
|
result.push(SingleInfo { |
|
|
addr: addr_normalize(&info.addr).to_lowercase(), |
|
|
display_name: info.display_name.clone(), |
|
|
}); |
|
|
} |
|
|
mailparse::MailAddr::Group(ref infos) => { |
|
|
for info in &infos.addrs { |
|
|
result.push(SingleInfo { |
|
|
addr: addr_normalize(&info.addr).to_lowercase(), |
|
|
display_name: info.display_name.clone(), |
|
|
}); |
|
|
} |
|
|
} |
|
|
} |
|
|
} |
|
|
} |
|
|
} |
|
|
|
|
|
result |
|
|
} |
|
|
|
|
|
async fn handle_mdn( |
|
|
context: &Context, |
|
|
from_id: ContactId, |
|
|
rfc724_mid: &str, |
|
|
timestamp_sent: i64, |
|
|
) -> Result<()> { |
|
|
if from_id == ContactId::SELF { |
|
|
warn!( |
|
|
context, |
|
|
"Ignoring MDN sent to self, this is a bug on the sender device." |
|
|
); |
|
|
|
|
|
|
|
|
|
|
|
return Ok(()); |
|
|
} |
|
|
|
|
|
let Some((msg_id, chat_id, msg_state)) = context |
|
|
.sql |
|
|
.query_row_optional( |
|
|
concat!( |
|
|
"SELECT", |
|
|
" m.id AS msg_id,", |
|
|
" c.id AS chat_id,", |
|
|
" m.state AS state", |
|
|
" FROM msgs m LEFT JOIN chats c ON m.chat_id=c.id", |
|
|
" WHERE rfc724_mid=? AND from_id=1", |
|
|
" ORDER BY m.id" |
|
|
), |
|
|
(&rfc724_mid,), |
|
|
|row| { |
|
|
let msg_id: MsgId = row.get("msg_id")?; |
|
|
let chat_id: ChatId = row.get("chat_id")?; |
|
|
let msg_state: MessageState = row.get("state")?; |
|
|
Ok((msg_id, chat_id, msg_state)) |
|
|
}, |
|
|
) |
|
|
.await? |
|
|
else { |
|
|
info!( |
|
|
context, |
|
|
"Ignoring MDN, found no message with Message-ID {rfc724_mid:?} sent by us in the database.", |
|
|
); |
|
|
return Ok(()); |
|
|
}; |
|
|
|
|
|
if !context |
|
|
.sql |
|
|
.exists( |
|
|
"SELECT COUNT(*) FROM msgs_mdns WHERE msg_id=? AND contact_id=?", |
|
|
(msg_id, from_id), |
|
|
) |
|
|
.await? |
|
|
{ |
|
|
context |
|
|
.sql |
|
|
.execute( |
|
|
"INSERT INTO msgs_mdns (msg_id, contact_id, timestamp_sent) VALUES (?, ?, ?)", |
|
|
(msg_id, from_id, timestamp_sent), |
|
|
) |
|
|
.await?; |
|
|
} |
|
|
|
|
|
if msg_state == MessageState::OutPreparing |
|
|
|| msg_state == MessageState::OutPending |
|
|
|| msg_state == MessageState::OutDelivered |
|
|
{ |
|
|
update_msg_state(context, msg_id, MessageState::OutMdnRcvd).await?; |
|
|
context.emit_event(EventType::MsgRead { chat_id, msg_id }); |
|
|
|
|
|
chatlist_events::emit_chatlist_item_changed(context, chat_id); |
|
|
} |
|
|
Ok(()) |
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
async fn handle_ndn( |
|
|
context: &Context, |
|
|
failed: &DeliveryReport, |
|
|
error: Option<String>, |
|
|
) -> Result<()> { |
|
|
if failed.rfc724_mid.is_empty() { |
|
|
return Ok(()); |
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
let msgs: Vec<_> = context |
|
|
.sql |
|
|
.query_map( |
|
|
concat!( |
|
|
"SELECT", |
|
|
" m.id AS msg_id,", |
|
|
" c.id AS chat_id,", |
|
|
" c.type AS type", |
|
|
" FROM msgs m LEFT JOIN chats c ON m.chat_id=c.id", |
|
|
" WHERE rfc724_mid=? AND from_id=1", |
|
|
), |
|
|
(&failed.rfc724_mid,), |
|
|
|row| { |
|
|
let msg_id: MsgId = row.get("msg_id")?; |
|
|
let chat_id: ChatId = row.get("chat_id")?; |
|
|
let chat_type: Chattype = row.get("type")?; |
|
|
Ok((msg_id, chat_id, chat_type)) |
|
|
}, |
|
|
|rows| Ok(rows.collect::<Vec<_>>()), |
|
|
) |
|
|
.await?; |
|
|
|
|
|
let error = if let Some(error) = error { |
|
|
error |
|
|
} else if let Some(failed_recipient) = &failed.failed_recipient { |
|
|
format!("Delivery to {failed_recipient} failed.").clone() |
|
|
} else { |
|
|
"Delivery to at least one recipient failed.".to_string() |
|
|
}; |
|
|
|
|
|
let mut first = true; |
|
|
for msg in msgs { |
|
|
let (msg_id, chat_id, chat_type) = msg?; |
|
|
let mut message = Message::load_from_db(context, msg_id).await?; |
|
|
set_msg_failed(context, &mut message, &error).await?; |
|
|
if first { |
|
|
|
|
|
ndn_maybe_add_info_msg(context, failed, chat_id, chat_type).await?; |
|
|
} |
|
|
first = false; |
|
|
} |
|
|
|
|
|
Ok(()) |
|
|
} |
|
|
|
|
|
async fn ndn_maybe_add_info_msg( |
|
|
context: &Context, |
|
|
failed: &DeliveryReport, |
|
|
chat_id: ChatId, |
|
|
chat_type: Chattype, |
|
|
) -> Result<()> { |
|
|
match chat_type { |
|
|
Chattype::Group | Chattype::Broadcast => { |
|
|
if let Some(failed_recipient) = &failed.failed_recipient { |
|
|
let contact_id = |
|
|
Contact::lookup_id_by_addr(context, failed_recipient, Origin::Unknown) |
|
|
.await? |
|
|
.context("contact ID not found")?; |
|
|
let contact = Contact::get_by_id(context, contact_id).await?; |
|
|
|
|
|
|
|
|
let text = stock_str::failed_sending_to(context, contact.get_display_name()).await; |
|
|
add_info_msg(context, chat_id, &text, create_smeared_timestamp(context)).await?; |
|
|
context.emit_event(EventType::ChatModified(chat_id)); |
|
|
} |
|
|
} |
|
|
Chattype::Mailinglist => { |
|
|
|
|
|
|
|
|
warn!(context, "ignoring NDN for mailing list."); |
|
|
} |
|
|
Chattype::Single => {} |
|
|
} |
|
|
Ok(()) |
|
|
} |
|
|
|
|
|
#[cfg(test)] |
|
|
mod tests { |
|
|
#![allow(clippy::indexing_slicing)] |
|
|
|
|
|
use mailparse::ParsedMail; |
|
|
|
|
|
use super::*; |
|
|
use crate::{ |
|
|
chat, |
|
|
chatlist::Chatlist, |
|
|
constants::{Blocked, DC_DESIRED_TEXT_LEN, DC_ELLIPSIS}, |
|
|
message::MessengerMessage, |
|
|
receive_imf::receive_imf, |
|
|
test_utils::{TestContext, TestContextManager}, |
|
|
tools::time, |
|
|
}; |
|
|
|
|
|
impl AvatarAction { |
|
|
pub fn is_change(&self) -> bool { |
|
|
match self { |
|
|
AvatarAction::Delete => false, |
|
|
AvatarAction::Change(_) => true, |
|
|
} |
|
|
} |
|
|
} |
|
|
|
|
|
#[tokio::test(flavor = "multi_thread", worker_threads = 2)] |
|
|
async fn test_mimeparser_fromheader() { |
|
|
let ctx = TestContext::new_alice().await; |
|
|
|
|
|
let mimemsg = MimeMessage::from_bytes(&ctx, b"From: g@c.de\n\nhi", None) |
|
|
.await |
|
|
.unwrap(); |
|
|
let contact = mimemsg.from; |
|
|
assert_eq!(contact.addr, "g@c.de"); |
|
|
assert_eq!(contact.display_name, None); |
|
|
|
|
|
let mimemsg = MimeMessage::from_bytes(&ctx, b"From: g@c.de \n\nhi", None) |
|
|
.await |
|
|
.unwrap(); |
|
|
let contact = mimemsg.from; |
|
|
assert_eq!(contact.addr, "g@c.de"); |
|
|
assert_eq!(contact.display_name, None); |
|
|
|
|
|
let mimemsg = MimeMessage::from_bytes(&ctx, b"From: <g@c.de>\n\nhi", None) |
|
|
.await |
|
|
.unwrap(); |
|
|
let contact = mimemsg.from; |
|
|
assert_eq!(contact.addr, "g@c.de"); |
|
|
assert_eq!(contact.display_name, None); |
|
|
|
|
|
let mimemsg = MimeMessage::from_bytes(&ctx, b"From: Goetz C <g@c.de>\n\nhi", None) |
|
|
.await |
|
|
.unwrap(); |
|
|
let contact = mimemsg.from; |
|
|
assert_eq!(contact.addr, "g@c.de"); |
|
|
assert_eq!(contact.display_name, Some("Goetz C".to_string())); |
|
|
|
|
|
let mimemsg = MimeMessage::from_bytes(&ctx, b"From: \"Goetz C\" <g@c.de>\n\nhi", None) |
|
|
.await |
|
|
.unwrap(); |
|
|
let contact = mimemsg.from; |
|
|
assert_eq!(contact.addr, "g@c.de"); |
|
|
assert_eq!(contact.display_name, Some("Goetz C".to_string())); |
|
|
|
|
|
let mimemsg = |
|
|
MimeMessage::from_bytes(&ctx, b"From: =?utf-8?q?G=C3=B6tz?= C <g@c.de>\n\nhi", None) |
|
|
.await |
|
|
.unwrap(); |
|
|
let contact = mimemsg.from; |
|
|
assert_eq!(contact.addr, "g@c.de"); |
|
|
assert_eq!(contact.display_name, Some("Götz C".to_string())); |
|
|
|
|
|
|
|
|
|
|
|
let mimemsg = MimeMessage::from_bytes( |
|
|
&ctx, |
|
|
b"From: \"=?utf-8?q?G=C3=B6tz?= C\" <g@c.de>\n\nhi", |
|
|
None, |
|
|
) |
|
|
.await |
|
|
.unwrap(); |
|
|
let contact = mimemsg.from; |
|
|
assert_eq!(contact.addr, "g@c.de"); |
|
|
assert_eq!(contact.display_name, Some("Götz C".to_string())); |
|
|
} |
|
|
|
|
|
#[tokio::test(flavor = "multi_thread", worker_threads = 2)] |
|
|
async fn test_mimeparser_crash() { |
|
|
let context = TestContext::new_alice().await; |
|
|
let raw = include_bytes!("../test-data/message/issue_523.txt"); |
|
|
let mimeparser = MimeMessage::from_bytes(&context.ctx, &raw[..], None) |
|
|
.await |
|
|
.unwrap(); |
|
|
|
|
|
assert_eq!(mimeparser.get_subject(), None); |
|
|
assert_eq!(mimeparser.parts.len(), 1); |
|
|
} |
|
|
|
|
|
#[tokio::test(flavor = "multi_thread", worker_threads = 2)] |
|
|
async fn test_get_rfc724_mid_exists() { |
|
|
let context = TestContext::new_alice().await; |
|
|
let raw = include_bytes!("../test-data/message/mail_with_message_id.txt"); |
|
|
let mimeparser = MimeMessage::from_bytes(&context.ctx, &raw[..], None) |
|
|
.await |
|
|
.unwrap(); |
|
|
|
|
|
assert_eq!( |
|
|
mimeparser.get_rfc724_mid(), |
|
|
Some("2dfdbde7@example.org".into()) |
|
|
); |
|
|
} |
|
|
|
|
|
#[tokio::test(flavor = "multi_thread", worker_threads = 2)] |
|
|
async fn test_get_rfc724_mid_not_exists() { |
|
|
let context = TestContext::new_alice().await; |
|
|
let raw = include_bytes!("../test-data/message/issue_523.txt"); |
|
|
let mimeparser = MimeMessage::from_bytes(&context.ctx, &raw[..], None) |
|
|
.await |
|
|
.unwrap(); |
|
|
assert_eq!(mimeparser.get_rfc724_mid(), None); |
|
|
} |
|
|
|
|
|
#[test] |
|
|
fn test_get_recipients() { |
|
|
let raw = include_bytes!("../test-data/message/mail_with_cc.txt"); |
|
|
let mail = mailparse::parse_mail(&raw[..]).unwrap(); |
|
|
let recipients = get_recipients(&mail.headers); |
|
|
assert!(recipients.iter().any(|info| info.addr == "abc@bcd.com")); |
|
|
assert!(recipients.iter().any(|info| info.addr == "def@def.de")); |
|
|
assert_eq!(recipients.len(), 2); |
|
|
|
|
|
|
|
|
|
|
|
let raw = b"From: alice@example.org\n\ |
|
|
TO: mallory@example.com\n\ |
|
|
To: mallory@example.net\n\ |
|
|
To: bob@example.net\n\ |
|
|
Content-Type: text/plain\n\ |
|
|
Chat-Version: 1.0\n\ |
|
|
\n\ |
|
|
Hello\n\ |
|
|
"; |
|
|
let mail = mailparse::parse_mail(&raw[..]).unwrap(); |
|
|
let recipients = get_recipients(&mail.headers); |
|
|
assert!(recipients.iter().any(|info| info.addr == "bob@example.net")); |
|
|
assert_eq!(recipients.len(), 1); |
|
|
} |
|
|
|
|
|
#[test] |
|
|
fn test_is_attachment() { |
|
|
let raw = include_bytes!("../test-data/message/mail_with_cc.txt"); |
|
|
let mail = mailparse::parse_mail(raw).unwrap(); |
|
|
assert!(!is_attachment_disposition(&mail)); |
|
|
|
|
|
let raw = include_bytes!("../test-data/message/mail_attach_txt.eml"); |
|
|
let mail = mailparse::parse_mail(raw).unwrap(); |
|
|
assert!(!is_attachment_disposition(&mail)); |
|
|
assert!(!is_attachment_disposition(&mail.subparts[0])); |
|
|
assert!(is_attachment_disposition(&mail.subparts[1])); |
|
|
} |
|
|
|
|
|
fn load_mail_with_attachment<'a>(t: &'a TestContext, raw: &'a [u8]) -> ParsedMail<'a> { |
|
|
let mail = mailparse::parse_mail(raw).unwrap(); |
|
|
assert!(get_attachment_filename(t, &mail).unwrap().is_none()); |
|
|
assert!(get_attachment_filename(t, &mail.subparts[0]) |
|
|
.unwrap() |
|
|
.is_none()); |
|
|
mail |
|
|
} |
|
|
|
|
|
#[tokio::test(flavor = "multi_thread", worker_threads = 2)] |
|
|
async fn test_get_attachment_filename() { |
|
|
let t = TestContext::new().await; |
|
|
let mail = load_mail_with_attachment( |
|
|
&t, |
|
|
include_bytes!("../test-data/message/attach_filename_simple.eml"), |
|
|
); |
|
|
let filename = get_attachment_filename(&t, &mail.subparts[1]).unwrap(); |
|
|
assert_eq!(filename, Some("test.html".to_string())) |
|
|
} |
|
|
|
|
|
#[tokio::test(flavor = "multi_thread", worker_threads = 2)] |
|
|
async fn test_get_attachment_filename_encoded_words() { |
|
|
let t = TestContext::new().await; |
|
|
let mail = load_mail_with_attachment( |
|
|
&t, |
|
|
include_bytes!("../test-data/message/attach_filename_encoded_words.eml"), |
|
|
); |
|
|
let filename = get_attachment_filename(&t, &mail.subparts[1]).unwrap(); |
|
|
assert_eq!(filename, Some("Maßnahmen Okt. 2020.html".to_string())) |
|
|
} |
|
|
|
|
|
#[tokio::test(flavor = "multi_thread", worker_threads = 2)] |
|
|
async fn test_get_attachment_filename_encoded_words_binary() { |
|
|
let t = TestContext::new().await; |
|
|
let mail = load_mail_with_attachment( |
|
|
&t, |
|
|
include_bytes!("../test-data/message/attach_filename_encoded_words_binary.eml"), |
|
|
); |
|
|
let filename = get_attachment_filename(&t, &mail.subparts[1]).unwrap(); |
|
|
assert_eq!(filename, Some(" § 165 Abs".to_string())) |
|
|
} |
|
|
|
|
|
#[tokio::test(flavor = "multi_thread", worker_threads = 2)] |
|
|
async fn test_get_attachment_filename_encoded_words_windows1251() { |
|
|
let t = TestContext::new().await; |
|
|
let mail = load_mail_with_attachment( |
|
|
&t, |
|
|
include_bytes!("../test-data/message/attach_filename_encoded_words_windows1251.eml"), |
|
|
); |
|
|
let filename = get_attachment_filename(&t, &mail.subparts[1]).unwrap(); |
|
|
assert_eq!(filename, Some("file Что нового 2020.pdf".to_string())) |
|
|
} |
|
|
|
|
|
#[tokio::test(flavor = "multi_thread", worker_threads = 2)] |
|
|
async fn test_get_attachment_filename_encoded_words_cont() { |
|
|
|
|
|
let t = TestContext::new().await; |
|
|
let mail = load_mail_with_attachment( |
|
|
&t, |
|
|
include_bytes!("../test-data/message/attach_filename_encoded_words_cont.eml"), |
|
|
); |
|
|
let filename = get_attachment_filename(&t, &mail.subparts[1]).unwrap(); |
|
|
assert_eq!(filename, Some("Maßn'ah'men Okt. 2020.html".to_string())) |
|
|
} |
|
|
|
|
|
#[tokio::test(flavor = "multi_thread", worker_threads = 2)] |
|
|
async fn test_get_attachment_filename_encoded_words_bad_delimiter() { |
|
|
let t = TestContext::new().await; |
|
|
let mail = load_mail_with_attachment( |
|
|
&t, |
|
|
include_bytes!("../test-data/message/attach_filename_encoded_words_bad_delimiter.eml"), |
|
|
); |
|
|
let filename = get_attachment_filename(&t, &mail.subparts[1]).unwrap(); |
|
|
|
|
|
assert_eq!(filename, Some("=?utf-8?q?foo?=.bar".to_string())) |
|
|
} |
|
|
|
|
|
#[tokio::test(flavor = "multi_thread", worker_threads = 2)] |
|
|
async fn test_get_attachment_filename_apostrophed() { |
|
|
let t = TestContext::new().await; |
|
|
let mail = load_mail_with_attachment( |
|
|
&t, |
|
|
include_bytes!("../test-data/message/attach_filename_apostrophed.eml"), |
|
|
); |
|
|
let filename = get_attachment_filename(&t, &mail.subparts[1]).unwrap(); |
|
|
assert_eq!(filename, Some("Maßnahmen Okt. 2021.html".to_string())) |
|
|
} |
|
|
|
|
|
#[tokio::test(flavor = "multi_thread", worker_threads = 2)] |
|
|
async fn test_get_attachment_filename_apostrophed_cont() { |
|
|
let t = TestContext::new().await; |
|
|
let mail = load_mail_with_attachment( |
|
|
&t, |
|
|
include_bytes!("../test-data/message/attach_filename_apostrophed_cont.eml"), |
|
|
); |
|
|
let filename = get_attachment_filename(&t, &mail.subparts[1]).unwrap(); |
|
|
assert_eq!(filename, Some("Maßnahmen März 2022.html".to_string())) |
|
|
} |
|
|
|
|
|
#[tokio::test(flavor = "multi_thread", worker_threads = 2)] |
|
|
async fn test_get_attachment_filename_apostrophed_windows1251() { |
|
|
let t = TestContext::new().await; |
|
|
let mail = load_mail_with_attachment( |
|
|
&t, |
|
|
include_bytes!("../test-data/message/attach_filename_apostrophed_windows1251.eml"), |
|
|
); |
|
|
let filename = get_attachment_filename(&t, &mail.subparts[1]).unwrap(); |
|
|
assert_eq!(filename, Some("программирование.HTM".to_string())) |
|
|
} |
|
|
|
|
|
#[tokio::test(flavor = "multi_thread", worker_threads = 2)] |
|
|
async fn test_get_attachment_filename_apostrophed_cp1252() { |
|
|
let t = TestContext::new().await; |
|
|
let mail = load_mail_with_attachment( |
|
|
&t, |
|
|
include_bytes!("../test-data/message/attach_filename_apostrophed_cp1252.eml"), |
|
|
); |
|
|
let filename = get_attachment_filename(&t, &mail.subparts[1]).unwrap(); |
|
|
assert_eq!(filename, Some("Auftragsbestätigung.pdf".to_string())) |
|
|
} |
|
|
|
|
|
#[tokio::test(flavor = "multi_thread", worker_threads = 2)] |
|
|
async fn test_get_attachment_filename_apostrophed_invalid() { |
|
|
let t = TestContext::new().await; |
|
|
let mail = load_mail_with_attachment( |
|
|
&t, |
|
|
include_bytes!("../test-data/message/attach_filename_apostrophed_invalid.eml"), |
|
|
); |
|
|
let filename = get_attachment_filename(&t, &mail.subparts[1]).unwrap(); |
|
|
assert_eq!(filename, Some("somedäüta.html.zip".to_string())) |
|
|
} |
|
|
|
|
|
#[tokio::test(flavor = "multi_thread", worker_threads = 2)] |
|
|
async fn test_get_attachment_filename_combined() { |
|
|
|
|
|
let t = TestContext::new().await; |
|
|
let mail = load_mail_with_attachment( |
|
|
&t, |
|
|
include_bytes!("../test-data/message/attach_filename_combined.eml"), |
|
|
); |
|
|
let filename = get_attachment_filename(&t, &mail.subparts[1]).unwrap(); |
|
|
assert_eq!(filename, Some("Maßnahmen Okt. 2020.html".to_string())) |
|
|
} |
|
|
|
|
|
#[test] |
|
|
fn test_mailparse_content_type() { |
|
|
let ctype = |
|
|
mailparse::parse_content_type("text/plain; charset=utf-8; protected-headers=v1;"); |
|
|
|
|
|
assert_eq!(ctype.mimetype, "text/plain"); |
|
|
assert_eq!(ctype.charset, "utf-8"); |
|
|
assert_eq!( |
|
|
ctype.params.get("protected-headers"), |
|
|
Some(&"v1".to_string()) |
|
|
); |
|
|
} |
|
|
|
|
|
#[tokio::test(flavor = "multi_thread", worker_threads = 2)] |
|
|
async fn test_parse_first_addr() { |
|
|
let context = TestContext::new().await; |
|
|
let raw = b"From: hello@one.org, world@two.org\n\ |
|
|
Chat-Disposition-Notification-To: wrong\n\ |
|
|
Content-Type: text/plain\n\ |
|
|
Chat-Version: 1.0\n\ |
|
|
\n\ |
|
|
test1\n\ |
|
|
"; |
|
|
|
|
|
let mimeparser = MimeMessage::from_bytes(&context.ctx, &raw[..], None).await; |
|
|
|
|
|
assert!(mimeparser.is_err()); |
|
|
} |
|
|
|
|
|
#[tokio::test(flavor = "multi_thread", worker_threads = 2)] |
|
|
async fn test_get_parent_timestamp() { |
|
|
let context = TestContext::new_alice().await; |
|
|
let raw = b"From: foo@example.org\n\ |
|
|
Content-Type: text/plain\n\ |
|
|
Chat-Version: 1.0\n\ |
|
|
In-Reply-To: <Gr.beZgAF2Nn0-.oyaJOpeuT70@example.org>\n\ |
|
|
\n\ |
|
|
Some reply\n\ |
|
|
"; |
|
|
let mimeparser = MimeMessage::from_bytes(&context.ctx, &raw[..], None) |
|
|
.await |
|
|
.unwrap(); |
|
|
assert_eq!( |
|
|
mimeparser.get_parent_timestamp(&context.ctx).await.unwrap(), |
|
|
None |
|
|
); |
|
|
let timestamp = 1570435529; |
|
|
context |
|
|
.ctx |
|
|
.sql |
|
|
.execute( |
|
|
"INSERT INTO msgs (rfc724_mid, timestamp) VALUES(?,?)", |
|
|
("Gr.beZgAF2Nn0-.oyaJOpeuT70@example.org", timestamp), |
|
|
) |
|
|
.await |
|
|
.expect("Failed to write to the database"); |
|
|
assert_eq!( |
|
|
mimeparser.get_parent_timestamp(&context.ctx).await.unwrap(), |
|
|
Some(timestamp) |
|
|
); |
|
|
} |
|
|
|
|
|
#[tokio::test(flavor = "multi_thread", worker_threads = 2)] |
|
|
async fn test_mimeparser_with_context() { |
|
|
let context = TestContext::new_alice().await; |
|
|
let raw = b"From: hello@example.org\n\ |
|
|
Content-Type: multipart/mixed; boundary=\"==break==\";\n\ |
|
|
Subject: outer-subject\n\ |
|
|
Secure-Join-Group: no\n\ |
|
|
Secure-Join-Fingerprint: 123456\n\ |
|
|
Test-Header: Bar\n\ |
|
|
chat-VERSION: 0.0\n\ |
|
|
\n\ |
|
|
--==break==\n\ |
|
|
Content-Type: text/plain; protected-headers=\"v1\";\n\ |
|
|
Subject: inner-subject\n\ |
|
|
SecureBar-Join-Group: yes\n\ |
|
|
Test-Header: Xy\n\ |
|
|
chat-VERSION: 1.0\n\ |
|
|
\n\ |
|
|
test1\n\ |
|
|
\n\ |
|
|
--==break==--\n\ |
|
|
\n"; |
|
|
|
|
|
let mimeparser = MimeMessage::from_bytes(&context.ctx, &raw[..], None) |
|
|
.await |
|
|
.unwrap(); |
|
|
|
|
|
|
|
|
let of = mimeparser.get_header(HeaderDef::SecureJoinGroup).unwrap(); |
|
|
assert_eq!(of, "no"); |
|
|
|
|
|
|
|
|
let of = mimeparser.get_header(HeaderDef::TestHeader).unwrap(); |
|
|
assert_eq!(of, "Bar"); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
assert_eq!(mimeparser.get_subject(), Some("outer-subject".into())); |
|
|
|
|
|
let of = mimeparser.get_header(HeaderDef::ChatVersion).unwrap(); |
|
|
assert_eq!(of, "0.0"); |
|
|
assert_eq!(mimeparser.parts.len(), 1); |
|
|
|
|
|
|
|
|
|
|
|
assert!(mimeparser |
|
|
.get_header(HeaderDef::SecureJoinFingerprint) |
|
|
.is_none()); |
|
|
} |
|
|
|
|
|
#[tokio::test(flavor = "multi_thread", worker_threads = 2)] |
|
|
async fn test_mimeparser_with_avatars() { |
|
|
let t = TestContext::new_alice().await; |
|
|
|
|
|
let raw = include_bytes!("../test-data/message/mail_attach_txt.eml"); |
|
|
let mimeparser = MimeMessage::from_bytes(&t, &raw[..], None).await.unwrap(); |
|
|
assert_eq!(mimeparser.user_avatar, None); |
|
|
assert_eq!(mimeparser.group_avatar, None); |
|
|
|
|
|
let raw = include_bytes!("../test-data/message/mail_with_user_avatar.eml"); |
|
|
let mimeparser = MimeMessage::from_bytes(&t, &raw[..], None).await.unwrap(); |
|
|
assert_eq!(mimeparser.parts.len(), 1); |
|
|
assert_eq!(mimeparser.parts[0].typ, Viewtype::Text); |
|
|
assert!(mimeparser.user_avatar.unwrap().is_change()); |
|
|
assert_eq!(mimeparser.group_avatar, None); |
|
|
|
|
|
let raw = include_bytes!("../test-data/message/mail_with_user_avatar_deleted.eml"); |
|
|
let mimeparser = MimeMessage::from_bytes(&t, &raw[..], None).await.unwrap(); |
|
|
assert_eq!(mimeparser.parts.len(), 1); |
|
|
assert_eq!(mimeparser.parts[0].typ, Viewtype::Text); |
|
|
assert_eq!(mimeparser.user_avatar, Some(AvatarAction::Delete)); |
|
|
assert_eq!(mimeparser.group_avatar, None); |
|
|
|
|
|
let raw = include_bytes!("../test-data/message/mail_with_user_and_group_avatars.eml"); |
|
|
let mimeparser = MimeMessage::from_bytes(&t, &raw[..], None).await.unwrap(); |
|
|
assert_eq!(mimeparser.parts.len(), 1); |
|
|
assert_eq!(mimeparser.parts[0].typ, Viewtype::Text); |
|
|
assert!(mimeparser.user_avatar.unwrap().is_change()); |
|
|
assert!(mimeparser.group_avatar.unwrap().is_change()); |
|
|
|
|
|
|
|
|
let raw = include_bytes!("../test-data/message/mail_with_user_and_group_avatars.eml"); |
|
|
let raw = String::from_utf8_lossy(raw).to_string(); |
|
|
let raw = raw.replace("Chat-User-Avatar:", "Xhat-Xser-Xvatar:"); |
|
|
let mimeparser = MimeMessage::from_bytes(&t, raw.as_bytes(), None) |
|
|
.await |
|
|
.unwrap(); |
|
|
assert_eq!(mimeparser.parts.len(), 1); |
|
|
assert_eq!(mimeparser.parts[0].typ, Viewtype::Image); |
|
|
assert_eq!(mimeparser.user_avatar, None); |
|
|
assert!(mimeparser.group_avatar.unwrap().is_change()); |
|
|
} |
|
|
|
|
|
#[tokio::test(flavor = "multi_thread", worker_threads = 2)] |
|
|
async fn test_mimeparser_with_videochat() { |
|
|
let t = TestContext::new_alice().await; |
|
|
|
|
|
let raw = include_bytes!("../test-data/message/videochat_invitation.eml"); |
|
|
let mimeparser = MimeMessage::from_bytes(&t, &raw[..], None).await.unwrap(); |
|
|
assert_eq!(mimeparser.parts.len(), 1); |
|
|
assert_eq!(mimeparser.parts[0].typ, Viewtype::VideochatInvitation); |
|
|
assert_eq!( |
|
|
mimeparser.parts[0] |
|
|
.param |
|
|
.get(Param::WebrtcRoom) |
|
|
.unwrap_or_default(), |
|
|
"https://example.org/p2p/?roomname=6HiduoAn4xN" |
|
|
); |
|
|
assert!(mimeparser.parts[0] |
|
|
.msg |
|
|
.contains("https://example.org/p2p/?roomname=6HiduoAn4xN")); |
|
|
assert_eq!(mimeparser.user_avatar, None); |
|
|
assert_eq!(mimeparser.group_avatar, None); |
|
|
} |
|
|
|
|
|
#[tokio::test(flavor = "multi_thread", worker_threads = 2)] |
|
|
async fn test_mimeparser_message_kml() { |
|
|
let context = TestContext::new_alice().await; |
|
|
let raw = b"Chat-Version: 1.0\n\ |
|
|
From: foo <foo@example.org>\n\ |
|
|
To: bar <bar@example.org>\n\ |
|
|
Subject: Location streaming\n\ |
|
|
Content-Type: multipart/mixed; boundary=\"==break==\"\n\ |
|
|
\n\ |
|
|
\n\ |
|
|
--==break==\n\ |
|
|
Content-Type: text/plain; charset=utf-8\n\ |
|
|
\n\ |
|
|
--\n\ |
|
|
Sent with my Delta Chat Messenger: https://delta.chat\n\ |
|
|
\n\ |
|
|
--==break==\n\ |
|
|
Content-Type: application/vnd.google-earth.kml+xml\n\ |
|
|
Content-Disposition: attachment; filename=\"message.kml\"\n\ |
|
|
\n\ |
|
|
<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n\ |
|
|
<kml xmlns=\"http://www.opengis.net/kml/2.2\">\n\ |
|
|
<Document addr=\"foo@example.org\">\n\ |
|
|
<Placemark><Timestamp><when>XXX</when></Timestamp><Point><coordinates accuracy=\"48\">0.0,0.0</coordinates></Point></Placemark>\n\ |
|
|
</Document>\n\ |
|
|
</kml>\n\ |
|
|
\n\ |
|
|
--==break==--\n\ |
|
|
;"; |
|
|
|
|
|
let mimeparser = MimeMessage::from_bytes(&context.ctx, &raw[..], None) |
|
|
.await |
|
|
.unwrap(); |
|
|
assert_eq!( |
|
|
mimeparser.get_subject(), |
|
|
Some("Location streaming".to_string()) |
|
|
); |
|
|
assert!(mimeparser.location_kml.is_none()); |
|
|
assert!(mimeparser.message_kml.is_some()); |
|
|
|
|
|
|
|
|
|
|
|
assert_eq!(mimeparser.parts.len(), 1); |
|
|
} |
|
|
|
|
|
#[tokio::test(flavor = "multi_thread", worker_threads = 2)] |
|
|
async fn test_parse_mdn() { |
|
|
let context = TestContext::new_alice().await; |
|
|
let raw = b"Subject: =?utf-8?q?Chat=3A_Message_opened?=\n\ |
|
|
Date: Mon, 10 Jan 2020 00:00:00 +0000\n\ |
|
|
Chat-Version: 1.0\n\ |
|
|
Message-ID: <bar@example.org>\n\ |
|
|
To: Alice <alice@example.org>\n\ |
|
|
From: Bob <bob@example.org>\n\ |
|
|
Auto-Submitted: auto-replied\n\ |
|
|
Content-Type: multipart/report; report-type=disposition-notification;\n\t\ |
|
|
boundary=\"kJBbU58X1xeWNHgBtTbMk80M5qnV4N\"\n\ |
|
|
\n\ |
|
|
\n\ |
|
|
--kJBbU58X1xeWNHgBtTbMk80M5qnV4N\n\ |
|
|
Content-Type: text/plain; charset=utf-8\n\ |
|
|
\n\ |
|
|
The \"Encrypted message\" message you sent was displayed on the screen of the recipient.\n\ |
|
|
\n\ |
|
|
This is no guarantee the content was read.\n\ |
|
|
\n\ |
|
|
\n\ |
|
|
--kJBbU58X1xeWNHgBtTbMk80M5qnV4N\n\ |
|
|
Content-Type: message/disposition-notification\n\ |
|
|
\n\ |
|
|
Reporting-UA: Delta Chat 1.0.0-beta.22\n\ |
|
|
Original-Recipient: rfc822;bob@example.org\n\ |
|
|
Final-Recipient: rfc822;bob@example.org\n\ |
|
|
Original-Message-ID: <foo@example.org>\n\ |
|
|
Disposition: manual-action/MDN-sent-automatically; displayed\n\ |
|
|
\n\ |
|
|
\n\ |
|
|
--kJBbU58X1xeWNHgBtTbMk80M5qnV4N--\n\ |
|
|
"; |
|
|
|
|
|
let message = MimeMessage::from_bytes(&context.ctx, &raw[..], None) |
|
|
.await |
|
|
.unwrap(); |
|
|
assert_eq!( |
|
|
message.get_subject(), |
|
|
Some("Chat: Message opened".to_string()) |
|
|
); |
|
|
|
|
|
assert_eq!(message.parts.len(), 1); |
|
|
assert_eq!(message.mdn_reports.len(), 1); |
|
|
assert_eq!(message.is_bot, None); |
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#[tokio::test(flavor = "multi_thread", worker_threads = 2)] |
|
|
async fn test_parse_multiple_mdns() { |
|
|
let context = TestContext::new_alice().await; |
|
|
let raw = b"Subject: =?utf-8?q?Chat=3A_Message_opened?=\n\ |
|
|
Date: Mon, 10 Jan 2020 00:00:00 +0000\n\ |
|
|
Chat-Version: 1.0\n\ |
|
|
Message-ID: <foo@example.org>\n\ |
|
|
To: Alice <alice@example.org>\n\ |
|
|
From: Bob <bob@example.org>\n\ |
|
|
Content-Type: multipart/parallel; boundary=outer\n\ |
|
|
\n\ |
|
|
This is a multipart MDN.\n\ |
|
|
\n\ |
|
|
--outer\n\ |
|
|
Content-Type: multipart/report; report-type=disposition-notification;\n\t\ |
|
|
boundary=kJBbU58X1xeWNHgBtTbMk80M5qnV4N\n\ |
|
|
\n\ |
|
|
\n\ |
|
|
--kJBbU58X1xeWNHgBtTbMk80M5qnV4N\n\ |
|
|
Content-Type: text/plain; charset=utf-8\n\ |
|
|
\n\ |
|
|
The \"Encrypted message\" message you sent was displayed on the screen of the recipient.\n\ |
|
|
\n\ |
|
|
This is no guarantee the content was read.\n\ |
|
|
\n\ |
|
|
\n\ |
|
|
--kJBbU58X1xeWNHgBtTbMk80M5qnV4N\n\ |
|
|
Content-Type: message/disposition-notification\n\ |
|
|
\n\ |
|
|
Reporting-UA: Delta Chat 1.0.0-beta.22\n\ |
|
|
Original-Recipient: rfc822;bob@example.org\n\ |
|
|
Final-Recipient: rfc822;bob@example.org\n\ |
|
|
Original-Message-ID: <bar@example.org>\n\ |
|
|
Disposition: manual-action/MDN-sent-automatically; displayed\n\ |
|
|
\n\ |
|
|
\n\ |
|
|
--kJBbU58X1xeWNHgBtTbMk80M5qnV4N--\n\ |
|
|
--outer\n\ |
|
|
Content-Type: multipart/report; report-type=disposition-notification;\n\t\ |
|
|
boundary=zuOJlsTfZAukyawEPVdIgqWjaM9w2W\n\ |
|
|
\n\ |
|
|
\n\ |
|
|
--zuOJlsTfZAukyawEPVdIgqWjaM9w2W\n\ |
|
|
Content-Type: text/plain; charset=utf-8\n\ |
|
|
\n\ |
|
|
The \"Encrypted message\" message you sent was displayed on the screen of the recipient.\n\ |
|
|
\n\ |
|
|
This is no guarantee the content was read.\n\ |
|
|
\n\ |
|
|
\n\ |
|
|
--zuOJlsTfZAukyawEPVdIgqWjaM9w2W\n\ |
|
|
Content-Type: message/disposition-notification\n\ |
|
|
\n\ |
|
|
Reporting-UA: Delta Chat 1.0.0-beta.22\n\ |
|
|
Original-Recipient: rfc822;bob@example.org\n\ |
|
|
Final-Recipient: rfc822;bob@example.org\n\ |
|
|
Original-Message-ID: <baz@example.org>\n\ |
|
|
Disposition: manual-action/MDN-sent-automatically; displayed\n\ |
|
|
\n\ |
|
|
\n\ |
|
|
--zuOJlsTfZAukyawEPVdIgqWjaM9w2W--\n\ |
|
|
--outer--\n\ |
|
|
"; |
|
|
|
|
|
let message = MimeMessage::from_bytes(&context.ctx, &raw[..], None) |
|
|
.await |
|
|
.unwrap(); |
|
|
assert_eq!( |
|
|
message.get_subject(), |
|
|
Some("Chat: Message opened".to_string()) |
|
|
); |
|
|
|
|
|
assert_eq!(message.parts.len(), 2); |
|
|
assert_eq!(message.mdn_reports.len(), 2); |
|
|
} |
|
|
|
|
|
#[tokio::test(flavor = "multi_thread", worker_threads = 2)] |
|
|
async fn test_parse_mdn_with_additional_message_ids() { |
|
|
let context = TestContext::new_alice().await; |
|
|
let raw = b"Subject: =?utf-8?q?Chat=3A_Message_opened?=\n\ |
|
|
Date: Mon, 10 Jan 2020 00:00:00 +0000\n\ |
|
|
Chat-Version: 1.0\n\ |
|
|
Message-ID: <bar@example.org>\n\ |
|
|
To: Alice <alice@example.org>\n\ |
|
|
From: Bob <bob@example.org>\n\ |
|
|
Content-Type: multipart/report; report-type=disposition-notification;\n\t\ |
|
|
boundary=\"kJBbU58X1xeWNHgBtTbMk80M5qnV4N\"\n\ |
|
|
\n\ |
|
|
\n\ |
|
|
--kJBbU58X1xeWNHgBtTbMk80M5qnV4N\n\ |
|
|
Content-Type: text/plain; charset=utf-8\n\ |
|
|
\n\ |
|
|
The \"Encrypted message\" message you sent was displayed on the screen of the recipient.\n\ |
|
|
\n\ |
|
|
This is no guarantee the content was read.\n\ |
|
|
\n\ |
|
|
\n\ |
|
|
--kJBbU58X1xeWNHgBtTbMk80M5qnV4N\n\ |
|
|
Content-Type: message/disposition-notification\n\ |
|
|
\n\ |
|
|
Reporting-UA: Delta Chat 1.0.0-beta.22\n\ |
|
|
Original-Recipient: rfc822;bob@example.org\n\ |
|
|
Final-Recipient: rfc822;bob@example.org\n\ |
|
|
Original-Message-ID: <foo@example.org>\n\ |
|
|
Disposition: manual-action/MDN-sent-automatically; displayed\n\ |
|
|
Additional-Message-IDs: <foo@example.com> <foo@example.net>\n\ |
|
|
\n\ |
|
|
\n\ |
|
|
--kJBbU58X1xeWNHgBtTbMk80M5qnV4N--\n\ |
|
|
"; |
|
|
|
|
|
let message = MimeMessage::from_bytes(&context.ctx, &raw[..], None) |
|
|
.await |
|
|
.unwrap(); |
|
|
assert_eq!( |
|
|
message.get_subject(), |
|
|
Some("Chat: Message opened".to_string()) |
|
|
); |
|
|
|
|
|
assert_eq!(message.parts.len(), 1); |
|
|
assert_eq!(message.mdn_reports.len(), 1); |
|
|
assert_eq!( |
|
|
message.mdn_reports[0].original_message_id, |
|
|
Some("foo@example.org".to_string()) |
|
|
); |
|
|
assert_eq!( |
|
|
&message.mdn_reports[0].additional_message_ids, |
|
|
&["foo@example.com", "foo@example.net"] |
|
|
); |
|
|
} |
|
|
|
|
|
#[tokio::test(flavor = "multi_thread", worker_threads = 2)] |
|
|
async fn test_parse_inline_attachment() { |
|
|
let context = TestContext::new_alice().await; |
|
|
let raw = br#"Date: Thu, 13 Feb 2020 22:41:20 +0000 (UTC) |
|
|
From: sender@example.com |
|
|
To: receiver@example.com |
|
|
Subject: Mail with inline attachment |
|
|
MIME-Version: 1.0 |
|
|
Content-Type: multipart/mixed; |
|
|
boundary="----=_Part_25_46172632.1581201680436" |
|
|
|
|
|
------=_Part_25_46172632.1581201680436 |
|
|
Content-Type: text/plain; charset=utf-8 |
|
|
|
|
|
Hello! |
|
|
|
|
|
------=_Part_25_46172632.1581201680436 |
|
|
Content-Type: application/pdf; name="some_pdf.pdf" |
|
|
Content-Transfer-Encoding: base64 |
|
|
Content-Disposition: inline; filename="some_pdf.pdf" |
|
|
|
|
|
JVBERi0xLjUKJcOkw7zDtsOfCjIgMCBvYmoKPDwvTGVuZ3RoIDMgMCBSL0ZpbHRlci9GbGF0ZURl |
|
|
Y29kZT4+CnN0cmVhbQp4nGVOuwoCMRDs8xVbC8aZvC4Hx4Hno7ATAhZi56MTtPH33YtXiLKQ3ZnM |
|
|
MDYyMDYxNTE1RTlDOEE4Cj4+CnN0YXJ0eHJlZgo4Mjc4CiUlRU9GCg== |
|
|
------=_Part_25_46172632.1581201680436-- |
|
|
"#; |
|
|
|
|
|
let message = MimeMessage::from_bytes(&context.ctx, &raw[..], None) |
|
|
.await |
|
|
.unwrap(); |
|
|
assert_eq!( |
|
|
message.get_subject(), |
|
|
Some("Mail with inline attachment".to_string()) |
|
|
); |
|
|
|
|
|
assert_eq!(message.parts.len(), 1); |
|
|
assert_eq!(message.parts[0].typ, Viewtype::File); |
|
|
assert_eq!(message.parts[0].msg, "Mail with inline attachment – Hello!"); |
|
|
} |
|
|
|
|
|
#[tokio::test(flavor = "multi_thread", worker_threads = 2)] |
|
|
async fn test_hide_html_without_content() { |
|
|
let t = TestContext::new_alice().await; |
|
|
let raw = br#"Date: Thu, 13 Feb 2020 22:41:20 +0000 (UTC) |
|
|
From: sender@example.com |
|
|
To: receiver@example.com |
|
|
Subject: Mail with inline attachment |
|
|
MIME-Version: 1.0 |
|
|
Content-Type: multipart/mixed; |
|
|
boundary="----=_Part_25_46172632.1581201680436" |
|
|
|
|
|
------=_Part_25_46172632.1581201680436 |
|
|
Content-Type: text/html; charset=utf-8 |
|
|
|
|
|
<head> |
|
|
<meta http-equiv="Content-Type" content="text/html; charset=Windows-1252"> |
|
|
<meta name="GENERATOR" content="MSHTML 11.00.10570.1001"></head> |
|
|
<body><img align="baseline" alt="" src="cid:1712254131-1" border="0" hspace="0"> |
|
|
</body> |
|
|
|
|
|
------=_Part_25_46172632.1581201680436 |
|
|
Content-Type: application/pdf; name="some_pdf.pdf" |
|
|
Content-Transfer-Encoding: base64 |
|
|
Content-Disposition: inline; filename="some_pdf.pdf" |
|
|
|
|
|
JVBERi0xLjUKJcOkw7zDtsOfCjIgMCBvYmoKPDwvTGVuZ3RoIDMgMCBSL0ZpbHRlci9GbGF0ZURl |
|
|
Y29kZT4+CnN0cmVhbQp4nGVOuwoCMRDs8xVbC8aZvC4Hx4Hno7ATAhZi56MTtPH33YtXiLKQ3ZnM |
|
|
MDYyMDYxNTE1RTlDOEE4Cj4+CnN0YXJ0eHJlZgo4Mjc4CiUlRU9GCg== |
|
|
------=_Part_25_46172632.1581201680436-- |
|
|
"#; |
|
|
|
|
|
let message = MimeMessage::from_bytes(&t, &raw[..], None).await.unwrap(); |
|
|
|
|
|
assert_eq!(message.parts.len(), 1); |
|
|
assert_eq!(message.parts[0].typ, Viewtype::File); |
|
|
assert_eq!(message.parts[0].msg, ""); |
|
|
|
|
|
|
|
|
let param = &message.parts[0].param; |
|
|
let blob: BlobObject = param |
|
|
.get_blob(Param::File, &t, false) |
|
|
.await |
|
|
.unwrap() |
|
|
.unwrap(); |
|
|
let f = tokio::fs::File::open(blob.to_abs_path()).await.unwrap(); |
|
|
let size = f.metadata().await.unwrap().len(); |
|
|
assert_eq!(size, 154); |
|
|
} |
|
|
|
|
|
#[tokio::test(flavor = "multi_thread", worker_threads = 2)] |
|
|
async fn parse_inline_image() { |
|
|
let context = TestContext::new_alice().await; |
|
|
let raw = br#"Message-ID: <foobar@example.org> |
|
|
From: foo <foo@example.org> |
|
|
Subject: example |
|
|
To: bar@example.org |
|
|
MIME-Version: 1.0 |
|
|
Content-Type: multipart/mixed; boundary="--11019878869865180" |
|
|
|
|
|
----11019878869865180 |
|
|
Content-Type: text/plain; charset=utf-8 |
|
|
|
|
|
Test |
|
|
|
|
|
----11019878869865180 |
|
|
Content-Type: image/jpeg; |
|
|
name="JPEG_filename.jpg" |
|
|
Content-Transfer-Encoding: base64 |
|
|
Content-Disposition: inline; |
|
|
filename="JPEG_filename.jpg" |
|
|
|
|
|
ISVb1L3m7z15Wy5w97a2cJg6W8P8YKOYfWn3PJ/UCSFcvCPtvBhcXieiN3M3ljguzG4XK7BnGgxG |
|
|
acAQdY8e0cWz1n+zKPNeNn4Iu3GXAXz4/IPksHk54inl1//0Lv8ggZjljfjnf0q1SPftYI7lpZWT |
|
|
/4aTCkimRrAIcwrQJPnZJRb7BPSC6kfn1QJHMv77mRMz2+4WbdfpyPQQ0CWLJsgVXtBsSMf2Awal |
|
|
n+zZzhGpXyCbWTEw1ccqZcK5KaiKNqWv51N4yVXw9dzJoCvxbYtCFGZZJdx7c+ObDotaF1/9KY4C |
|
|
xJjgK9/NgTXCZP1jYm0XIBnJsFSNg0pnMRETttTuGbOVi1/s/F1RGv5RNZsCUt21d9FhkWQQXsd2 |
|
|
rOzDgTdag6BQCN3hSU9eKW/GhNBuMibRN9eS7Sm1y2qFU1HgGJBQfPPRPLKxXaNi++Zt0tnon2IU |
|
|
8pg5rP/IvStXYQNUQ9SiFdfAUkLU5b1j8ltnka8xl+oXsleSG44GPz6kM0RmwUrGkl4z/+NfHSsI |
|
|
K+TuvC7qOah0WLFhcsXWn2+dDV1bXuAeC769TkqkpHhdXfUHnVgK3Pv7u3rVPT5AMeFUGxRB2dP4 |
|
|
CWt6wx7fiLp0qS9RrX75g6Gqw7nfCs6EcBERcIPt7DTe8VStJwf3LWqVwxl4gQl46yhfoqwEO+I= |
|
|
|
|
|
|
|
|
----11019878869865180-- |
|
|
"#; |
|
|
|
|
|
let message = MimeMessage::from_bytes(&context.ctx, &raw[..], None) |
|
|
.await |
|
|
.unwrap(); |
|
|
assert_eq!(message.get_subject(), Some("example".to_string())); |
|
|
|
|
|
assert_eq!(message.parts.len(), 1); |
|
|
assert_eq!(message.parts[0].typ, Viewtype::Image); |
|
|
assert_eq!(message.parts[0].msg, "example – Test"); |
|
|
} |
|
|
|
|
|
#[tokio::test(flavor = "multi_thread", worker_threads = 2)] |
|
|
async fn parse_thunderbird_html_embedded_image() { |
|
|
let context = TestContext::new_alice().await; |
|
|
let raw = br#"To: Alice <alice@example.org> |
|
|
From: Bob <bob@example.org> |
|
|
Subject: Test subject |
|
|
Message-ID: <foobarbaz@example.org> |
|
|
User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:68.0) Gecko/20100101 |
|
|
Thunderbird/68.7.0 |
|
|
MIME-Version: 1.0 |
|
|
Content-Type: multipart/alternative; |
|
|
boundary="------------779C1631600DF3DB8C02E53A" |
|
|
Content-Language: en-US |
|
|
|
|
|
This is a multi-part message in MIME format. |
|
|
--------------779C1631600DF3DB8C02E53A |
|
|
Content-Type: text/plain; charset=utf-8 |
|
|
Content-Transfer-Encoding: 7bit |
|
|
|
|
|
Test |
|
|
|
|
|
|
|
|
--------------779C1631600DF3DB8C02E53A |
|
|
Content-Type: multipart/related; |
|
|
boundary="------------10CC6C2609EB38DA782C5CA9" |
|
|
|
|
|
|
|
|
--------------10CC6C2609EB38DA782C5CA9 |
|
|
Content-Type: text/html; charset=utf-8 |
|
|
Content-Transfer-Encoding: 7bit |
|
|
|
|
|
<html> |
|
|
<head> |
|
|
<meta http-equiv="content-type" content="text/html; charset=UTF-8"> |
|
|
</head> |
|
|
<body> |
|
|
Test<br> |
|
|
<p><img moz-do-not-send="false" src="cid:part1.9DFA679B.52A88D69@example.org" alt=""></p> |
|
|
</body> |
|
|
</html> |
|
|
|
|
|
--------------10CC6C2609EB38DA782C5CA9 |
|
|
Content-Type: image/png; |
|
|
name="1.png" |
|
|
Content-Transfer-Encoding: base64 |
|
|
Content-ID: <part1.9DFA679B.52A88D69@example.org> |
|
|
Content-Disposition: inline; |
|
|
filename="1.png" |
|
|
|
|
|
ISVb1L3m7z15Wy5w97a2cJg6W8P8YKOYfWn3PJ/UCSFcvCPtvBhcXieiN3M3ljguzG4XK7BnGgxG |
|
|
acAQdY8e0cWz1n+zKPNeNn4Iu3GXAXz4/IPksHk54inl1//0Lv8ggZjljfjnf0q1SPftYI7lpZWT |
|
|
/4aTCkimRrAIcwrQJPnZJRb7BPSC6kfn1QJHMv77mRMz2+4WbdfpyPQQ0CWLJsgVXtBsSMf2Awal |
|
|
n+zZzhGpXyCbWTEw1ccqZcK5KaiKNqWv51N4yVXw9dzJoCvxbYtCFGZZJdx7c+ObDotaF1/9KY4C |
|
|
xJjgK9/NgTXCZP1jYm0XIBnJsFSNg0pnMRETttTuGbOVi1/s/F1RGv5RNZsCUt21d9FhkWQQXsd2 |
|
|
rOzDgTdag6BQCN3hSU9eKW/GhNBuMibRN9eS7Sm1y2qFU1HgGJBQfPPRPLKxXaNi++Zt0tnon2IU |
|
|
8pg5rP/IvStXYQNUQ9SiFdfAUkLU5b1j8ltnka8xl+oXsleSG44GPz6kM0RmwUrGkl4z/+NfHSsI |
|
|
K+TuvC7qOah0WLFhcsXWn2+dDV1bXuAeC769TkqkpHhdXfUHnVgK3Pv7u3rVPT5AMeFUGxRB2dP4 |
|
|
CWt6wx7fiLp0qS9RrX75g6Gqw7nfCs6EcBERcIPt7DTe8VStJwf3LWqVwxl4gQl46yhfoqwEO+I= |
|
|
--------------10CC6C2609EB38DA782C5CA9-- |
|
|
|
|
|
--------------779C1631600DF3DB8C02E53A--"#; |
|
|
|
|
|
let message = MimeMessage::from_bytes(&context.ctx, &raw[..], None) |
|
|
.await |
|
|
.unwrap(); |
|
|
assert_eq!(message.get_subject(), Some("Test subject".to_string())); |
|
|
|
|
|
assert_eq!(message.parts.len(), 1); |
|
|
assert_eq!(message.parts[0].typ, Viewtype::Image); |
|
|
assert_eq!(message.parts[0].msg, "Test subject – Test"); |
|
|
} |
|
|
|
|
|
|
|
|
#[tokio::test(flavor = "multi_thread", worker_threads = 2)] |
|
|
async fn parse_outlook_html_embedded_image() { |
|
|
let context = TestContext::new_alice().await; |
|
|
let raw = br#"From: Anonymous <anonymous@example.org> |
|
|
To: Anonymous <anonymous@example.org> |
|
|
Subject: Delta Chat is great stuff! |
|
|
Date: Tue, 5 May 2020 01:23:45 +0000 |
|
|
MIME-Version: 1.0 |
|
|
Content-Type: multipart/related; |
|
|
boundary="----=_NextPart_000_0003_01D622B3.CA753E60" |
|
|
X-Mailer: Microsoft Outlook 15.0 |
|
|
|
|
|
This is a multipart message in MIME format. |
|
|
|
|
|
------=_NextPart_000_0003_01D622B3.CA753E60 |
|
|
Content-Type: multipart/alternative; |
|
|
boundary="----=_NextPart_001_0004_01D622B3.CA753E60" |
|
|
|
|
|
|
|
|
------=_NextPart_001_0004_01D622B3.CA753E60 |
|
|
Content-Type: text/plain; |
|
|
charset="us-ascii" |
|
|
Content-Transfer-Encoding: 7bit |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
------=_NextPart_001_0004_01D622B3.CA753E60 |
|
|
Content-Type: text/html; |
|
|
charset="us-ascii" |
|
|
Content-Transfer-Encoding: quoted-printable |
|
|
|
|
|
<html> |
|
|
<body> |
|
|
<p> |
|
|
Test<img src="cid:image001.jpg@01D622B3.C9D8D750"> |
|
|
</p> |
|
|
</body> |
|
|
</html> |
|
|
------=_NextPart_001_0004_01D622B3.CA753E60-- |
|
|
|
|
|
------=_NextPart_000_0003_01D622B3.CA753E60 |
|
|
Content-Type: image/jpeg; |
|
|
name="image001.jpg" |
|
|
Content-Transfer-Encoding: base64 |
|
|
Content-ID: <image001.jpg@01D622B3.C9D8D750> |
|
|
|
|
|
ISVb1L3m7z15Wy5w97a2cJg6W8P8YKOYfWn3PJ/UCSFcvCPtvBhcXieiN3M3ljguzG4XK7BnGgxG |
|
|
acAQdY8e0cWz1n+zKPNeNn4Iu3GXAXz4/IPksHk54inl1//0Lv8ggZjljfjnf0q1SPftYI7lpZWT |
|
|
/4aTCkimRrAIcwrQJPnZJRb7BPSC6kfn1QJHMv77mRMz2+4WbdfpyPQQ0CWLJsgVXtBsSMf2Awal |
|
|
n+zZzhGpXyCbWTEw1ccqZcK5KaiKNqWv51N4yVXw9dzJoCvxbYtCFGZZJdx7c+ObDotaF1/9KY4C |
|
|
xJjgK9/NgTXCZP1jYm0XIBnJsFSNg0pnMRETttTuGbOVi1/s/F1RGv5RNZsCUt21d9FhkWQQXsd2 |
|
|
rOzDgTdag6BQCN3hSU9eKW/GhNBuMibRN9eS7Sm1y2qFU1HgGJBQfPPRPLKxXaNi++Zt0tnon2IU |
|
|
8pg5rP/IvStXYQNUQ9SiFdfAUkLU5b1j8ltnka8xl+oXsleSG44GPz6kM0RmwUrGkl4z/+NfHSsI |
|
|
K+TuvC7qOah0WLFhcsXWn2+dDV1bXuAeC769TkqkpHhdXfUHnVgK3Pv7u3rVPT5AMeFUGxRB2dP4 |
|
|
CWt6wx7fiLp0qS9RrX75g6Gqw7nfCs6EcBERcIPt7DTe8VStJwf3LWqVwxl4gQl46yhfoqwEO+I= |
|
|
|
|
|
------=_NextPart_000_0003_01D622B3.CA753E60-- |
|
|
"#; |
|
|
|
|
|
let message = MimeMessage::from_bytes(&context.ctx, &raw[..], None) |
|
|
.await |
|
|
.unwrap(); |
|
|
assert_eq!( |
|
|
message.get_subject(), |
|
|
Some("Delta Chat is great stuff!".to_string()) |
|
|
); |
|
|
|
|
|
assert_eq!(message.parts.len(), 1); |
|
|
assert_eq!(message.parts[0].typ, Viewtype::Image); |
|
|
assert_eq!(message.parts[0].msg, "Delta Chat is great stuff! – Test"); |
|
|
} |
|
|
|
|
|
#[test] |
|
|
fn test_parse_message_id() { |
|
|
let test = parse_message_id("<foobar>"); |
|
|
assert!(test.is_ok()); |
|
|
assert_eq!(test.unwrap(), "foobar"); |
|
|
|
|
|
let test = parse_message_id("<foo> <bar>"); |
|
|
assert!(test.is_ok()); |
|
|
assert_eq!(test.unwrap(), "foo"); |
|
|
|
|
|
let test = parse_message_id(" < foo > <bar>"); |
|
|
assert!(test.is_ok()); |
|
|
assert_eq!(test.unwrap(), "foo"); |
|
|
|
|
|
let test = parse_message_id("foo"); |
|
|
assert!(test.is_ok()); |
|
|
assert_eq!(test.unwrap(), "foo"); |
|
|
|
|
|
let test = parse_message_id(" foo "); |
|
|
assert!(test.is_ok()); |
|
|
assert_eq!(test.unwrap(), "foo"); |
|
|
|
|
|
let test = parse_message_id("foo bar"); |
|
|
assert!(test.is_ok()); |
|
|
assert_eq!(test.unwrap(), "foo"); |
|
|
|
|
|
let test = parse_message_id(" foo bar "); |
|
|
assert!(test.is_ok()); |
|
|
assert_eq!(test.unwrap(), "foo"); |
|
|
|
|
|
let test = parse_message_id(""); |
|
|
assert!(test.is_err()); |
|
|
|
|
|
let test = parse_message_id(" "); |
|
|
assert!(test.is_err()); |
|
|
|
|
|
let test = parse_message_id("<>"); |
|
|
assert!(test.is_err()); |
|
|
|
|
|
let test = parse_message_id("<> bar"); |
|
|
assert!(test.is_ok()); |
|
|
assert_eq!(test.unwrap(), "bar"); |
|
|
} |
|
|
|
|
|
#[test] |
|
|
fn test_parse_message_ids() { |
|
|
let test = parse_message_ids(" foo bar <foobar>"); |
|
|
assert_eq!(test.len(), 3); |
|
|
assert_eq!(test[0], "foo"); |
|
|
assert_eq!(test[1], "bar"); |
|
|
assert_eq!(test[2], "foobar"); |
|
|
|
|
|
let test = parse_message_ids(" < foobar >"); |
|
|
assert_eq!(test.len(), 1); |
|
|
assert_eq!(test[0], "foobar"); |
|
|
|
|
|
let test = parse_message_ids(""); |
|
|
assert!(test.is_empty()); |
|
|
|
|
|
let test = parse_message_ids(" "); |
|
|
assert!(test.is_empty()); |
|
|
|
|
|
let test = parse_message_ids(" < "); |
|
|
assert!(test.is_empty()); |
|
|
} |
|
|
|
|
|
#[tokio::test(flavor = "multi_thread", worker_threads = 2)] |
|
|
async fn parse_format_flowed_quote() { |
|
|
let context = TestContext::new_alice().await; |
|
|
let raw = br##"Content-Type: text/plain; charset=utf-8; format=flowed; delsp=no |
|
|
Subject: Re: swipe-to-reply |
|
|
MIME-Version: 1.0 |
|
|
In-Reply-To: <bar@example.org> |
|
|
Date: Tue, 06 Oct 2020 00:00:00 +0000 |
|
|
Chat-Version: 1.0 |
|
|
Message-ID: <foo@example.org> |
|
|
To: bob <bob@example.org> |
|
|
From: alice <alice@example.org> |
|
|
|
|
|
> Long |
|
|
> quote. |
|
|
|
|
|
Reply |
|
|
"##; |
|
|
|
|
|
let message = MimeMessage::from_bytes(&context.ctx, &raw[..], None) |
|
|
.await |
|
|
.unwrap(); |
|
|
assert_eq!( |
|
|
message.get_subject(), |
|
|
Some("Re: swipe-to-reply".to_string()) |
|
|
); |
|
|
|
|
|
assert_eq!(message.parts.len(), 1); |
|
|
assert_eq!(message.parts[0].typ, Viewtype::Text); |
|
|
assert_eq!( |
|
|
message.parts[0].param.get(Param::Quote).unwrap(), |
|
|
"Long quote." |
|
|
); |
|
|
assert_eq!(message.parts[0].msg, "Reply"); |
|
|
} |
|
|
|
|
|
#[tokio::test(flavor = "multi_thread", worker_threads = 2)] |
|
|
async fn parse_quote_without_reply() { |
|
|
let context = TestContext::new_alice().await; |
|
|
let raw = br##"Content-Type: text/plain; charset=utf-8; format=flowed; delsp=no |
|
|
Subject: Re: swipe-to-reply |
|
|
MIME-Version: 1.0 |
|
|
In-Reply-To: <bar@example.org> |
|
|
Date: Tue, 06 Oct 2020 00:00:00 +0000 |
|
|
Message-ID: <foo@example.org> |
|
|
To: bob <bob@example.org> |
|
|
From: alice <alice@example.org> |
|
|
|
|
|
> Just a quote. |
|
|
"##; |
|
|
|
|
|
let message = MimeMessage::from_bytes(&context.ctx, &raw[..], None) |
|
|
.await |
|
|
.unwrap(); |
|
|
assert_eq!( |
|
|
message.get_subject(), |
|
|
Some("Re: swipe-to-reply".to_string()) |
|
|
); |
|
|
|
|
|
assert_eq!(message.parts.len(), 1); |
|
|
assert_eq!(message.parts[0].typ, Viewtype::Text); |
|
|
assert_eq!( |
|
|
message.parts[0].param.get(Param::Quote).unwrap(), |
|
|
"Just a quote." |
|
|
); |
|
|
assert_eq!(message.parts[0].msg, ""); |
|
|
} |
|
|
|
|
|
#[tokio::test(flavor = "multi_thread", worker_threads = 2)] |
|
|
async fn parse_quote_top_posting() { |
|
|
let context = TestContext::new_alice().await; |
|
|
let raw = br##"Content-Type: text/plain; charset=utf-8; format=flowed; delsp=no |
|
|
Subject: Re: top posting |
|
|
MIME-Version: 1.0 |
|
|
In-Reply-To: <bar@example.org> |
|
|
Message-ID: <foo@example.org> |
|
|
To: bob <bob@example.org> |
|
|
From: alice <alice@example.org> |
|
|
|
|
|
A reply. |
|
|
|
|
|
On 2020-10-25, Bob wrote: |
|
|
> A quote. |
|
|
"##; |
|
|
|
|
|
let message = MimeMessage::from_bytes(&context.ctx, &raw[..], None) |
|
|
.await |
|
|
.unwrap(); |
|
|
assert_eq!(message.get_subject(), Some("Re: top posting".to_string())); |
|
|
|
|
|
assert_eq!(message.parts.len(), 1); |
|
|
assert_eq!(message.parts[0].typ, Viewtype::Text); |
|
|
assert_eq!( |
|
|
message.parts[0].param.get(Param::Quote).unwrap(), |
|
|
"A quote." |
|
|
); |
|
|
assert_eq!(message.parts[0].msg, "A reply."); |
|
|
} |
|
|
|
|
|
#[tokio::test(flavor = "multi_thread", worker_threads = 2)] |
|
|
async fn test_attachment_quote() { |
|
|
let context = TestContext::new_alice().await; |
|
|
let raw = include_bytes!("../test-data/message/quote_attach.eml"); |
|
|
let mimeparser = MimeMessage::from_bytes(&context.ctx, &raw[..], None) |
|
|
.await |
|
|
.unwrap(); |
|
|
|
|
|
assert_eq!(mimeparser.get_subject().unwrap(), "Message from Alice"); |
|
|
assert_eq!(mimeparser.parts.len(), 1); |
|
|
assert_eq!(mimeparser.parts[0].msg, "Reply"); |
|
|
assert_eq!( |
|
|
mimeparser.parts[0].param.get(Param::Quote).unwrap(), |
|
|
"Quote" |
|
|
); |
|
|
assert_eq!(mimeparser.parts[0].typ, Viewtype::File); |
|
|
} |
|
|
|
|
|
#[tokio::test(flavor = "multi_thread", worker_threads = 2)] |
|
|
async fn test_quote_div() { |
|
|
let t = TestContext::new_alice().await; |
|
|
let raw = include_bytes!("../test-data/message/gmx-quote.eml"); |
|
|
let mimeparser = MimeMessage::from_bytes(&t, raw, None).await.unwrap(); |
|
|
assert_eq!(mimeparser.parts[0].msg, "YIPPEEEEEE\n\nMulti-line"); |
|
|
assert_eq!(mimeparser.parts[0].param.get(Param::Quote).unwrap(), "Now?"); |
|
|
} |
|
|
|
|
|
#[tokio::test(flavor = "multi_thread", worker_threads = 2)] |
|
|
async fn test_allinkl_blockquote() { |
|
|
|
|
|
let t = TestContext::new_alice().await; |
|
|
let raw = include_bytes!("../test-data/message/allinkl-quote.eml"); |
|
|
let mimeparser = MimeMessage::from_bytes(&t, raw, None).await.unwrap(); |
|
|
assert!(mimeparser.parts[0].msg.starts_with("It's 1.0.")); |
|
|
assert_eq!( |
|
|
mimeparser.parts[0].param.get(Param::Quote).unwrap(), |
|
|
"What's the version?" |
|
|
); |
|
|
} |
|
|
|
|
|
#[tokio::test(flavor = "multi_thread", worker_threads = 2)] |
|
|
async fn test_add_subj_to_multimedia_msg() { |
|
|
let t = TestContext::new_alice().await; |
|
|
receive_imf( |
|
|
&t.ctx, |
|
|
include_bytes!("../test-data/message/subj_with_multimedia_msg.eml"), |
|
|
false, |
|
|
) |
|
|
.await |
|
|
.unwrap(); |
|
|
|
|
|
let chats = Chatlist::try_load(&t.ctx, 0, None, None).await.unwrap(); |
|
|
let msg_id = chats.get_msg_id(0).unwrap().unwrap(); |
|
|
let msg = Message::load_from_db(&t.ctx, msg_id).await.unwrap(); |
|
|
|
|
|
assert_eq!(msg.text, "subj with important info – body text"); |
|
|
assert_eq!(msg.viewtype, Viewtype::Image); |
|
|
assert_eq!(msg.error(), None); |
|
|
assert_eq!(msg.is_dc_message, MessengerMessage::No); |
|
|
assert_eq!(msg.chat_blocked, Blocked::Request); |
|
|
assert_eq!(msg.state, MessageState::InFresh); |
|
|
assert_eq!(msg.get_filebytes(&t).await.unwrap().unwrap(), 2115); |
|
|
assert!(msg.get_file(&t).is_some()); |
|
|
assert_eq!(msg.get_filename().unwrap(), "avatar64x64.png"); |
|
|
assert_eq!(msg.get_width(), 64); |
|
|
assert_eq!(msg.get_height(), 64); |
|
|
assert_eq!(msg.get_filemime().unwrap(), "image/png"); |
|
|
} |
|
|
|
|
|
#[tokio::test(flavor = "multi_thread", worker_threads = 2)] |
|
|
async fn test_mime_modified_plain() { |
|
|
let t = TestContext::new_alice().await; |
|
|
let raw = include_bytes!("../test-data/message/text_plain_unspecified.eml"); |
|
|
let mimeparser = MimeMessage::from_bytes(&t.ctx, raw, None).await.unwrap(); |
|
|
assert!(!mimeparser.is_mime_modified); |
|
|
assert_eq!( |
|
|
mimeparser.parts[0].msg, |
|
|
"This message does not have Content-Type nor Subject." |
|
|
); |
|
|
} |
|
|
|
|
|
#[tokio::test(flavor = "multi_thread", worker_threads = 2)] |
|
|
async fn test_mime_modified_alt_plain_html() { |
|
|
let t = TestContext::new_alice().await; |
|
|
let raw = include_bytes!("../test-data/message/text_alt_plain_html.eml"); |
|
|
let mimeparser = MimeMessage::from_bytes(&t.ctx, raw, None).await.unwrap(); |
|
|
assert!(mimeparser.is_mime_modified); |
|
|
assert_eq!( |
|
|
mimeparser.parts[0].msg, |
|
|
"mime-modified test – this is plain" |
|
|
); |
|
|
} |
|
|
|
|
|
#[tokio::test(flavor = "multi_thread", worker_threads = 2)] |
|
|
async fn test_mime_modified_alt_plain() { |
|
|
let t = TestContext::new_alice().await; |
|
|
let raw = include_bytes!("../test-data/message/text_alt_plain.eml"); |
|
|
let mimeparser = MimeMessage::from_bytes(&t.ctx, raw, None).await.unwrap(); |
|
|
assert!(!mimeparser.is_mime_modified); |
|
|
assert_eq!( |
|
|
mimeparser.parts[0].msg, |
|
|
"mime-modified test – \ |
|
|
mime-modified should not be set set as there is no html and no special stuff;\n\ |
|
|
although not being a delta-message.\n\ |
|
|
test some special html-characters as < > and & but also \" and ' :)" |
|
|
); |
|
|
} |
|
|
|
|
|
#[tokio::test(flavor = "multi_thread", worker_threads = 2)] |
|
|
async fn test_mime_modified_alt_html() { |
|
|
let t = TestContext::new_alice().await; |
|
|
let raw = include_bytes!("../test-data/message/text_alt_html.eml"); |
|
|
let mimeparser = MimeMessage::from_bytes(&t.ctx, raw, None).await.unwrap(); |
|
|
assert!(mimeparser.is_mime_modified); |
|
|
assert_eq!( |
|
|
mimeparser.parts[0].msg, |
|
|
"mime-modified test – mime-modified *set*; simplify is always regarded as lossy." |
|
|
); |
|
|
} |
|
|
|
|
|
#[tokio::test(flavor = "multi_thread", worker_threads = 2)] |
|
|
async fn test_mime_modified_html() { |
|
|
let t = TestContext::new_alice().await; |
|
|
let raw = include_bytes!("../test-data/message/text_html.eml"); |
|
|
let mimeparser = MimeMessage::from_bytes(&t.ctx, raw, None).await.unwrap(); |
|
|
assert!(mimeparser.is_mime_modified); |
|
|
assert_eq!( |
|
|
mimeparser.parts[0].msg, |
|
|
"mime-modified test – mime-modified *set*; simplify is always regarded as lossy." |
|
|
); |
|
|
} |
|
|
|
|
|
#[tokio::test(flavor = "multi_thread", worker_threads = 2)] |
|
|
async fn test_mime_modified_large_plain() -> Result<()> { |
|
|
let t = TestContext::new_alice().await; |
|
|
|
|
|
static REPEAT_TXT: &str = "this text with 42 chars is just repeated.\n"; |
|
|
static REPEAT_CNT: usize = 2000; |
|
|
let long_txt = format!("From: alice@c.de\n\n{}", REPEAT_TXT.repeat(REPEAT_CNT)); |
|
|
assert_eq!(long_txt.matches("just repeated").count(), REPEAT_CNT); |
|
|
assert!(long_txt.len() > DC_DESIRED_TEXT_LEN); |
|
|
|
|
|
{ |
|
|
let mimemsg = MimeMessage::from_bytes(&t, long_txt.as_ref(), None).await?; |
|
|
assert!(mimemsg.is_mime_modified); |
|
|
assert!( |
|
|
mimemsg.parts[0].msg.matches("just repeated").count() |
|
|
<= DC_DESIRED_TEXT_LEN / REPEAT_TXT.len() |
|
|
); |
|
|
assert!(mimemsg.parts[0].msg.len() <= DC_DESIRED_TEXT_LEN + DC_ELLIPSIS.len()); |
|
|
} |
|
|
|
|
|
t.set_config(Config::Bot, Some("1")).await?; |
|
|
|
|
|
{ |
|
|
let mimemsg = MimeMessage::from_bytes(&t, long_txt.as_ref(), None).await?; |
|
|
assert!(!mimemsg.is_mime_modified); |
|
|
assert_eq!( |
|
|
format!("{}\n", mimemsg.parts[0].msg), |
|
|
REPEAT_TXT.repeat(REPEAT_CNT) |
|
|
); |
|
|
} |
|
|
|
|
|
Ok(()) |
|
|
} |
|
|
|
|
|
#[tokio::test(flavor = "multi_thread", worker_threads = 2)] |
|
|
async fn test_x_microsoft_original_message_id() { |
|
|
let t = TestContext::new_alice().await; |
|
|
let message = MimeMessage::from_bytes(&t, b"Date: Wed, 17 Feb 2021 15:45:15 +0000\n\ |
|
|
Chat-Version: 1.0\n\ |
|
|
Message-ID: <DBAPR03MB1180CE51A1BFE265BD018D4790869@DBAPR03MB6691.eurprd03.prod.outlook.com>\n\ |
|
|
To: Bob <bob@example.org>\n\ |
|
|
From: Alice <alice@example.org>\n\ |
|
|
Subject: Message from Alice\n\ |
|
|
Content-Type: text/plain\n\ |
|
|
X-Microsoft-Original-Message-ID: <Mr.6Dx7ITn4w38.n9j7epIcuQI@outlook.com>\n\ |
|
|
MIME-Version: 1.0\n\ |
|
|
\n\ |
|
|
Does it work with outlook now?\n\ |
|
|
", None) |
|
|
.await |
|
|
.unwrap(); |
|
|
assert_eq!( |
|
|
message.get_rfc724_mid(), |
|
|
Some("Mr.6Dx7ITn4w38.n9j7epIcuQI@outlook.com".to_string()) |
|
|
); |
|
|
} |
|
|
|
|
|
|
|
|
#[tokio::test(flavor = "multi_thread", worker_threads = 2)] |
|
|
async fn test_x_microsoft_original_message_id_precedence() -> Result<()> { |
|
|
let mut tcm = TestContextManager::new(); |
|
|
let alice = tcm.alice().await; |
|
|
let bob = tcm.bob().await; |
|
|
|
|
|
let bob_chat_id = tcm.send_recv_accept(&alice, &bob, "hi").await.chat_id; |
|
|
chat::send_text_msg(&bob, bob_chat_id, "hi!".to_string()).await?; |
|
|
let mut sent_msg = bob.pop_sent_msg().await; |
|
|
|
|
|
|
|
|
|
|
|
sent_msg.payload = sent_msg.payload.replace( |
|
|
"Message-ID:", |
|
|
"X-Microsoft-Original-Message-ID: <fake-message-id@example.net>\r\nMessage-ID:", |
|
|
); |
|
|
|
|
|
let msg = alice.recv_msg(&sent_msg).await; |
|
|
assert!(!msg.rfc724_mid.contains("fake-message-id")); |
|
|
Ok(()) |
|
|
} |
|
|
|
|
|
#[tokio::test(flavor = "multi_thread", worker_threads = 2)] |
|
|
async fn test_long_in_reply_to() -> Result<()> { |
|
|
let t = TestContext::new_alice().await; |
|
|
|
|
|
|
|
|
|
|
|
let raw = br"Date: Thu, 28 Jan 2021 00:26:57 +0000 |
|
|
Chat-Version: 1.0\n\ |
|
|
Message-ID: <ABCDEFGH.1234567_AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA@mailjet.com> |
|
|
To: Bob <bob@example.org> |
|
|
From: Alice <alice@example.org> |
|
|
Subject: ... |
|
|
|
|
|
Some quote. |
|
|
"; |
|
|
receive_imf(&t, raw, false).await?; |
|
|
|
|
|
|
|
|
let raw = br"In-Reply-To: |
|
|
<ABCDEFGH.1234567_AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA@mailjet.com> |
|
|
Date: Thu, 28 Jan 2021 00:26:57 +0000 |
|
|
Chat-Version: 1.0\n\ |
|
|
Message-ID: <foobar@example.org> |
|
|
To: Alice <alice@example.org> |
|
|
From: Bob <bob@example.org> |
|
|
Subject: ... |
|
|
|
|
|
> Some quote. |
|
|
|
|
|
Some reply |
|
|
"; |
|
|
|
|
|
receive_imf(&t, raw, false).await?; |
|
|
|
|
|
let msg = t.get_last_msg().await; |
|
|
assert_eq!(msg.get_text(), "Some reply"); |
|
|
let quoted_message = msg.quoted_message(&t).await?.unwrap(); |
|
|
assert_eq!(quoted_message.get_text(), "Some quote."); |
|
|
|
|
|
Ok(()) |
|
|
} |
|
|
|
|
|
|
|
|
#[tokio::test(flavor = "multi_thread", worker_threads = 2)] |
|
|
async fn test_outgoing_wants_mdn() -> Result<()> { |
|
|
let alice = TestContext::new_alice().await; |
|
|
let bob = TestContext::new_bob().await; |
|
|
|
|
|
let raw = br"Date: Thu, 28 Jan 2021 00:26:57 +0000 |
|
|
Chat-Version: 1.0\n\ |
|
|
Message-ID: <foobarbaz@example.org> |
|
|
To: Bob <bob@example.org> |
|
|
From: Alice <alice@example.org> |
|
|
Subject: subject |
|
|
Chat-Disposition-Notification-To: alice@example.org |
|
|
|
|
|
Message. |
|
|
"; |
|
|
|
|
|
|
|
|
receive_imf(&bob, raw, false).await?; |
|
|
let msg = bob.get_last_msg().await; |
|
|
|
|
|
assert!(msg.param.get_bool(Param::WantsMdn).unwrap()); |
|
|
|
|
|
|
|
|
receive_imf(&alice, raw, false).await?; |
|
|
let msg = alice.get_last_msg().await; |
|
|
|
|
|
assert!(msg.param.get_bool(Param::WantsMdn).is_none()); |
|
|
|
|
|
Ok(()) |
|
|
} |
|
|
|
|
|
#[tokio::test(flavor = "multi_thread", worker_threads = 2)] |
|
|
async fn test_ignore_read_receipt_to_self() -> Result<()> { |
|
|
let alice = TestContext::new_alice().await; |
|
|
|
|
|
|
|
|
receive_imf( |
|
|
&alice, |
|
|
"Received: (Postfix, from userid 1000); Mon, 4 Dec 2006 14:51:39 +0100 (CET)\n\ |
|
|
From: alice@example.org\n\ |
|
|
To: bob@example.net\n\ |
|
|
Subject: foo\n\ |
|
|
Message-ID: first@example.com\n\ |
|
|
Chat-Version: 1.0\n\ |
|
|
Chat-Disposition-Notification-To: alice@example.org\n\ |
|
|
Date: Sun, 22 Mar 2020 22:37:57 +0000\n\ |
|
|
\n\ |
|
|
hello\n" |
|
|
.as_bytes(), |
|
|
false, |
|
|
) |
|
|
.await?; |
|
|
let msg = alice.get_last_msg().await; |
|
|
assert_eq!(msg.state, MessageState::OutDelivered); |
|
|
|
|
|
|
|
|
|
|
|
receive_imf( |
|
|
&alice, |
|
|
"Received: (Postfix, from userid 1000); Mon, 4 Dec 2006 14:51:39 +0100 (CET)\n\ |
|
|
From: alice@example.org\n\ |
|
|
To: alice@example.org\n\ |
|
|
Subject: message opened\n\ |
|
|
Date: Sun, 22 Mar 2020 23:37:57 +0000\n\ |
|
|
Chat-Version: 1.0\n\ |
|
|
Message-ID: second@example.com\n\ |
|
|
Content-Type: multipart/report; report-type=disposition-notification; boundary=\"SNIPP\"\n\ |
|
|
\n\ |
|
|
\n\ |
|
|
--SNIPP\n\ |
|
|
Content-Type: text/plain; charset=utf-8\n\ |
|
|
\n\ |
|
|
Read receipts do not guarantee sth. was read.\n\ |
|
|
\n\ |
|
|
\n\ |
|
|
--SNIPP\n\ |
|
|
Content-Type: message/disposition-notification\n\ |
|
|
\n\ |
|
|
Original-Recipient: rfc822;bob@example.com\n\ |
|
|
Final-Recipient: rfc822;bob@example.com\n\ |
|
|
Original-Message-ID: <first@example.com>\n\ |
|
|
Disposition: manual-action/MDN-sent-automatically; displayed\n\ |
|
|
\n\ |
|
|
\n\ |
|
|
--SNIPP--" |
|
|
.as_bytes(), |
|
|
false, |
|
|
) |
|
|
.await?; |
|
|
|
|
|
|
|
|
let msg = Message::load_from_db(&alice, msg.id).await?; |
|
|
assert_eq!(msg.state, MessageState::OutDelivered); |
|
|
|
|
|
Ok(()) |
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#[tokio::test(flavor = "multi_thread", worker_threads = 2)] |
|
|
async fn test_ms_exchange_mdn() -> Result<()> { |
|
|
let t = TestContext::new_alice().await; |
|
|
|
|
|
let original = |
|
|
include_bytes!("../test-data/message/ms_exchange_report_original_message.eml"); |
|
|
receive_imf(&t, original, false).await?; |
|
|
let original_msg_id = t.get_last_msg().await.id; |
|
|
|
|
|
|
|
|
let mdn = |
|
|
include_bytes!("../test-data/message/ms_exchange_report_disposition_notification.eml"); |
|
|
let mimeparser = MimeMessage::from_bytes(&t.ctx, mdn, None).await?; |
|
|
assert_eq!(mimeparser.mdn_reports.len(), 1); |
|
|
assert_eq!( |
|
|
mimeparser.mdn_reports[0].original_message_id.as_deref(), |
|
|
Some("d5904dc344eeb5deaf9bb44603f0c716@posteo.de") |
|
|
); |
|
|
assert!(mimeparser.mdn_reports[0].additional_message_ids.is_empty()); |
|
|
|
|
|
|
|
|
receive_imf(&t, mdn, false).await?; |
|
|
|
|
|
assert_eq!( |
|
|
original_msg_id.get_state(&t).await?, |
|
|
MessageState::OutMdnRcvd |
|
|
); |
|
|
|
|
|
Ok(()) |
|
|
} |
|
|
|
|
|
#[tokio::test(flavor = "multi_thread", worker_threads = 2)] |
|
|
async fn test_receive_eml() -> Result<()> { |
|
|
let alice = TestContext::new_alice().await; |
|
|
|
|
|
let mime_message = MimeMessage::from_bytes( |
|
|
&alice, |
|
|
include_bytes!("../test-data/message/attached-eml.eml"), |
|
|
None, |
|
|
) |
|
|
.await?; |
|
|
|
|
|
assert_eq!(mime_message.parts.len(), 1); |
|
|
assert_eq!(mime_message.parts[0].typ, Viewtype::File); |
|
|
assert_eq!( |
|
|
mime_message.parts[0].mimetype, |
|
|
Some("message/rfc822".parse().unwrap(),) |
|
|
); |
|
|
assert_eq!( |
|
|
mime_message.parts[0].msg, |
|
|
"this is a classic email – I attached the .EML file".to_string() |
|
|
); |
|
|
assert_eq!( |
|
|
mime_message.parts[0].param.get(Param::File), |
|
|
Some("$BLOBDIR/.eml") |
|
|
); |
|
|
|
|
|
assert_eq!(mime_message.parts[0].org_filename, Some(".eml".to_string())); |
|
|
|
|
|
Ok(()) |
|
|
} |
|
|
|
|
|
|
|
|
#[tokio::test(flavor = "multi_thread", worker_threads = 2)] |
|
|
async fn test_parse_reaction() -> Result<()> { |
|
|
let alice = TestContext::new_alice().await; |
|
|
|
|
|
let mime_message = MimeMessage::from_bytes( |
|
|
&alice, |
|
|
"To: alice@example.org\n\ |
|
|
From: bob@example.net\n\ |
|
|
Date: Today, 29 February 2021 00:00:10 -800\n\ |
|
|
Message-ID: 56789@example.net\n\ |
|
|
In-Reply-To: 12345@example.org\n\ |
|
|
Subject: Meeting\n\ |
|
|
Mime-Version: 1.0 (1.0)\n\ |
|
|
Content-Type: text/plain; charset=utf-8\n\ |
|
|
Content-Disposition: reaction\n\ |
|
|
\n\ |
|
|
\u{1F44D}" |
|
|
.as_bytes(), |
|
|
None, |
|
|
) |
|
|
.await?; |
|
|
|
|
|
assert_eq!(mime_message.parts.len(), 1); |
|
|
assert_eq!(mime_message.parts[0].is_reaction, true); |
|
|
assert_eq!( |
|
|
mime_message |
|
|
.get_header(HeaderDef::InReplyTo) |
|
|
.and_then(|msgid| parse_message_id(msgid).ok()) |
|
|
.unwrap(), |
|
|
"12345@example.org" |
|
|
); |
|
|
|
|
|
Ok(()) |
|
|
} |
|
|
|
|
|
#[tokio::test(flavor = "multi_thread", worker_threads = 2)] |
|
|
async fn test_jpeg_as_application_octet_stream() -> Result<()> { |
|
|
let context = TestContext::new_alice().await; |
|
|
let raw = include_bytes!("../test-data/message/jpeg-as-application-octet-stream.eml"); |
|
|
|
|
|
let msg = MimeMessage::from_bytes(&context.ctx, &raw[..], None) |
|
|
.await |
|
|
.unwrap(); |
|
|
assert_eq!(msg.parts.len(), 1); |
|
|
assert_eq!(msg.parts[0].typ, Viewtype::Image); |
|
|
|
|
|
receive_imf(&context, &raw[..], false).await?; |
|
|
let msg = context.get_last_msg().await; |
|
|
assert_eq!(msg.get_viewtype(), Viewtype::Image); |
|
|
|
|
|
Ok(()) |
|
|
} |
|
|
|
|
|
#[tokio::test(flavor = "multi_thread", worker_threads = 2)] |
|
|
async fn test_schleuder() -> Result<()> { |
|
|
let context = TestContext::new_alice().await; |
|
|
let raw = include_bytes!("../test-data/message/schleuder.eml"); |
|
|
|
|
|
let msg = MimeMessage::from_bytes(&context.ctx, &raw[..], None) |
|
|
.await |
|
|
.unwrap(); |
|
|
assert_eq!(msg.parts.len(), 2); |
|
|
|
|
|
|
|
|
assert_eq!(msg.parts[0].typ, Viewtype::Text); |
|
|
|
|
|
|
|
|
assert_eq!(msg.parts[1].typ, Viewtype::Text); |
|
|
assert_eq!(msg.parts[1].msg, "hello,\nbye"); |
|
|
|
|
|
Ok(()) |
|
|
} |
|
|
|
|
|
#[tokio::test(flavor = "multi_thread", worker_threads = 2)] |
|
|
async fn test_tlsrpt() -> Result<()> { |
|
|
let context = TestContext::new_alice().await; |
|
|
let raw = include_bytes!("../test-data/message/tlsrpt.eml"); |
|
|
|
|
|
let msg = MimeMessage::from_bytes(&context.ctx, &raw[..], None) |
|
|
.await |
|
|
.unwrap(); |
|
|
assert_eq!(msg.parts.len(), 1); |
|
|
|
|
|
assert_eq!(msg.parts[0].typ, Viewtype::File); |
|
|
assert_eq!(msg.parts[0].msg, "Report Domain: nine.testrun.org Submitter: google.com Report-ID: <2024.01.20T00.00.00Z+nine.testrun.org@google.com> – This is an aggregate TLS report from google.com"); |
|
|
|
|
|
Ok(()) |
|
|
} |
|
|
|
|
|
#[tokio::test(flavor = "multi_thread", worker_threads = 2)] |
|
|
async fn test_time_in_future() -> Result<()> { |
|
|
let alice = TestContext::new_alice().await; |
|
|
|
|
|
let beginning_time = time(); |
|
|
|
|
|
|
|
|
|
|
|
let mime_message = MimeMessage::from_bytes( |
|
|
&alice, |
|
|
b"To: alice@example.org\n\ |
|
|
From: bob@example.net\n\ |
|
|
Date: Today, 29 February 3004 00:00:10 -800\n\ |
|
|
Message-ID: 56789@example.net\n\ |
|
|
Subject: Meeting\n\ |
|
|
Mime-Version: 1.0 (1.0)\n\ |
|
|
Content-Type: text/plain; charset=utf-8\n\ |
|
|
\n\ |
|
|
Hi", |
|
|
None, |
|
|
) |
|
|
.await?; |
|
|
|
|
|
|
|
|
|
|
|
assert!(mime_message.decryption_info.message_time <= time() + 60); |
|
|
assert!(mime_message.decryption_info.message_time >= beginning_time + 60); |
|
|
assert_eq!( |
|
|
mime_message.decryption_info.message_time, |
|
|
mime_message.timestamp_sent |
|
|
); |
|
|
assert!(mime_message.timestamp_rcvd <= time()); |
|
|
|
|
|
Ok(()) |
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
#[tokio::test(flavor = "multi_thread", worker_threads = 2)] |
|
|
async fn test_bot_no_subject() { |
|
|
let context = TestContext::new().await; |
|
|
context.set_config(Config::Bot, Some("1")).await.unwrap(); |
|
|
let raw = br#"Message-ID: <foobar@example.org> |
|
|
From: foo <foo@example.org> |
|
|
Subject: Some subject |
|
|
To: bar@example.org |
|
|
MIME-Version: 1.0 |
|
|
Content-Type: text/plain; charset=utf-8 |
|
|
|
|
|
/help |
|
|
"#; |
|
|
|
|
|
let message = MimeMessage::from_bytes(&context.ctx, &raw[..], None) |
|
|
.await |
|
|
.unwrap(); |
|
|
assert_eq!(message.get_subject(), Some("Some subject".to_string())); |
|
|
|
|
|
assert_eq!(message.parts.len(), 1); |
|
|
assert_eq!(message.parts[0].typ, Viewtype::Text); |
|
|
|
|
|
assert_eq!(message.parts[0].msg, "/help"); |
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#[tokio::test(flavor = "multi_thread", worker_threads = 2)] |
|
|
async fn test_take_last_header() { |
|
|
let context = TestContext::new().await; |
|
|
|
|
|
|
|
|
let raw = b"From: mallory@example.org\n\ |
|
|
From: alice@example.org\n\ |
|
|
Content-Type: text/plain\n\ |
|
|
Chat-Version: 1.0\n\ |
|
|
\n\ |
|
|
Hello\n\ |
|
|
"; |
|
|
|
|
|
let mimeparser = MimeMessage::from_bytes(&context.ctx, &raw[..], None) |
|
|
.await |
|
|
.unwrap(); |
|
|
assert_eq!( |
|
|
mimeparser.get_header(HeaderDef::From_).unwrap(), |
|
|
"alice@example.org" |
|
|
); |
|
|
} |
|
|
} |
|
|
|