- Use improved get_capability() syntax, saves CAPABILITY call in some cases
| | |
| | | { |
| | | $this->threading = false; |
| | | |
| | | if ($enable) { |
| | | if ($this->get_capability('THREAD=REFS')) |
| | | if ($enable && ($caps = $this->get_capability('THREAD'))) { |
| | | if (in_array('REFS', $caps)) |
| | | $this->threading = 'REFS'; |
| | | else if ($this->get_capability('THREAD=REFERENCES')) |
| | | else if (in_array('REFERENCES', $caps)) |
| | | $this->threading = 'REFERENCES'; |
| | | else if ($this->get_capability('THREAD=ORDEREDSUBJECT')) |
| | | else if (in_array('ORDEREDSUBJECT', $caps)) |
| | | $this->threading = 'ORDEREDSUBJECT'; |
| | | } |
| | | |
| | |
| | | |
| | | // check for supported auth methods |
| | | if ($auth_method == 'CHECK') { |
| | | if ($this->getCapability('AUTH=DIGEST-MD5')) { |
| | | $auth_methods[] = 'DIGEST-MD5'; |
| | | } |
| | | if ($this->getCapability('AUTH=CRAM-MD5') || $this->getCapability('AUTH=CRAM_MD5')) { |
| | | $auth_methods[] = 'CRAM-MD5'; |
| | | } |
| | | if ($this->getCapability('AUTH=PLAIN')) { |
| | | $auth_methods[] = 'PLAIN'; |
| | | if ($auth_caps = $this->getCapability('AUTH')) { |
| | | $auth_methods = $auth_caps; |
| | | } |
| | | // RFC 2595 (LOGINDISABLED) LOGIN disabled when connection is not secure |
| | | if (!$this->getCapability('LOGINDISABLED')) { |
| | | $auth_methods[] = 'LOGIN'; |
| | | if (($key = array_search('LOGIN', $auth_methods)) !== false |
| | | && $this->getCapability('LOGINDISABLED') |
| | | ) { |
| | | unset($auth_methods[$key]); |
| | | } |
| | | } |
| | | else { |
| | |
| | | // Authenticate |
| | | foreach ($auth_methods as $method) { |
| | | switch ($method) { |
| | | case 'DIGEST-MD5': |
| | | case 'CRAM_MD5': |
| | | $method = 'CRAM-MD5'; |
| | | case 'CRAM-MD5': |
| | | case 'DIGEST-MD5': |
| | | case 'PLAIN': |
| | | $result = $this->authenticate($user, $password, $method); |
| | | break; |
| | |
| | | // set current mailbox and some other vars in client environment |
| | | $OUTPUT->set_env('mailbox', $mbox_name); |
| | | $OUTPUT->set_env('pagesize', $IMAP->page_size); |
| | | $OUTPUT->set_env('quota', $IMAP->get_capability('quota')); |
| | | $OUTPUT->set_env('quota', $IMAP->get_capability('QUOTA')); |
| | | $OUTPUT->set_env('delimiter', $IMAP->get_hierarchy_delimiter()); |
| | | $OUTPUT->set_env('threading', (bool) $IMAP->threading); |
| | | $OUTPUT->set_env('threads', $IMAP->threading |
| | | || $IMAP->get_capability('thread=references') |
| | | || $IMAP->get_capability('thread=orderedsubject') |
| | | || $IMAP->get_capability('thread=refs') |
| | | ); |
| | | $OUTPUT->set_env('threads', $IMAP->threading || $IMAP->get_capability('THREAD')); |
| | | |
| | | if ($CONFIG['flag_for_deletion']) |
| | | $OUTPUT->set_env('flag_for_deletion', true); |
| | |
| | | $delimiter = $RCMAIL->imap->get_hierarchy_delimiter(); |
| | | $special = (strlen($mbox_imap) && in_array($mbox_imap, (array) $RCMAIL->config->get('default_imap_folders'))); |
| | | $protected = ($special && $RCMAIL->config->get('protect_default_folders')); |
| | | $threading_supported = $RCMAIL->imap->get_capability('thread=references') |
| | | || $RCMAIL->imap->get_capability('thread=orderedsubject') |
| | | || $RCMAIL->imap->get_capability('thread=refs'); |
| | | $threading_supported = $RCMAIL->imap->get_capability('THREAD'); |
| | | |
| | | // Get mailbox stats (messages count, etc.), mailbox name and parent |
| | | if (strlen($mbox)) { |
| | |
| | | } |
| | | |
| | | $RCMAIL->imap_connect(); |
| | | $threading_supported = $RCMAIL->imap->get_capability('thread=references') |
| | | || $RCMAIL->imap->get_capability('thread=orderedsubject') |
| | | || $RCMAIL->imap->get_capability('thread=refs'); |
| | | $threading_supported = $RCMAIL->imap->get_capability('THREAD'); |
| | | |
| | | if (!isset($no_override['autoexpand_threads']) && $threading_supported) { |
| | | $field_id = 'rcmfd_autoexpand_threads'; |