- Add SORT=DISPLAY support (RFC 5957)

release-0.6
alecpl 14 years ago
parent a79417d4ef
commit 77327e252a

@ -53,6 +53,7 @@ CHANGELOG Roundcube Webmail
- Don't list subscribed but non-existent folders (#1486225)
- Fix handling of URLs with tilde (~) or semicolon (;) character (#1487087, #1487088)
- Plugin API: added 'contact_form' hook
- Add SORT=DISPLAY support (RFC 5957)
RELEASE 0.4.2
-------------

@ -1000,6 +1000,11 @@ class rcube_imap_generic
return false;
}
// RFC 5957: SORT=DISPLAY
if (($field == 'FROM' || $field == 'TO') && $this->getCapability('SORT=DISPLAY')) {
$field = 'DISPLAY' . $field;
}
// message IDs
if (is_array($add))
$add = $this->compressMessageSet(join(',', $add));

Loading…
Cancel
Save