| Summary | Check Folder for New Mail Problem |
| Queue | IMP |
| Queue Version | 4.0.3 |
| Type | Bug |
| State | Not A Bug |
| Priority | 1. Low |
| Owners | slusarz (at) horde (dot) org |
| Requester | ddibox (at) mail (dot) ru |
| Created | 08/17/2005 (7398 days ago) |
| Due | |
| Updated | 09/08/2005 (7376 days ago) |
| Assigned | 09/01/2005 (7383 days ago) |
| Resolved | 09/08/2005 (7376 days ago) |
| Github Issue Link | |
| Github Pull Request | |
| Milestone | |
| Patch | No |
State ⇒ Not A Bug
State ⇒ Feedback
State ⇒ Assigned
State ⇒ Unconfirmed
Priority ⇒ 1. Low
Type ⇒ Bug
Summary ⇒ Check Folder for New Mail Problem
Queue ⇒ IMP
select "Folders" menu item. Folders are not selected (all Ok after
logout-login).
Fix:
IMP_Tree:
function getPollList()
{
if (is_null($this->_poll)) {
/* We ALWAYS poll the INBOX. */
$this->_poll = array('INBOX' => 1);
/* Add the user's list of polled mailboxes, if not locked. */
if (!$GLOBALS['prefs']->isLocked('nav_poll')) {
$navPollList =
@unserialize($GLOBALS['prefs']->getValue('nav_poll'));
if ($navPollList) {
foreach ($navPollList as $key=>$val) {
if (isset($this->_tree[$key]))
{$this->_setPolled($this->_tree[$key], true);}
}
$this->_poll += $navPollList;
}
}
}
return $this->_poll;
}