Skip to content
This repository was archived by the owner on Dec 31, 2024. It is now read-only.
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions ImapClient.cs
Original file line number Diff line number Diff line change
Expand Up @@ -1628,7 +1628,7 @@ public void CopyMessages(IEnumerable<uint> 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();
Expand Down Expand Up @@ -2290,4 +2290,4 @@ void AssertValid(bool requireAuth = true) {
/// <returns>true to include the body part in the returned MailMessage object, or false to skip
/// it.</returns>
public delegate bool ExaminePartDelegate(Bodypart part);
}
}