let command = String::from_utf8_lossy(input);
if command.contains("FIND MAILBOXES /*") {
if let Some(tag) = command.split("FIND MAILBOXES /*").next() {
- let replacement = format!("{} LIST \"/INBOX\" \"*\"\r\n", tag.trim());
+ let replacement = format!("{} LIST \"\" \"*\"\r\n", tag.trim());
debug!("### {replacement}");
return replacement.into_bytes();
}