- Bug in spellchecker suggestions when server charset != UTF8 (#1486406)
| | |
| | | CHANGELOG RoundCube Webmail |
| | | =========================== |
| | | |
| | | - Bug in spellchecker suggestions when server charset != UTF8 (#1486406) |
| | | - Managesieve: Fix requires generation for multiple actions (#1486397) |
| | | - Fix LDAP problem with special characters in RDN (#1486320) |
| | | - Improved handling of message parts of type message/rfc822 |
| | |
| | | $out = "POST $path HTTP/1.0\r\n"; |
| | | $out .= "Host: $host\r\n"; |
| | | $out .= "Content-Length: " . strlen($data) . "\r\n"; |
| | | $out .= "Content-type: application/x-www-form-urlencoded\r\n"; |
| | | $out .= "Content-Type: application/x-www-form-urlencoded\r\n"; |
| | | $out .= "Connection: Close\r\n\r\n"; |
| | | $out .= $data; |
| | | fwrite($fp, $out); |
| | |
| | | fclose($fp); |
| | | } |
| | | |
| | | // Don't use server's default Content-Type charset (#1486406) |
| | | header("Content-Type: text/xml; charset=".RCMAIL_CHARSET); |
| | | print $store; |
| | | exit; |
| | | |
| | |
| | | |
| | | $out .= '</spellresult>'; |
| | | |
| | | header("Content-Type: text/xml"); |
| | | header("Content-Type: text/xml; charset=".RCMAIL_CHARSET); |
| | | echo $out; |
| | | exit; |
| | | |