{
if (ptr->personal)
_rfc2047_encode_string (&ptr->personal, 1, col);
+ else if (ptr->group && ptr->mailbox)
+ _rfc2047_encode_string (&ptr->mailbox, 1, col);
#ifdef EXACT_ADDRESS
if (ptr->val)
_rfc2047_encode_string (&ptr->val, 1, col);
if (a->personal && ((strstr (a->personal, "=?") != NULL) ||
(AssumedCharset && *AssumedCharset)))
rfc2047_decode (&a->personal);
+ else if (a->group && a->mailbox && (strstr (a->mailbox, "=?") != NULL))
+ rfc2047_decode (&a->mailbox);
#ifdef EXACT_ADDRESS
if (a->val && strstr (a->val, "=?") != NULL)
rfc2047_decode (&a->val);