There is a quotation bug in CommandBuilder -- we aren't applying IMAP4 quotation to passwords which is a mistake because passwords can contain " and \ (which result in parsing errors on IMAP4 servers). The solution would be to just apply the same quotation that Python's imaplib does (I've also implemented it in my own tool).
There is a quotation bug in CommandBuilder -- we aren't applying IMAP4 quotation to passwords which is a mistake because passwords can contain
"
and\
(which result in parsing errors on IMAP4 servers). The solution would be to just apply the same quotation that Python'simaplib
does (I've also implemented it in my own tool).