mirror of
https://github.com/chatmail/core.git
synced 2026-04-20 15:06:30 +03:00
Existing setups already have the folders created and for new setups only INBOX should be used.
141 lines
4.5 KiB
Rust
141 lines
4.5 KiB
Rust
use std::time::Duration;
|
|
|
|
use anyhow::{Context as _, Result};
|
|
use async_channel::Receiver;
|
|
use async_imap::extensions::idle::IdleResponse;
|
|
use tokio::time::timeout;
|
|
|
|
use super::Imap;
|
|
use super::session::Session;
|
|
use crate::context::Context;
|
|
use crate::log::warn;
|
|
use crate::net::TIMEOUT;
|
|
use crate::tools::{self, time_elapsed};
|
|
|
|
/// Timeout after which IDLE is finished
|
|
/// if there are no responses from the server.
|
|
///
|
|
/// If `* OK Still here` keepalives are sent more frequently
|
|
/// than this duration, timeout should never be triggered.
|
|
/// For example, Dovecot sends keepalives every 2 minutes by default.
|
|
const IDLE_TIMEOUT: Duration = Duration::from_secs(5 * 60);
|
|
|
|
impl Session {
|
|
pub async fn idle(
|
|
mut self,
|
|
context: &Context,
|
|
idle_interrupt_receiver: Receiver<()>,
|
|
folder: &str,
|
|
) -> Result<Self> {
|
|
self.select_with_uidvalidity(context, folder).await?;
|
|
|
|
if self.drain_unsolicited_responses(context)? {
|
|
self.new_mail = true;
|
|
}
|
|
|
|
if self.new_mail {
|
|
info!(
|
|
context,
|
|
"Skipping IDLE in {folder:?} because there may be new mail."
|
|
);
|
|
return Ok(self);
|
|
}
|
|
|
|
if let Ok(()) = idle_interrupt_receiver.try_recv() {
|
|
info!(context, "Skip IDLE in {folder:?} because we got interrupt.");
|
|
return Ok(self);
|
|
}
|
|
|
|
let mut handle = self.inner.idle();
|
|
handle
|
|
.init()
|
|
.await
|
|
.with_context(|| format!("IMAP IDLE protocol failed to init in folder {folder:?}"))?;
|
|
|
|
// At this point IDLE command was sent and we received a "+ idling" response. We will now
|
|
// read from the stream without getting any data for up to `IDLE_TIMEOUT`. If we don't
|
|
// disable read timeout, we would get a timeout after `crate::net::TIMEOUT`, which is a lot
|
|
// shorter than `IDLE_TIMEOUT`.
|
|
handle.as_mut().set_read_timeout(None);
|
|
let (idle_wait, interrupt) = handle.wait_with_timeout(IDLE_TIMEOUT);
|
|
|
|
info!(
|
|
context,
|
|
"IDLE entering wait-on-remote state in folder {folder:?}."
|
|
);
|
|
|
|
// Spawn a task to relay interrupts from `idle_interrupt_receiver`
|
|
// into interruptions of IDLE.
|
|
let interrupt_relay = {
|
|
let context = context.clone();
|
|
let folder = folder.to_string();
|
|
|
|
tokio::spawn(async move {
|
|
idle_interrupt_receiver.recv().await.ok();
|
|
|
|
info!(context, "{folder:?}: Received interrupt, stopping IDLE.");
|
|
|
|
// Drop `interrupt` in order to stop the IMAP IDLE.
|
|
drop(interrupt);
|
|
})
|
|
};
|
|
|
|
match idle_wait.await {
|
|
Ok(IdleResponse::NewData(x)) => {
|
|
info!(context, "{folder:?}: Idle has NewData {x:?}");
|
|
}
|
|
Ok(IdleResponse::Timeout) => {
|
|
info!(context, "{folder:?}: Idle-wait timeout or interruption.");
|
|
}
|
|
Ok(IdleResponse::ManualInterrupt) => {
|
|
info!(context, "{folder:?}: Idle wait was interrupted manually.");
|
|
}
|
|
Err(err) => {
|
|
warn!(context, "{folder:?}: Idle wait errored: {err:?}.");
|
|
}
|
|
}
|
|
|
|
// Abort the task, then await to ensure the future is dropped.
|
|
interrupt_relay.abort();
|
|
interrupt_relay.await.ok();
|
|
|
|
let mut session = tokio::time::timeout(Duration::from_secs(15), handle.done())
|
|
.await
|
|
.with_context(|| format!("{folder}: IMAP IDLE protocol timed out"))?
|
|
.with_context(|| format!("{folder}: IMAP IDLE failed"))?;
|
|
session.as_mut().set_read_timeout(Some(TIMEOUT));
|
|
self.inner = session;
|
|
|
|
// Fetch mail once we exit IDLE.
|
|
self.new_mail = true;
|
|
|
|
Ok(self)
|
|
}
|
|
}
|
|
|
|
impl Imap {
|
|
/// Idle using polling.
|
|
pub(crate) async fn fake_idle(
|
|
&mut self,
|
|
context: &Context,
|
|
watch_folder: String,
|
|
) -> Result<()> {
|
|
let fake_idle_start_time = tools::Time::now();
|
|
|
|
info!(context, "IMAP-fake-IDLEing folder={:?}", watch_folder);
|
|
|
|
// Wait for 60 seconds or until we are interrupted.
|
|
match timeout(Duration::from_secs(60), self.idle_interrupt_receiver.recv()).await {
|
|
Err(_) => info!(context, "Fake IDLE finished."),
|
|
Ok(_) => info!(context, "Fake IDLE interrupted."),
|
|
}
|
|
|
|
info!(
|
|
context,
|
|
"IMAP-fake-IDLE done after {:.4}s",
|
|
time_elapsed(&fake_idle_start_time).as_millis() as f64 / 1000.,
|
|
);
|
|
Ok(())
|
|
}
|
|
}
|