Escape all RFC-2047 'especials' characters (Zarafa).
This commit is contained in:
parent
166f6206f4
commit
85cd5f7abf
@ -223,10 +223,18 @@ const utility::stream::size_type encoderQP::encode(utility::inputStream& in,
|
|||||||
QP_ENCODE_HEX('=')
|
QP_ENCODE_HEX('=')
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
// RFC-2047 'especials' characters
|
||||||
case ',':
|
case ',':
|
||||||
case ';':
|
case ';':
|
||||||
case ':':
|
case ':':
|
||||||
case '_':
|
case '_':
|
||||||
|
case '@':
|
||||||
|
case '(':
|
||||||
|
case ')':
|
||||||
|
case '<':
|
||||||
|
case '>':
|
||||||
|
case '[':
|
||||||
|
case ']':
|
||||||
{
|
{
|
||||||
if (rfc2047)
|
if (rfc2047)
|
||||||
{
|
{
|
||||||
|
Loading…
Reference in New Issue
Block a user