6.0.0-beta1
9/24/25

[#2462] Check Folder for New Mail Problem
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 (7343 days ago)
Due
Updated 09/08/2005 (7321 days ago)
Assigned 09/01/2005 (7328 days ago)
Resolved 09/08/2005 (7321 days ago)
Github Issue Link
Github Pull Request
Milestone
Patch No

History
09/08/2005 06:08:24 AM Michael Slusarz Comment #3
State ⇒ Not A Bug
Reply to this comment
No feedback.
09/01/2005 03:50:26 AM Michael Slusarz Comment #2
State ⇒ Feedback
Reply to this comment
Works for me, and your patch doesn't make any sense.
08/18/2005 08:10:46 AM Jan Schneider Assigned to Michael Slusarz
State ⇒ Assigned
 
08/17/2005 08:22:05 AM ddibox (at) mail (dot) ru Comment #1
State ⇒ Unconfirmed
Priority ⇒ 1. Low
Type ⇒ Bug
Summary ⇒ Check Folder for New Mail Problem
Queue ⇒ IMP
Reply to this comment
Use the "Check Folder(s) for New Mail" (Folders page) and after that 
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;

     }


Saved Queries