hpi-swa-teaching / IMAPClient

This project provides a library and tool set to access email through IMAP in the Squeak/Smalltalk environment. (SWT22-13)
MIT License
22 stars 3 forks source link

Support special characters in folder names #389

Open LinqLover opened 3 years ago

LinqLover commented 3 years ago

In my HPI mailbox, I have a folder named foo\bar (the backslash matters). When downloading all mails, the IMAP client is unable to parse this folder because the server answers a multiline response for this folder. This means that in ICEndPoint >> #fetchNextResponse, the relevant folder description will be spread over multiple evaluations of self stream lastResponse. This requires a minor design change to detect the special escape syntax for these responses. Please contact me if you need further information.