Skip to content

Commit

Permalink
[mms] Fix sending IMAP APPEND data when the UTF-8 capability is enabled.
Browse files Browse the repository at this point in the history
  • Loading branch information
slusarz committed Sep 16, 2014
1 parent e9a32ef commit a872b68
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
6 changes: 3 additions & 3 deletions framework/Imap_Client/lib/Horde/Imap/Client/Socket.php
Expand Up @@ -1762,12 +1762,12 @@ protected function _append(Horde_Imap_Client_Mailbox $mailbox, $data,
$tdata->forceBinary();
$tmp->add(array(
'UTF8',
new Horde_Imap_Client_Data_Format_List($tdata)
$tdata
));
} else {
$tmp->add(array(
'TEXT',
$this->_appendData($v['v'], $asize)
$tdata
));
}
} else {
Expand Down Expand Up @@ -1806,7 +1806,7 @@ protected function _append(Horde_Imap_Client_Mailbox $mailbox, $data,
$adata->forceBinary();
$cmd->add(array(
'UTF8',
new Horde_Imap_Client_Data_Format_List($adata)
$adata
));
} else {
$cmd->add($adata);
Expand Down
2 changes: 2 additions & 0 deletions framework/Imap_Client/package.xml
Expand Up @@ -21,6 +21,7 @@
</stability>
<license uri="http://www.horde.org/licenses/lgpl21">LGPL-2.1</license>
<notes>
* [mms] Fix sending IMAP APPEND data when the UTF-8 capability is enabled.
* [mms] Fix parsing IMAP mailbox list requests when UTF-8 mode is enabled.
* [mms] Ensure client sorting tests work reproducibly across systems with varying default locales.
</notes>
Expand Down Expand Up @@ -2695,6 +2696,7 @@
<date>2014-09-05</date>
<license uri="http://www.horde.org/licenses/lgpl21">LGPL-2.1</license>
<notes>
* [mms] Fix sending IMAP APPEND data when the UTF-8 capability is enabled.
* [mms] Fix parsing IMAP mailbox list requests when UTF-8 mode is enabled.
* [mms] Ensure client sorting tests work reproducibly across systems with varying default locales.
</notes>
Expand Down

0 comments on commit a872b68

Please sign in to comment.