mirror of
https://github.com/moparisthebest/davmail
synced 2024-10-31 15:35:05 -04:00
Fix 3151800, force UTF-8 in appendEnvelopeHeaderValue
git-svn-id: http://svn.code.sf.net/p/davmail/code/trunk@1713 3d1905a2-6b24-0410-a738-b14d5a86fcbd
This commit is contained in:
parent
76c23c3437
commit
ff82af8c5e
@ -996,7 +996,7 @@ public class ImapConnection extends AbstractConnection {
|
|||||||
buffer.append(value);
|
buffer.append(value);
|
||||||
} else {
|
} else {
|
||||||
buffer.append('"');
|
buffer.append('"');
|
||||||
buffer.append(MimeUtility.encodeText(value));
|
buffer.append(MimeUtility.encodeText(value, "UTF-8", null));
|
||||||
buffer.append('"');
|
buffer.append('"');
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user