Skip to content

Commit 5b6311d

Browse files
committed
feat(deltachat-repl): allow to send messages when disconnected
If scheduler is not connected, use `send_msg_sync` to create a dedicated connection and send a single message. This allows easily testing SMTP connection establishment.
1 parent a8fcd49 commit 5b6311d

File tree

2 files changed

+12
-1
lines changed

2 files changed

+12
-1
lines changed

deltachat-repl/src/cmdline.rs

+7-1
Original file line numberDiff line numberDiff line change
@@ -922,7 +922,13 @@ pub async fn cmdline(context: Context, line: &str, chat_id: &mut ChatId) -> Resu
922922

923923
let msg = format!("{arg1} {arg2}");
924924

925-
chat::send_text_msg(&context, sel_chat.as_ref().unwrap().get_id(), msg).await?;
925+
if context.is_running().await {
926+
chat::send_text_msg(&context, sel_chat.as_ref().unwrap().get_id(), msg).await?;
927+
} else {
928+
let mut msg = Message::new_text(msg);
929+
chat::send_msg_sync(&context, sel_chat.as_ref().unwrap().get_id(), &mut msg)
930+
.await?;
931+
}
926932
}
927933
"sendempty" => {
928934
ensure!(sel_chat.is_some(), "No chat selected.");

src/context.rs

+5
Original file line numberDiff line numberDiff line change
@@ -479,6 +479,11 @@ impl Context {
479479
self.scheduler.stop(self).await;
480480
}
481481

482+
/// Returns true if IO scheduler is running.
483+
pub async fn is_running(&self) -> bool {
484+
self.scheduler.is_running().await
485+
}
486+
482487
/// Restarts the IO scheduler if it was running before
483488
/// when it is not running this is an no-op
484489
pub async fn restart_io_if_running(&self) {

0 commit comments

Comments
 (0)