diff --git a/src/domain/msg/handler.rs b/src/domain/msg/handler.rs index 164268a..05fdb33 100644 --- a/src/domain/msg/handler.rs +++ b/src/domain/msg/handler.rs @@ -146,7 +146,7 @@ pub fn attachments( uid: &str, mbox: Option<&str>, @@ -268,7 +268,8 @@ pub fn mailto( +/// Move the given message UID from the selected mailbox to the targetted mailbox. +pub fn move_( uid: &str, mbox: Option<&str>, output: &OutputService, @@ -279,9 +280,8 @@ pub fn move_( // create the msg in the target-msgbox msg.flags.insert(Flag::Seen); imap.append_msg(&target, &mut msg)?; - debug!("message {} successfully moved to folder `{}`", uid, target); output.print(format!( - "Message {} successfully moved to folder `{}`", + r#"Message {} successfully moved to folder "{}""#, uid, target ))?; // delete the msg in the old mailbox