alecpl
2008-05-10 9d9f8dc83416cb493cfab94e1008af847abe6a41
program/include/rcube_imap.php
@@ -465,7 +465,7 @@
    if (!$force && is_array($a_mailbox_cache[$mailbox]) && isset($a_mailbox_cache[$mailbox][$mode]))
      return $a_mailbox_cache[$mailbox][$mode];
    // RECENT count is fetched abit different
    // RECENT count is fetched a bit different
    if ($mode == 'RECENT')
       $count = iil_C_CheckForRecent($this->conn, $mailbox);
@@ -602,7 +602,6 @@
      }
    // return empty array if no messages found
    if (!is_array($a_msg_headers) || empty($a_msg_headers)) {
      return array();
@@ -669,7 +668,7 @@
    // fetch reuested headers from server
    $a_msg_headers = array();
    $this->_fetch_headers($mailbox, join(',', $msgs), $a_msg_headers, NULL);
    $this->_fetch_headers($mailbox, $msgs, $a_msg_headers, NULL);
    // return empty array if no messages found
    if (!is_array($a_msg_headers) || empty($a_msg_headers))
@@ -2342,8 +2341,10 @@
    $pos = strpos($input, '=?');
    if ($pos !== false)
      {
      // rfc: all line breaks or other characters not found in the Base64 Alphabet must be ignored by decoding software
      // delete all blanks between MIME-lines, differently we can receive unnecessary blanks and broken utf-8 symbols
      // rfc: all line breaks or other characters not found
      // in the Base64 Alphabet must be ignored by decoding software
      // delete all blanks between MIME-lines, differently we can
      // receive unnecessary blanks and broken utf-8 symbols
      $input = preg_replace("/\?=\s+=\?/", '?==?', $input);
      $out = substr($input, 0, $pos);
@@ -2360,9 +2361,10 @@
      return $out;
      }
    // no encoding information, use fallback
    return rcube_charset_convert($input, !empty($fallback) ? $fallback : 'ISO-8859-1');
    return rcube_charset_convert($input,
      !empty($fallback) ? $fallback : $GLOBALS['CONFIG']['default_charset']);
    }
@@ -2837,13 +2839,9 @@
    */
   function position_of($seqnum)
   {
      $c = count($this->sequence_numbers);
      for ($pos = 0; $pos <= $c; $pos++)
      {
         if ($this->sequence_numbers[$pos] == $seqnum)
            return $pos;
      }
      return -1;
      $pos = array_search($seqnum, $this->sequence_numbers);
      if ($pos === false) return -1;
      return $pos;
   }
 
   /**