Webklex / laravel-imap

Laravel IMAP is an easy way to integrate both the native php-imap module and an extended custom imap protocol into your Laravel app.
https://www.php-imap.com
MIT License
637 stars 182 forks source link

Folder path wrongly decoded #499

Open e-mend opened 1 month ago

e-mend commented 1 month ago

Hello, When I utilize the "getFolder" or "getFoldersWithStatus" client functions, the path returned for each one is not converting some characters like "í" and switching to "&AO0-". I was looking around and think that the problem is in Folder class where the path is not decoded, but name is.

image

After utilizing EncodingAliases class it works correctly.

image