aboutsummaryrefslogtreecommitdiff
path: root/src/process_mail.rs
diff options
context:
space:
mode:
authorMroik <mroik@delayed.space>2026-04-10 00:21:25 +0200
committerMroik <mroik@delayed.space>2026-04-13 06:56:11 +0200
commitb336fd39444e8089d35a7a2bd4c0c3e8228c6c36 (patch)
tree945f577f4c8b1d8c9e58b10d39e38832ec77391c /src/process_mail.rs
parent0ff548961a68213487faa85b7b01cf717bb27268 (diff)
Add mail processing scaffolding
After receiving the email we don't want to process it in the same thread as soon as we can, instead we queue it to a MailProcessor. This allows us to be more flexible with the pipeline and reduce the amount of concurrency for the database connection. This also helps with writing possible fences around resource consumption. Signed-off-by: Mroik <mroik@delayed.space>
Diffstat (limited to 'src/process_mail.rs')
-rw-r--r--src/process_mail.rs23
1 files changed, 23 insertions, 0 deletions
diff --git a/src/process_mail.rs b/src/process_mail.rs
new file mode 100644
index 0000000..5a22ce1
--- /dev/null
+++ b/src/process_mail.rs
@@ -0,0 +1,23 @@
+use anyhow::Result;
+use tokio::sync::mpsc::{Receiver, Sender};
+
+use crate::model::Mail;
+
+struct MailProcessor {
+ rx: Receiver<Mail>,
+ tx: Sender<Mail>,
+}
+
+// TODO: Store first then forward. On complete forward remove from db, otherwise save db with the
+// emails to send to.
+impl MailProcessor {
+ async fn run(&mut self) -> Result<()> {
+ // TODO: Check againts self.rx.is_closed() instead to stop the program before consuming all
+ // of the queue. Store the emails not yet processed and restore the queue upon startup.
+ while let Some(mail) = self.rx.recv().await {
+ todo!()
+ }
+
+ Ok(())
+ }
+}
XMR address: 854DmXNrxULU3ZFJVs4Wc8PFhbq29RhqHhY8W6cdWrtFN3qmooKyyeYPcDzZTNRxphhJ5UzASQfAdEMwSteVqymk28aLhqj