mirror of
https://github.com/moparisthebest/davmail
synced 2025-01-13 06:28:19 -05:00
IMAP: fix 2962071, quote folder names in STATUS response
git-svn-id: http://svn.code.sf.net/p/davmail/code/trunk@970 3d1905a2-6b24-0410-a738-b14d5a86fcbd
This commit is contained in:
parent
3fd51ae302
commit
266632480d
@ -481,7 +481,7 @@ public class ImapConnection extends AbstractConnection {
|
||||
answer.append("UNSEEN ").append(folder.unreadCount).append(' ');
|
||||
}
|
||||
}
|
||||
sendClient("* STATUS " + encodedFolderName + " (" + answer.toString().trim() + ')');
|
||||
sendClient("* STATUS \"" + encodedFolderName + "\" (" + answer.toString().trim() + ')');
|
||||
sendClient(commandId + " OK " + command + " completed");
|
||||
} catch (HttpException e) {
|
||||
sendClient(commandId + " NO folder not found");
|
||||
|
Loading…
Reference in New Issue
Block a user