name, so it shouldn't hurt other servers (tested against courier and
broken imap server hmailserver I believe).
git-svn-id: https://svn.code.sf.net/p/squirrelmail/code/trunk/squirrelmail@8749
7612ce4b-ef26-0410-bec9-
ea0150e637f0
- Removed numeric keys for plugin array in config.php.
- Fixed translations of "On DATE, AUTHOR said" and "AUTHOR said" replies.
- Added sq_str_pad function for padding of multi-byte strings.
- - Added sq_strlen function for calculation of multi-byte string length.
+ - Added sq_strlen function for calculation of multi-byte string length.
+ - Quoted "INBOX" in check for the status of INBOX in a LIST call. Fixes an
+ issue with a specific IMAP server.
Version 1.5.0
--------------------
if ($has_inbox == false) {
// do a list request for inbox because we should always show
// inbox even if the user isn't subscribed to it.
- $inbox_ary = sqimap_run_command ($imap_stream, 'LIST "" INBOX',
+ $inbox_ary = sqimap_run_command ($imap_stream, 'LIST "" "INBOX"',
true, $response, $message);
$inbox_ary = compact_mailboxes_response($inbox_ary);
if (count($inbox_ary)) {
}
}
-?>
\ No newline at end of file
+?>