]> git.r.bdr.sh - rbdr/olden-mail/blobdiff - src/middleware/find_mailboxes_compatibility.rs
Trim after replace
[rbdr/olden-mail] / src / middleware / find_mailboxes_compatibility.rs
index 2b5df8e3d70f2fe9158537e372e28999f331c89c..7c5cd9200e48f132d80ff4de20a21b78deee2226 100644 (file)
@@ -51,7 +51,9 @@ impl Middleware for FindMailboxesCompatibility {
                 // Transform IMAPv4 "* LIST" lines to IMAPv3 "* MAILBOX"
                 if line.starts_with("* LIST") {
                     if let Some(last_slash_pos) = line.rfind('/') {
                 // Transform IMAPv4 "* LIST" lines to IMAPv3 "* MAILBOX"
                 if line.starts_with("* LIST") {
                     if let Some(last_slash_pos) = line.rfind('/') {
-                        let mailbox_name = line[(last_slash_pos + 2)..].trim();
+                        let mailbox_name = line[(last_slash_pos + 1)..]
+                            .replace('"', "")
+                            .trim();
                         return Some(format!("* MAILBOX {mailbox_name}\r"));
                     }
                 }
                         return Some(format!("* MAILBOX {mailbox_name}\r"));
                     }
                 }