diff --git a/ImapClient.cs b/ImapClient.cs index f92baf4..96baaa7 100644 --- a/ImapClient.cs +++ b/ImapClient.cs @@ -1628,7 +1628,7 @@ public void CopyMessages(IEnumerable uids, string destination, string mail SelectMailbox(mailbox); string tag = GetTag(); string response = SendCommandGetResponse(tag + "UID COPY " + set + " " + - destination.QuoteString()); + Util.UTF7Encode(destination).QuoteString()); while (response.StartsWith("*")) response = GetResponse(); ResumeIdling();