2022-06-29 15:58:31 +00:00
|
|
|
use std::num::NonZeroU32;
|
2022-06-29 13:39:54 +00:00
|
|
|
use std::sync::Arc;
|
|
|
|
|
2024-01-06 10:07:53 +00:00
|
|
|
use anyhow::{anyhow, Error, Result};
|
2023-10-09 10:00:16 +00:00
|
|
|
|
2022-06-29 17:24:21 +00:00
|
|
|
use futures::stream::{FuturesOrdered, StreamExt};
|
2023-10-09 10:00:16 +00:00
|
|
|
|
2024-01-05 11:40:49 +00:00
|
|
|
use imap_codec::imap_types::core::Charset;
|
2024-01-05 09:05:30 +00:00
|
|
|
use imap_codec::imap_types::fetch::{MacroOrMessageDataItemNames, MessageDataItem};
|
2024-01-02 14:35:23 +00:00
|
|
|
use imap_codec::imap_types::flag::{Flag, FlagFetch, FlagPerm, StoreResponse, StoreType};
|
|
|
|
use imap_codec::imap_types::response::{Code, Data, Status};
|
2024-01-05 11:40:49 +00:00
|
|
|
use imap_codec::imap_types::search::SearchKey;
|
2024-01-06 10:07:53 +00:00
|
|
|
use imap_codec::imap_types::sequence::SequenceSet;
|
2023-10-09 10:00:16 +00:00
|
|
|
|
2024-01-05 17:59:19 +00:00
|
|
|
use crate::mail::mailbox::Mailbox;
|
|
|
|
use crate::mail::query::QueryScope;
|
2024-01-06 10:33:56 +00:00
|
|
|
use crate::mail::snapshot::FrozenMailbox;
|
2024-01-05 17:59:19 +00:00
|
|
|
use crate::mail::uidindex::{ImapUid, ImapUidvalidity};
|
|
|
|
|
2024-01-05 09:05:30 +00:00
|
|
|
use crate::imap::attributes::AttributesProxy;
|
2024-01-04 19:54:21 +00:00
|
|
|
use crate::imap::flags;
|
2024-01-06 10:33:56 +00:00
|
|
|
use crate::imap::index::Index;
|
2024-01-05 17:59:19 +00:00
|
|
|
use crate::imap::mail_view::{MailView, SeenFlag};
|
2024-01-02 14:35:23 +00:00
|
|
|
use crate::imap::response::Body;
|
2024-01-06 10:33:40 +00:00
|
|
|
use crate::imap::search;
|
2022-06-29 13:39:54 +00:00
|
|
|
|
|
|
|
const DEFAULT_FLAGS: [Flag; 5] = [
|
|
|
|
Flag::Seen,
|
|
|
|
Flag::Answered,
|
|
|
|
Flag::Flagged,
|
|
|
|
Flag::Deleted,
|
|
|
|
Flag::Draft,
|
|
|
|
];
|
|
|
|
|
|
|
|
/// A MailboxView is responsible for giving the client the information
|
|
|
|
/// it needs about a mailbox, such as an initial summary of the mailbox's
|
|
|
|
/// content and continuous updates indicating when the content
|
|
|
|
/// of the mailbox has been changed.
|
|
|
|
/// To do this, it keeps a variable `known_state` that corresponds to
|
|
|
|
/// what the client knows, and produces IMAP messages to be sent to the
|
|
|
|
/// client that go along updates to `known_state`.
|
2024-01-06 10:33:56 +00:00
|
|
|
pub struct MailboxView(pub FrozenMailbox);
|
2022-06-29 13:39:54 +00:00
|
|
|
|
|
|
|
impl MailboxView {
|
|
|
|
/// Creates a new IMAP view into a mailbox.
|
2024-01-02 14:35:23 +00:00
|
|
|
pub async fn new(mailbox: Arc<Mailbox>) -> Self {
|
2024-01-05 17:59:19 +00:00
|
|
|
Self(mailbox.frozen().await)
|
2022-06-29 13:39:54 +00:00
|
|
|
}
|
|
|
|
|
2024-01-02 14:35:23 +00:00
|
|
|
/// Create an updated view, useful to make a diff
|
|
|
|
/// between what the client knows and new stuff
|
2022-06-30 09:28:03 +00:00
|
|
|
/// Produces a set of IMAP responses describing the change between
|
|
|
|
/// what the client knows and what is actually in the mailbox.
|
2022-07-13 12:21:14 +00:00
|
|
|
/// This does NOT trigger a sync, it bases itself on what is currently
|
|
|
|
/// loaded in RAM by Bayou.
|
2024-01-02 14:35:23 +00:00
|
|
|
pub async fn update(&mut self) -> Result<Vec<Body<'static>>> {
|
2024-01-05 17:59:19 +00:00
|
|
|
let old_snapshot = self.0.update().await;
|
|
|
|
let new_snapshot = &self.0.snapshot;
|
2022-06-29 15:58:31 +00:00
|
|
|
|
|
|
|
let mut data = Vec::<Body>::new();
|
|
|
|
|
2022-07-13 09:39:13 +00:00
|
|
|
// Calculate diff between two mailbox states
|
|
|
|
// See example in IMAP RFC in section on NOOP command:
|
|
|
|
// we want to produce something like this:
|
|
|
|
// C: a047 NOOP
|
|
|
|
// S: * 22 EXPUNGE
|
|
|
|
// S: * 23 EXISTS
|
|
|
|
// S: * 14 FETCH (UID 1305 FLAGS (\Seen \Deleted))
|
|
|
|
// S: a047 OK Noop completed
|
|
|
|
// In other words:
|
|
|
|
// - notify client of expunged mails
|
|
|
|
// - if new mails arrived, notify client of number of existing mails
|
|
|
|
// - if flags changed for existing mails, tell client
|
|
|
|
// (for this last step: if uidvalidity changed, do nothing,
|
|
|
|
// just notify of new uidvalidity and they will resync)
|
|
|
|
|
|
|
|
// - notify client of expunged mails
|
|
|
|
let mut n_expunge = 0;
|
2024-01-05 17:59:19 +00:00
|
|
|
for (i, (_uid, uuid)) in old_snapshot.idx_by_uid.iter().enumerate() {
|
|
|
|
if !new_snapshot.table.contains_key(uuid) {
|
2022-07-13 09:39:13 +00:00
|
|
|
data.push(Body::Data(Data::Expunge(
|
|
|
|
NonZeroU32::try_from((i + 1 - n_expunge) as u32).unwrap(),
|
|
|
|
)));
|
|
|
|
n_expunge += 1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// - if new mails arrived, notify client of number of existing mails
|
2024-01-05 17:59:19 +00:00
|
|
|
if new_snapshot.table.len() != old_snapshot.table.len() - n_expunge
|
|
|
|
|| new_snapshot.uidvalidity != old_snapshot.uidvalidity
|
2022-07-13 09:39:13 +00:00
|
|
|
{
|
2024-01-05 17:59:19 +00:00
|
|
|
data.push(self.exists_status()?);
|
2022-07-13 09:39:13 +00:00
|
|
|
}
|
|
|
|
|
2024-01-05 17:59:19 +00:00
|
|
|
if new_snapshot.uidvalidity != old_snapshot.uidvalidity {
|
2022-06-29 15:58:31 +00:00
|
|
|
// TODO: do we want to push less/more info than this?
|
2024-01-05 17:59:19 +00:00
|
|
|
data.push(self.uidvalidity_status()?);
|
|
|
|
data.push(self.uidnext_status()?);
|
2022-06-29 15:58:31 +00:00
|
|
|
} else {
|
|
|
|
// - if flags changed for existing mails, tell client
|
2024-01-05 17:59:19 +00:00
|
|
|
for (i, (_uid, uuid)) in new_snapshot.idx_by_uid.iter().enumerate() {
|
|
|
|
let old_mail = old_snapshot.table.get(uuid);
|
|
|
|
let new_mail = new_snapshot.table.get(uuid);
|
2022-06-29 15:58:31 +00:00
|
|
|
if old_mail.is_some() && old_mail != new_mail {
|
|
|
|
if let Some((uid, flags)) = new_mail {
|
|
|
|
data.push(Body::Data(Data::Fetch {
|
2024-01-02 14:35:23 +00:00
|
|
|
seq: NonZeroU32::try_from((i + 1) as u32).unwrap(),
|
|
|
|
items: vec![
|
|
|
|
MessageDataItem::Uid(*uid),
|
|
|
|
MessageDataItem::Flags(
|
2024-01-04 19:54:21 +00:00
|
|
|
flags.iter().filter_map(|f| flags::from_str(f)).collect(),
|
2022-06-29 15:58:31 +00:00
|
|
|
),
|
2024-01-02 14:35:23 +00:00
|
|
|
]
|
|
|
|
.try_into()?,
|
2022-06-29 15:58:31 +00:00
|
|
|
}));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2024-01-02 14:35:23 +00:00
|
|
|
Ok(data)
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Generates the necessary IMAP messages so that the client
|
|
|
|
/// has a satisfactory summary of the current mailbox's state.
|
|
|
|
/// These are the messages that are sent in response to a SELECT command.
|
|
|
|
pub fn summary(&self) -> Result<Vec<Body<'static>>> {
|
|
|
|
let mut data = Vec::<Body>::new();
|
|
|
|
data.push(self.exists_status()?);
|
|
|
|
data.push(self.recent_status()?);
|
|
|
|
data.extend(self.flags_status()?.into_iter());
|
|
|
|
data.push(self.uidvalidity_status()?);
|
|
|
|
data.push(self.uidnext_status()?);
|
2022-06-29 15:58:31 +00:00
|
|
|
|
|
|
|
Ok(data)
|
|
|
|
}
|
|
|
|
|
2024-01-02 14:35:23 +00:00
|
|
|
pub async fn store<'a>(
|
2022-07-12 15:32:57 +00:00
|
|
|
&mut self,
|
|
|
|
sequence_set: &SequenceSet,
|
|
|
|
kind: &StoreType,
|
|
|
|
_response: &StoreResponse,
|
2024-01-02 14:35:23 +00:00
|
|
|
flags: &[Flag<'a>],
|
2022-07-13 13:00:13 +00:00
|
|
|
is_uid_store: &bool,
|
2024-01-02 14:35:23 +00:00
|
|
|
) -> Result<Vec<Body<'static>>> {
|
2024-01-05 17:59:19 +00:00
|
|
|
self.0.sync().await?;
|
2022-07-13 12:21:14 +00:00
|
|
|
|
2022-07-12 15:32:57 +00:00
|
|
|
let flags = flags.iter().map(|x| x.to_string()).collect::<Vec<_>>();
|
|
|
|
|
2024-01-06 10:07:53 +00:00
|
|
|
let mails = self.index().fetch(sequence_set, *is_uid_store)?;
|
2023-10-10 15:59:34 +00:00
|
|
|
for mi in mails.iter() {
|
2022-07-12 15:32:57 +00:00
|
|
|
match kind {
|
|
|
|
StoreType::Add => {
|
2024-01-05 17:59:19 +00:00
|
|
|
self.0.mailbox.add_flags(mi.uuid, &flags[..]).await?;
|
2022-07-12 15:32:57 +00:00
|
|
|
}
|
|
|
|
StoreType::Remove => {
|
2024-01-05 17:59:19 +00:00
|
|
|
self.0.mailbox.del_flags(mi.uuid, &flags[..]).await?;
|
2022-07-12 15:32:57 +00:00
|
|
|
}
|
|
|
|
StoreType::Replace => {
|
2024-01-05 17:59:19 +00:00
|
|
|
self.0.mailbox.set_flags(mi.uuid, &flags[..]).await?;
|
2022-07-12 15:32:57 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-07-21 10:44:58 +00:00
|
|
|
// @TODO: handle _response
|
2022-07-12 15:32:57 +00:00
|
|
|
self.update().await
|
|
|
|
}
|
|
|
|
|
2024-01-02 14:35:23 +00:00
|
|
|
pub async fn expunge(&mut self) -> Result<Vec<Body<'static>>> {
|
2024-01-05 17:59:19 +00:00
|
|
|
self.0.sync().await?;
|
|
|
|
let state = self.0.peek().await;
|
2022-07-13 12:21:14 +00:00
|
|
|
|
2022-07-13 09:19:08 +00:00
|
|
|
let deleted_flag = Flag::Deleted.to_string();
|
2022-07-13 12:21:14 +00:00
|
|
|
let msgs = state
|
2022-07-13 09:19:08 +00:00
|
|
|
.table
|
|
|
|
.iter()
|
|
|
|
.filter(|(_uuid, (_uid, flags))| flags.iter().any(|x| *x == deleted_flag))
|
|
|
|
.map(|(uuid, _)| *uuid);
|
|
|
|
|
|
|
|
for msg in msgs {
|
2024-01-05 17:59:19 +00:00
|
|
|
self.0.mailbox.delete(msg).await?;
|
2022-07-13 09:19:08 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
self.update().await
|
2022-07-13 09:00:35 +00:00
|
|
|
}
|
|
|
|
|
2022-07-21 10:44:58 +00:00
|
|
|
pub async fn copy(
|
|
|
|
&self,
|
|
|
|
sequence_set: &SequenceSet,
|
|
|
|
to: Arc<Mailbox>,
|
|
|
|
is_uid_copy: &bool,
|
|
|
|
) -> Result<(ImapUidvalidity, Vec<(ImapUid, ImapUid)>)> {
|
2024-01-06 10:07:53 +00:00
|
|
|
let mails = self.index().fetch(sequence_set, *is_uid_copy)?;
|
2022-07-21 10:44:58 +00:00
|
|
|
|
|
|
|
let mut new_uuids = vec![];
|
2023-10-10 15:59:34 +00:00
|
|
|
for mi in mails.iter() {
|
2024-01-05 17:59:19 +00:00
|
|
|
new_uuids.push(to.copy_from(&self.0.mailbox, mi.uuid).await?);
|
2022-07-21 10:44:58 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
let mut ret = vec![];
|
|
|
|
let to_state = to.current_uid_index().await;
|
2023-10-10 15:59:34 +00:00
|
|
|
for (mi, new_uuid) in mails.iter().zip(new_uuids.iter()) {
|
2022-07-21 10:44:58 +00:00
|
|
|
let dest_uid = to_state
|
|
|
|
.table
|
|
|
|
.get(new_uuid)
|
|
|
|
.ok_or(anyhow!("copied mail not in destination mailbox"))?
|
|
|
|
.0;
|
2023-10-10 15:59:34 +00:00
|
|
|
ret.push((mi.uid, dest_uid));
|
2022-07-21 10:44:58 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
Ok((to_state.uidvalidity, ret))
|
|
|
|
}
|
|
|
|
|
2024-01-03 14:00:05 +00:00
|
|
|
pub async fn r#move(
|
|
|
|
&mut self,
|
|
|
|
sequence_set: &SequenceSet,
|
|
|
|
to: Arc<Mailbox>,
|
|
|
|
is_uid_copy: &bool,
|
|
|
|
) -> Result<(ImapUidvalidity, Vec<(ImapUid, ImapUid)>, Vec<Body<'static>>)> {
|
2024-01-06 10:07:53 +00:00
|
|
|
let mails = self.index().fetch(sequence_set, *is_uid_copy)?;
|
2024-01-03 14:00:05 +00:00
|
|
|
|
|
|
|
for mi in mails.iter() {
|
2024-01-05 17:59:19 +00:00
|
|
|
to.move_from(&self.0.mailbox, mi.uuid).await?;
|
2024-01-03 14:00:05 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
let mut ret = vec![];
|
|
|
|
let to_state = to.current_uid_index().await;
|
2024-01-05 14:36:40 +00:00
|
|
|
for mi in mails.iter() {
|
2024-01-03 14:00:05 +00:00
|
|
|
let dest_uid = to_state
|
|
|
|
.table
|
2024-01-05 14:36:40 +00:00
|
|
|
.get(&mi.uuid)
|
2024-01-03 14:00:05 +00:00
|
|
|
.ok_or(anyhow!("moved mail not in destination mailbox"))?
|
|
|
|
.0;
|
|
|
|
ret.push((mi.uid, dest_uid));
|
|
|
|
}
|
|
|
|
|
|
|
|
let update = self.update().await?;
|
|
|
|
|
|
|
|
Ok((to_state.uidvalidity, ret, update))
|
|
|
|
}
|
|
|
|
|
2022-06-29 17:24:21 +00:00
|
|
|
/// Looks up state changes in the mailbox and produces a set of IMAP
|
|
|
|
/// responses describing the new state.
|
2024-01-02 14:35:23 +00:00
|
|
|
pub async fn fetch<'b>(
|
2022-06-29 17:24:21 +00:00
|
|
|
&self,
|
|
|
|
sequence_set: &SequenceSet,
|
2024-01-02 19:23:33 +00:00
|
|
|
attributes: &'b MacroOrMessageDataItemNames<'static>,
|
2022-07-13 13:00:13 +00:00
|
|
|
is_uid_fetch: &bool,
|
2024-01-02 19:23:33 +00:00
|
|
|
) -> Result<Vec<Body<'static>>> {
|
2024-01-05 17:59:19 +00:00
|
|
|
// [1/6] Pre-compute data
|
|
|
|
// a. what are the uuids of the emails we want?
|
|
|
|
// b. do we need to fetch the full body?
|
2023-10-09 10:00:16 +00:00
|
|
|
let ap = AttributesProxy::new(attributes, *is_uid_fetch);
|
2024-01-05 17:59:19 +00:00
|
|
|
let query_scope = match ap.need_body() {
|
|
|
|
true => QueryScope::Full,
|
|
|
|
_ => QueryScope::Partial,
|
|
|
|
};
|
2024-01-06 10:07:53 +00:00
|
|
|
let mail_idx_list = self.index().fetch(sequence_set, *is_uid_fetch)?;
|
2023-10-12 10:21:59 +00:00
|
|
|
|
2024-01-05 17:59:19 +00:00
|
|
|
// [2/6] Fetch the emails
|
2024-01-06 10:33:56 +00:00
|
|
|
let uuids = mail_idx_list
|
|
|
|
.iter()
|
|
|
|
.map(|midx| midx.uuid)
|
|
|
|
.collect::<Vec<_>>();
|
2024-01-06 10:33:40 +00:00
|
|
|
let query_result = self.0.query(&uuids, query_scope).fetch().await?;
|
2024-01-06 10:33:56 +00:00
|
|
|
|
2024-01-05 17:59:19 +00:00
|
|
|
// [3/6] Derive an IMAP-specific view from the results, apply the filters
|
2024-01-06 10:33:56 +00:00
|
|
|
let views = query_result
|
|
|
|
.iter()
|
2024-01-06 10:07:53 +00:00
|
|
|
.zip(mail_idx_list.into_iter())
|
|
|
|
.map(|(qr, midx)| MailView::new(qr, midx))
|
2023-10-12 10:21:59 +00:00
|
|
|
.collect::<Result<Vec<_>, _>>()?;
|
2023-10-09 10:00:16 +00:00
|
|
|
|
2024-01-06 10:33:40 +00:00
|
|
|
// [4/6] Apply the IMAP transformation, bubble up any error
|
|
|
|
// We get 2 results:
|
|
|
|
// - The one we send to the client
|
|
|
|
// - The \Seen flags we must set internally
|
2024-01-05 17:59:19 +00:00
|
|
|
let (flag_mgmt, imap_ret): (Vec<_>, Vec<_>) = views
|
2024-01-02 14:35:23 +00:00
|
|
|
.iter()
|
2024-01-06 10:33:40 +00:00
|
|
|
.map(|mv| mv.filter(&ap).map(|(body, seen)| ((mv, seen), body)))
|
|
|
|
.collect::<Result<Vec<_>, _>>()?
|
|
|
|
.into_iter()
|
2024-01-05 17:59:19 +00:00
|
|
|
.unzip();
|
2024-01-05 11:40:49 +00:00
|
|
|
|
2024-01-06 10:33:40 +00:00
|
|
|
// [5/6] Register the \Seen flags
|
2024-01-05 17:59:19 +00:00
|
|
|
flag_mgmt
|
2023-10-12 10:21:59 +00:00
|
|
|
.iter()
|
2024-01-05 17:59:19 +00:00
|
|
|
.filter(|(_mv, seen)| matches!(seen, SeenFlag::MustAdd))
|
|
|
|
.map(|(mv, _seen)| async move {
|
2023-10-12 10:21:59 +00:00
|
|
|
let seen_flag = Flag::Seen.to_string();
|
2024-01-06 10:33:56 +00:00
|
|
|
self.0
|
|
|
|
.mailbox
|
|
|
|
.add_flags(*mv.query_result.uuid(), &[seen_flag])
|
|
|
|
.await?;
|
2023-10-12 10:21:59 +00:00
|
|
|
Ok::<_, anyhow::Error>(())
|
|
|
|
})
|
2024-01-05 17:59:19 +00:00
|
|
|
.collect::<FuturesOrdered<_>>()
|
2023-10-12 10:21:59 +00:00
|
|
|
.collect::<Vec<_>>()
|
|
|
|
.await
|
|
|
|
.into_iter()
|
|
|
|
.collect::<Result<_, _>>()?;
|
2023-10-09 10:00:16 +00:00
|
|
|
|
2024-01-05 17:59:19 +00:00
|
|
|
// [6/6] Build the final result that will be sent to the client.
|
|
|
|
Ok(imap_ret)
|
2022-06-29 17:24:21 +00:00
|
|
|
}
|
|
|
|
|
2024-01-06 10:33:40 +00:00
|
|
|
/// A naive search implementation...
|
2024-01-05 11:40:49 +00:00
|
|
|
pub async fn search<'a>(
|
|
|
|
&self,
|
|
|
|
_charset: &Option<Charset<'a>>,
|
2024-01-06 10:33:40 +00:00
|
|
|
search_key: &SearchKey<'a>,
|
|
|
|
uid: bool,
|
2024-01-05 11:40:49 +00:00
|
|
|
) -> Result<Vec<Body<'static>>> {
|
2024-01-05 14:26:57 +00:00
|
|
|
// 1. Compute the subset of sequence identifiers we need to fetch
|
2024-01-06 10:33:40 +00:00
|
|
|
// based on the search query
|
|
|
|
let crit = search::Criteria(search_key);
|
|
|
|
let (seq_set, seq_type) = crit.to_sequence_set();
|
|
|
|
|
|
|
|
// 2. Get the selection
|
|
|
|
let selection = self.index().fetch(&seq_set, seq_type.is_uid())?;
|
|
|
|
|
|
|
|
// 3. Filter the selection based on the ID / UID / Flags
|
2024-01-06 17:51:21 +00:00
|
|
|
let (kept_idx, to_fetch) = crit.filter_on_idx(&selection);
|
2024-01-05 14:26:57 +00:00
|
|
|
|
2024-01-06 17:01:44 +00:00
|
|
|
// 4. Fetch additional info about the emails
|
|
|
|
let query_scope = crit.query_scope();
|
2024-01-06 22:35:23 +00:00
|
|
|
let uuids = to_fetch.iter().map(|midx| midx.uuid).collect::<Vec<_>>();
|
2024-01-06 17:01:44 +00:00
|
|
|
let query_result = self.0.query(&uuids, query_scope).fetch().await?;
|
2024-01-06 10:33:40 +00:00
|
|
|
|
|
|
|
// 5. If needed, filter the selection based on the body
|
2024-01-06 19:40:18 +00:00
|
|
|
let kept_query = crit.filter_on_query(&to_fetch, &query_result)?;
|
2024-01-06 10:33:40 +00:00
|
|
|
|
|
|
|
// 6. Format the result according to the client's taste:
|
|
|
|
// either return UID or ID.
|
2024-01-06 17:51:21 +00:00
|
|
|
let final_selection = kept_idx.into_iter().chain(kept_query.into_iter());
|
2024-01-06 10:33:40 +00:00
|
|
|
let selection_fmt = match uid {
|
2024-01-06 17:51:21 +00:00
|
|
|
true => final_selection.map(|in_idx| in_idx.uid).collect(),
|
|
|
|
_ => final_selection.map(|in_idx| in_idx.i).collect(),
|
2024-01-06 10:33:40 +00:00
|
|
|
};
|
2024-01-05 14:26:57 +00:00
|
|
|
|
2024-01-06 10:33:40 +00:00
|
|
|
Ok(vec![Body::Data(Data::Search(selection_fmt))])
|
2024-01-05 11:40:49 +00:00
|
|
|
}
|
|
|
|
|
2022-06-29 13:39:54 +00:00
|
|
|
// ----
|
2024-01-06 10:07:53 +00:00
|
|
|
fn index<'a>(&'a self) -> Index<'a> {
|
|
|
|
Index(&self.0.snapshot)
|
2022-07-12 15:32:57 +00:00
|
|
|
}
|
|
|
|
|
2022-06-29 13:39:54 +00:00
|
|
|
/// Produce an OK [UIDVALIDITY _] message corresponding to `known_state`
|
2024-01-02 14:35:23 +00:00
|
|
|
fn uidvalidity_status(&self) -> Result<Body<'static>> {
|
2022-06-29 13:39:54 +00:00
|
|
|
let uid_validity = Status::ok(
|
|
|
|
None,
|
2022-07-12 13:59:13 +00:00
|
|
|
Some(Code::UidValidity(self.uidvalidity())),
|
2022-06-29 13:39:54 +00:00
|
|
|
"UIDs valid",
|
|
|
|
)
|
|
|
|
.map_err(Error::msg)?;
|
|
|
|
Ok(Body::Status(uid_validity))
|
|
|
|
}
|
|
|
|
|
2022-07-12 13:59:13 +00:00
|
|
|
pub(crate) fn uidvalidity(&self) -> ImapUidvalidity {
|
2024-01-05 17:59:19 +00:00
|
|
|
self.0.snapshot.uidvalidity
|
2022-07-12 13:59:13 +00:00
|
|
|
}
|
|
|
|
|
2022-06-29 13:39:54 +00:00
|
|
|
/// Produce an OK [UIDNEXT _] message corresponding to `known_state`
|
2024-01-02 14:35:23 +00:00
|
|
|
fn uidnext_status(&self) -> Result<Body<'static>> {
|
2022-06-29 13:39:54 +00:00
|
|
|
let next_uid = Status::ok(
|
|
|
|
None,
|
2022-07-12 13:59:13 +00:00
|
|
|
Some(Code::UidNext(self.uidnext())),
|
2022-06-29 13:39:54 +00:00
|
|
|
"Predict next UID",
|
|
|
|
)
|
|
|
|
.map_err(Error::msg)?;
|
|
|
|
Ok(Body::Status(next_uid))
|
|
|
|
}
|
|
|
|
|
2022-07-12 13:59:13 +00:00
|
|
|
pub(crate) fn uidnext(&self) -> ImapUid {
|
2024-01-05 17:59:19 +00:00
|
|
|
self.0.snapshot.uidnext
|
2022-07-12 13:59:13 +00:00
|
|
|
}
|
|
|
|
|
2022-06-29 13:39:54 +00:00
|
|
|
/// Produce an EXISTS message corresponding to the number of mails
|
|
|
|
/// in `known_state`
|
2024-01-02 14:35:23 +00:00
|
|
|
fn exists_status(&self) -> Result<Body<'static>> {
|
2022-07-12 13:59:13 +00:00
|
|
|
Ok(Body::Data(Data::Exists(self.exists()?)))
|
|
|
|
}
|
|
|
|
|
|
|
|
pub(crate) fn exists(&self) -> Result<u32> {
|
2024-01-05 17:59:19 +00:00
|
|
|
Ok(u32::try_from(self.0.snapshot.idx_by_uid.len())?)
|
2022-06-29 13:39:54 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/// Produce a RECENT message corresponding to the number of
|
|
|
|
/// recent mails in `known_state`
|
2024-01-02 14:35:23 +00:00
|
|
|
fn recent_status(&self) -> Result<Body<'static>> {
|
2022-07-12 13:59:13 +00:00
|
|
|
Ok(Body::Data(Data::Recent(self.recent()?)))
|
|
|
|
}
|
|
|
|
|
|
|
|
pub(crate) fn recent(&self) -> Result<u32> {
|
2022-06-29 13:39:54 +00:00
|
|
|
let recent = self
|
2024-01-05 17:59:19 +00:00
|
|
|
.0
|
|
|
|
.snapshot
|
2022-06-29 13:39:54 +00:00
|
|
|
.idx_by_flag
|
|
|
|
.get(&"\\Recent".to_string())
|
|
|
|
.map(|os| os.len())
|
|
|
|
.unwrap_or(0);
|
2022-07-12 13:59:13 +00:00
|
|
|
Ok(u32::try_from(recent)?)
|
2022-06-29 13:39:54 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/// Produce a FLAGS and a PERMANENTFLAGS message that indicates
|
|
|
|
/// the flags that are in `known_state` + default flags
|
2024-01-02 14:35:23 +00:00
|
|
|
fn flags_status(&self) -> Result<Vec<Body<'static>>> {
|
|
|
|
let mut body = vec![];
|
|
|
|
|
|
|
|
// 1. Collecting all the possible flags in the mailbox
|
|
|
|
// 1.a Fetch them from our index
|
2024-01-06 10:33:56 +00:00
|
|
|
let mut known_flags: Vec<Flag> = self
|
|
|
|
.0
|
2024-01-05 17:59:19 +00:00
|
|
|
.snapshot
|
2022-06-29 13:39:54 +00:00
|
|
|
.idx_by_flag
|
|
|
|
.flags()
|
2024-01-04 19:54:21 +00:00
|
|
|
.filter_map(|f| match flags::from_str(f) {
|
2024-01-02 14:35:23 +00:00
|
|
|
Some(FlagFetch::Flag(fl)) => Some(fl),
|
|
|
|
_ => None,
|
|
|
|
})
|
2022-06-29 13:39:54 +00:00
|
|
|
.collect();
|
2024-01-02 14:35:23 +00:00
|
|
|
// 1.b Merge it with our default flags list
|
2022-06-29 13:52:09 +00:00
|
|
|
for f in DEFAULT_FLAGS.iter() {
|
2024-01-02 14:35:23 +00:00
|
|
|
if !known_flags.contains(f) {
|
|
|
|
known_flags.push(f.clone());
|
2022-06-29 13:52:09 +00:00
|
|
|
}
|
|
|
|
}
|
2024-01-02 14:35:23 +00:00
|
|
|
// 1.c Create the IMAP message
|
|
|
|
body.push(Body::Data(Data::Flags(known_flags.clone())));
|
2022-06-29 13:39:54 +00:00
|
|
|
|
2024-01-02 14:35:23 +00:00
|
|
|
// 2. Returning flags that are persisted
|
|
|
|
// 2.a Always advertise our default flags
|
|
|
|
let mut permanent = DEFAULT_FLAGS
|
|
|
|
.iter()
|
|
|
|
.map(|f| FlagPerm::Flag(f.clone()))
|
|
|
|
.collect::<Vec<_>>();
|
|
|
|
// 2.b Say that we support any keyword flag
|
|
|
|
permanent.push(FlagPerm::Asterisk);
|
|
|
|
// 2.c Create the IMAP message
|
|
|
|
let permanent_flags = Status::ok(
|
|
|
|
None,
|
|
|
|
Some(Code::PermanentFlags(permanent)),
|
|
|
|
"Flags permitted",
|
|
|
|
)
|
|
|
|
.map_err(Error::msg)?;
|
|
|
|
body.push(Body::Status(permanent_flags));
|
2022-06-29 13:39:54 +00:00
|
|
|
|
2024-01-02 14:35:23 +00:00
|
|
|
// Done!
|
|
|
|
Ok(body)
|
2022-06-29 13:39:54 +00:00
|
|
|
}
|
2022-07-13 13:39:52 +00:00
|
|
|
|
|
|
|
pub(crate) fn unseen_count(&self) -> usize {
|
2024-01-05 17:59:19 +00:00
|
|
|
let total = self.0.snapshot.table.len();
|
2024-01-06 10:33:56 +00:00
|
|
|
let seen = self
|
|
|
|
.0
|
2024-01-05 17:59:19 +00:00
|
|
|
.snapshot
|
2022-07-13 13:39:52 +00:00
|
|
|
.idx_by_flag
|
|
|
|
.get(&Flag::Seen.to_string())
|
|
|
|
.map(|x| x.len())
|
|
|
|
.unwrap_or(0);
|
|
|
|
total - seen
|
|
|
|
}
|
2022-06-29 13:39:54 +00:00
|
|
|
}
|
2022-06-29 15:58:31 +00:00
|
|
|
|
2022-07-04 10:07:48 +00:00
|
|
|
#[cfg(test)]
|
|
|
|
mod tests {
|
|
|
|
use super::*;
|
2024-01-02 21:09:45 +00:00
|
|
|
use imap_codec::encode::Encoder;
|
2024-01-04 19:54:21 +00:00
|
|
|
use imap_codec::imap_types::core::NonEmptyVec;
|
2024-01-02 14:35:23 +00:00
|
|
|
use imap_codec::imap_types::fetch::Section;
|
2024-01-05 09:05:30 +00:00
|
|
|
use imap_codec::imap_types::fetch::{MacroOrMessageDataItemNames, MessageDataItemName};
|
2024-01-02 21:09:45 +00:00
|
|
|
use imap_codec::imap_types::response::Response;
|
|
|
|
use imap_codec::ResponseCodec;
|
2022-07-05 13:21:14 +00:00
|
|
|
use std::fs;
|
2022-07-04 10:07:48 +00:00
|
|
|
|
2024-01-04 19:54:21 +00:00
|
|
|
use crate::cryptoblob;
|
2024-01-06 10:33:56 +00:00
|
|
|
use crate::imap::index::MailIndex;
|
2024-01-06 10:14:55 +00:00
|
|
|
use crate::imap::mail_view::MailView;
|
2024-01-04 19:54:21 +00:00
|
|
|
use crate::imap::mime_view;
|
2024-01-05 09:05:30 +00:00
|
|
|
use crate::mail::mailbox::MailMeta;
|
2024-01-06 10:14:55 +00:00
|
|
|
use crate::mail::query::QueryResult;
|
2024-01-06 10:33:56 +00:00
|
|
|
use crate::mail::unique_ident;
|
2024-01-04 19:54:21 +00:00
|
|
|
|
2023-10-12 10:21:59 +00:00
|
|
|
#[test]
|
|
|
|
fn mailview_body_ext() -> Result<()> {
|
|
|
|
let ap = AttributesProxy::new(
|
2024-01-02 21:09:45 +00:00
|
|
|
&MacroOrMessageDataItemNames::MessageDataItemNames(vec![
|
|
|
|
MessageDataItemName::BodyExt {
|
|
|
|
section: Some(Section::Header(None)),
|
|
|
|
partial: None,
|
|
|
|
peek: false,
|
|
|
|
},
|
|
|
|
]),
|
2023-10-12 10:21:59 +00:00
|
|
|
false,
|
|
|
|
);
|
|
|
|
|
|
|
|
let key = cryptoblob::gen_key();
|
|
|
|
let meta = MailMeta {
|
|
|
|
internaldate: 0u64,
|
|
|
|
headers: vec![],
|
|
|
|
message_key: key,
|
|
|
|
rfc822_size: 8usize,
|
|
|
|
};
|
2024-01-06 10:14:55 +00:00
|
|
|
|
|
|
|
let index_entry = (NonZeroU32::MIN, vec![]);
|
|
|
|
let mail_in_idx = MailIndex {
|
2023-10-12 10:21:59 +00:00
|
|
|
i: NonZeroU32::MIN,
|
2024-01-06 10:14:55 +00:00
|
|
|
uid: index_entry.0,
|
2023-10-12 10:21:59 +00:00
|
|
|
uuid: unique_ident::gen_ident(),
|
2024-01-06 10:14:55 +00:00
|
|
|
flags: &index_entry.1,
|
2023-10-12 10:21:59 +00:00
|
|
|
};
|
|
|
|
let rfc822 = b"Subject: hello\r\nFrom: a@a.a\r\nTo: b@b.b\r\nDate: Thu, 12 Oct 2023 08:45:28 +0000\r\n\r\nhello world";
|
2024-01-06 10:14:55 +00:00
|
|
|
let qr = QueryResult::FullResult {
|
|
|
|
uuid: mail_in_idx.uuid.clone(),
|
|
|
|
index: &index_entry,
|
|
|
|
metadata: meta,
|
|
|
|
content: rfc822.to_vec(),
|
2023-10-12 10:21:59 +00:00
|
|
|
};
|
2024-01-06 10:14:55 +00:00
|
|
|
|
|
|
|
let mv = MailView::new(&qr, mail_in_idx)?;
|
2024-01-02 21:09:45 +00:00
|
|
|
let (res_body, _seen) = mv.filter(&ap)?;
|
2023-10-12 10:21:59 +00:00
|
|
|
|
|
|
|
let fattr = match res_body {
|
|
|
|
Body::Data(Data::Fetch {
|
2024-01-02 14:35:23 +00:00
|
|
|
seq: _seq,
|
|
|
|
items: attr,
|
2023-10-12 10:21:59 +00:00
|
|
|
}) => Ok(attr),
|
|
|
|
_ => Err(anyhow!("Not a fetch body")),
|
|
|
|
}?;
|
|
|
|
|
2024-01-02 21:09:45 +00:00
|
|
|
assert_eq!(fattr.as_ref().len(), 1);
|
2023-10-12 10:21:59 +00:00
|
|
|
|
2024-01-02 21:09:45 +00:00
|
|
|
let (sec, _orig, _data) = match &fattr.as_ref()[0] {
|
|
|
|
MessageDataItem::BodyExt {
|
2023-10-12 10:21:59 +00:00
|
|
|
section,
|
|
|
|
origin,
|
|
|
|
data,
|
|
|
|
} => Ok((section, origin, data)),
|
|
|
|
_ => Err(anyhow!("not a body ext message attribute")),
|
|
|
|
}?;
|
|
|
|
|
|
|
|
assert_eq!(sec.as_ref().unwrap(), &Section::Header(None));
|
|
|
|
|
|
|
|
Ok(())
|
|
|
|
}
|
|
|
|
|
2022-07-05 16:27:49 +00:00
|
|
|
/// Future automated test. We use lossy utf8 conversion + lowercase everything,
|
2022-07-05 13:21:14 +00:00
|
|
|
/// so this test might allow invalid results. But at least it allows us to quickly test a
|
|
|
|
/// large variety of emails.
|
|
|
|
/// Keep in mind that special cases must still be tested manually!
|
2022-07-04 10:07:48 +00:00
|
|
|
#[test]
|
2022-07-05 13:21:14 +00:00
|
|
|
fn fetch_body() -> Result<()> {
|
2022-07-05 15:48:10 +00:00
|
|
|
let prefixes = [
|
2023-07-25 17:08:48 +00:00
|
|
|
/* *** MY OWN DATASET *** */
|
2022-07-05 15:48:10 +00:00
|
|
|
"tests/emails/dxflrs/0001_simple",
|
|
|
|
"tests/emails/dxflrs/0002_mime",
|
2022-07-05 16:27:49 +00:00
|
|
|
"tests/emails/dxflrs/0003_mime-in-mime",
|
2022-07-20 13:14:34 +00:00
|
|
|
"tests/emails/dxflrs/0004_msg-in-msg",
|
2023-07-25 17:08:48 +00:00
|
|
|
// eml_codec do not support continuation for the moment
|
2022-07-20 11:58:24 +00:00
|
|
|
//"tests/emails/dxflrs/0005_mail-parser-readme",
|
2023-03-09 10:30:44 +00:00
|
|
|
"tests/emails/dxflrs/0006_single-mime",
|
2023-07-25 17:08:48 +00:00
|
|
|
"tests/emails/dxflrs/0007_raw_msg_in_rfc822",
|
|
|
|
/* *** (STRANGE) RFC *** */
|
|
|
|
//"tests/emails/rfc/000", // must return text/enriched, we return text/plain
|
|
|
|
//"tests/emails/rfc/001", // does not recognize the multipart/external-body, breaks the
|
|
|
|
// whole parsing
|
|
|
|
//"tests/emails/rfc/002", // wrong date in email
|
|
|
|
|
|
|
|
//"tests/emails/rfc/003", // dovecot fixes \r\r: the bytes number is wrong + text/enriched
|
|
|
|
|
|
|
|
/* *** THIRD PARTY *** */
|
|
|
|
//"tests/emails/thirdparty/000", // dovecot fixes \r\r: the bytes number is wrong
|
|
|
|
//"tests/emails/thirdparty/001", // same
|
|
|
|
"tests/emails/thirdparty/002", // same
|
|
|
|
|
2023-10-12 10:21:59 +00:00
|
|
|
/* *** LEGACY *** */
|
|
|
|
//"tests/emails/legacy/000", // same issue with \r\r
|
2022-07-05 15:48:10 +00:00
|
|
|
];
|
2022-07-04 10:07:48 +00:00
|
|
|
|
2022-07-05 15:48:10 +00:00
|
|
|
for pref in prefixes.iter() {
|
|
|
|
println!("{}", pref);
|
|
|
|
let txt = fs::read(format!("{}.eml", pref))?;
|
2024-01-02 21:09:45 +00:00
|
|
|
let oracle = fs::read(format!("{}.dovecot.body", pref))?;
|
2023-07-25 17:08:48 +00:00
|
|
|
let message = eml_codec::parse_message(&txt).unwrap().1;
|
2022-07-04 10:07:48 +00:00
|
|
|
|
2024-01-02 21:09:45 +00:00
|
|
|
let test_repr = Response::Data(Data::Fetch {
|
|
|
|
seq: NonZeroU32::new(1).unwrap(),
|
2024-01-04 19:54:21 +00:00
|
|
|
items: NonEmptyVec::from(MessageDataItem::Body(mime_view::bodystructure(
|
2024-01-02 21:09:45 +00:00
|
|
|
&message.child,
|
|
|
|
)?)),
|
|
|
|
});
|
|
|
|
let test_bytes = ResponseCodec::new().encode(&test_repr).dump();
|
|
|
|
let test_str = String::from_utf8_lossy(&test_bytes).to_lowercase();
|
2022-07-05 13:21:14 +00:00
|
|
|
|
2024-01-02 21:09:45 +00:00
|
|
|
let oracle_str =
|
|
|
|
format!("* 1 FETCH {}\r\n", String::from_utf8_lossy(&oracle)).to_lowercase();
|
2022-07-05 15:48:10 +00:00
|
|
|
|
2024-01-02 21:09:45 +00:00
|
|
|
println!("aerogramme: {}\n\ndovecot: {}\n\n", test_str, oracle_str);
|
2022-07-08 08:23:07 +00:00
|
|
|
//println!("\n\n {} \n\n", String::from_utf8_lossy(&resp));
|
2024-01-02 21:09:45 +00:00
|
|
|
assert_eq!(test_str, oracle_str);
|
2022-07-05 15:48:10 +00:00
|
|
|
}
|
2022-07-04 10:07:48 +00:00
|
|
|
|
|
|
|
Ok(())
|
|
|
|
}
|
|
|
|
}
|