You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Reported by lefoyer on 4 Jun 2012 12:17 UTC as Trac ticket #1488511
If i use show_additional_header plugin, and add header included text in rfc2047 format, sample:
X-Spam-Message: =?UTF-8?Q?HELO=3D=5BTFLSKRMQ=5D_=D0=BD=D0=B5_=D1=81=D0=BE=D0=B4=D0=B5=D1?=
show_additional_header not decode this message, and show unmodifed message
patch: file rcube_imap_generic.php or in github rev 9ad0810 = rcube_message_header.php
class rcube_mail_header //or in github rev 9ad08104 = class rcube_message_header
+ private $mime;
public function get($name)
{
$name = strtolower($name);
+ $this->mime = new rcube_mime($this->charset);
if (isset($this->obj_headers[{
- return $this->{$this->obj_headers[$name]($name])))};
+ return $this->{$this->mime->decode_header($this->obj_headers[ }
- return $this->others[$name]($name])};
);
+ return $this->mime->decode_header($this->others[$name]);
}
Reported by lefoyer on 4 Jun 2012 12:17 UTC as Trac ticket #1488511
If i use show_additional_header plugin, and add header included text in rfc2047 format, sample:
X-Spam-Message: =?UTF-8?Q?HELO=3D=5BTFLSKRMQ=5D_=D0=BD=D0=B5_=D1=81=D0=BE=D0=B4=D0=B5=D1?=
show_additional_header not decode this message, and show unmodifed message
patch: file rcube_imap_generic.php or in github rev 9ad0810 = rcube_message_header.php
Migrated-From: http://trac.roundcube.net/ticket/1488511
The text was updated successfully, but these errors were encountered: