I'm using MailSystem.Net to receive my mails. When I try to select a folder which contains turkish character it returns me an error.
My code is here:
string folderName = "[Gmail]/Yıldızlı";
Mailbox inbox = imap.SelectMailbox(folderName);
And the Imap4Exception is here:
Command "select "[Gmail]/Yıldızlı"" failed : 150721051043320 NO [NONEXISTENT] Unknown Mailbox: [Gmail]/Y?ld?zl? (now in authenticated state) (Failure)
How can I fix this issue?
Thanks.