| | |
| | | protected $search_sort_field = ''; |
| | | protected $search_threads = false; |
| | | protected $search_sorted = false; |
| | | protected $options = array('auth_method' => 'check'); |
| | | protected $options = array('auth_type' => 'check'); |
| | | protected $caching = false; |
| | | protected $messages_caching = false; |
| | | protected $threading = false; |
| | |
| | | public function check_permflag($flag) |
| | | { |
| | | $flag = strtoupper($flag); |
| | | $imap_flag = $this->conn->flags[$flag]; |
| | | $perm_flags = $this->get_permflags($this->folder); |
| | | $imap_flag = $this->conn->flags[$flag]; |
| | | |
| | | return in_array_nocase($imap_flag, $perm_flags); |
| | | return $imap_flag && !empty($perm_flags) && in_array_nocase($imap_flag, $perm_flags); |
| | | } |
| | | |
| | | |
| | |
| | | if (!strlen($folder)) { |
| | | return array(); |
| | | } |
| | | /* |
| | | Checking PERMANENTFLAGS is rather rare, so we disable caching of it |
| | | Re-think when we'll use it for more than only MDNSENT flag |
| | | |
| | | $cache_key = 'mailboxes.permanentflags.' . $folder; |
| | | $permflags = $this->get_cache($cache_key); |
| | | |
| | | if ($permflags !== null) { |
| | | return explode(' ', $permflags); |
| | | } |
| | | */ |
| | | if (!$this->check_connection()) { |
| | | return array(); |
| | | } |
| | |
| | | if (!is_array($permflags)) { |
| | | $permflags = array(); |
| | | } |
| | | /* |
| | | // Store permflags as string to limit cached object size |
| | | $this->update_cache($cache_key, implode(' ', $permflags)); |
| | | */ |
| | | |
| | | return $permflags; |
| | | } |
| | | |
| | |
| | | /** |
| | | * Fetch message body of a specific message from the server |
| | | * |
| | | * @param int $uid Message UID |
| | | * @param string $part Part number |
| | | * @param rcube_message_part $o_part Part object created by get_structure() |
| | | * @param mixed $print True to print part, ressource to write part contents in |
| | | * @param resource $fp File pointer to save the message part |
| | | * @param boolean $skip_charset_conv Disables charset conversion |
| | | * @param int $max_bytes Only read this number of bytes |
| | | * @param int Message UID |
| | | * @param string Part number |
| | | * @param rcube_message_part Part object created by get_structure() |
| | | * @param mixed True to print part, resource to write part contents in |
| | | * @param resource File pointer to save the message part |
| | | * @param boolean Disables charset conversion |
| | | * @param int Only read this number of bytes |
| | | * @param boolean Enables formatting of text/* parts bodies |
| | | * |
| | | * @return string Message/part body if not printed |
| | | */ |
| | | public function get_message_part($uid, $part=1, $o_part=NULL, $print=NULL, $fp=NULL, $skip_charset_conv=false, $max_bytes=0) |
| | | public function get_message_part($uid, $part=1, $o_part=NULL, $print=NULL, $fp=NULL, $skip_charset_conv=false, $max_bytes=0, $formatted=true) |
| | | { |
| | | if (!$this->check_connection()) { |
| | | return null; |
| | |
| | | } |
| | | |
| | | if ($o_part && $o_part->size) { |
| | | $formatted = $formatted && $o_part->ctype_primary == 'text'; |
| | | $body = $this->conn->handlePartBody($this->folder, $uid, true, |
| | | $part ? $part : 'TEXT', $o_part->encoding, $print, $fp, $o_part->ctype_primary == 'text', $max_bytes); |
| | | $part ? $part : 'TEXT', $o_part->encoding, $print, $fp, $formatted, $max_bytes); |
| | | } |
| | | |
| | | if ($fp || $print) { |
| | |
| | | |
| | | if ($list_extended) { |
| | | // unsubscribe non-existent folders, remove from the list |
| | | // we can do this only when LIST response is available |
| | | if (is_array($a_folders) && $name == '*' && !empty($this->conn->data['LIST'])) { |
| | | foreach ($a_folders as $idx => $folder) { |
| | | if (($opts = $this->conn->data['LIST'][$folder]) |
| | |
| | | } |
| | | } |
| | | else { |
| | | // unsubscribe non-existent folders, remove them from the list, |
| | | // we can do this only when LIST response is available |
| | | if (is_array($a_folders) && $name == '*' && !empty($this->conn->data['LIST'])) { |
| | | foreach ($a_folders as $idx => $folder) { |
| | | if (!isset($this->conn->data['LIST'][$folder]) |
| | | || in_array('\\Noselect', $this->conn->data['LIST'][$folder]) |
| | | ) { |
| | | // Some servers returns \Noselect for existing folders |
| | | if (!$this->folder_exists($folder)) { |
| | | $this->conn->unsubscribe($folder); |
| | | unset($a_folders[$idx]); |
| | | } |
| | | } |
| | | // unsubscribe non-existent folders, remove them from the list |
| | | if (is_array($a_folders) && !empty($a_folders) && $name == '*') { |
| | | $existing = $this->list_folders($root, $name); |
| | | $nonexisting = array_diff($a_folders, $existing); |
| | | $a_folders = array_diff($a_folders, $nonexisting); |
| | | |
| | | foreach ($nonexisting as $folder) { |
| | | $this->conn->unsubscribe($folder); |
| | | } |
| | | } |
| | | } |
| | |
| | | /** |
| | | * Enable or disable messages caching |
| | | * |
| | | * @param boolean $set Flag |
| | | * @param boolean $set Flag |
| | | * @param int $mode Cache mode |
| | | */ |
| | | public function set_messages_caching($set) |
| | | public function set_messages_caching($set, $mode = null) |
| | | { |
| | | if ($set) { |
| | | $this->messages_caching = true; |
| | | |
| | | if ($mode && ($cache = $this->get_mcache_engine())) { |
| | | $cache->set_mode($mode); |
| | | } |
| | | } |
| | | else { |
| | | if ($this->mcache) { |
| | |
| | | if ($this->messages_caching && !$this->mcache) { |
| | | $rcube = rcube::get_instance(); |
| | | if (($dbh = $rcube->get_dbh()) && ($userid = $rcube->get_user_id())) { |
| | | $ttl = $rcube->config->get('messages_cache_ttl', '10d'); |
| | | $ttl = $rcube->config->get('messages_cache_ttl', '10d'); |
| | | $threshold = $rcube->config->get('messages_cache_threshold', 50); |
| | | $this->mcache = new rcube_imap_cache( |
| | | $dbh, $this, $userid, $this->options['skip_deleted'], $ttl); |
| | | $dbh, $this, $userid, $this->options['skip_deleted'], $ttl, $threshold); |
| | | } |
| | | } |
| | | |
| | |
| | | * Clears the messages cache. |
| | | * |
| | | * @param string $folder Folder name |
| | | * @param array $uids Optional message UIDs to remove from cache |
| | | * @param array $uids Optional message UIDs to remove from cache |
| | | */ |
| | | protected function clear_message_cache($folder = null, $uids = null) |
| | | { |