dirname) || !is_dir($params->dirname)) { /** * @see Zend_Mail_Storage_Exception */ require_once 'Zend/Mail/Storage/Exception.php'; throw new Zend_Mail_Storage_Exception('no valid dirname given in params'); } $this->_rootdir = rtrim($params->dirname, DIRECTORY_SEPARATOR) . DIRECTORY_SEPARATOR; $this->_delim = isset($params->delim) ? $params->delim : '.'; $this->_buildFolderTree(); $this->selectFolder(!empty($params->folder) ? $params->folder : 'INBOX'); $this->_has['top'] = true; $this->_has['flags'] = true; } /** * find all subfolders and mbox files for folder structure * * Result is save in Zend_Mail_Storage_Folder instances with the root in $this->_rootFolder. * $parentFolder and $parentGlobalName are only used internally for recursion. * * @return null * @throws Zend_Mail_Storage_Exception */ protected function _buildFolderTree() { $this->_rootFolder = new Zend_Mail_Storage_Folder('/', '/', false); $this->_rootFolder->INBOX = new Zend_Mail_Storage_Folder('INBOX', 'INBOX', true); $dh = @opendir($this->_rootdir); if (!$dh) { /** * @see Zend_Mail_Storage_Exception */ require_once 'Zend/Mail/Storage/Exception.php'; throw new Zend_Mail_Storage_Exception("can't read folders in maildir"); } $dirs = array(); while (($entry = readdir($dh)) !== false) { // maildir++ defines folders must start with . if ($entry[0] != '.' || $entry == '.' || $entry == '..') { continue; } if ($this->_isMaildir($this->_rootdir . $entry)) { $dirs[] = $entry; } } closedir($dh); sort($dirs); $stack = array(null); $folderStack = array(null); $parentFolder = $this->_rootFolder; $parent = '.'; foreach ($dirs as $dir) { do { if (strpos($dir, $parent) === 0) { $local = substr($dir, strlen($parent)); if (strpos($local, $this->_delim) !== false) { /** * @see Zend_Mail_Storage_Exception */ require_once 'Zend/Mail/Storage/Exception.php'; throw new Zend_Mail_Storage_Exception('error while reading maildir'); } array_push($stack, $parent); $parent = $dir . $this->_delim; $folder = new Zend_Mail_Storage_Folder($local, substr($dir, 1), true); $parentFolder->$local = $folder; array_push($folderStack, $parentFolder); $parentFolder = $folder; break; } else if ($stack) { $parent = array_pop($stack); $parentFolder = array_pop($folderStack); } } while ($stack); if (!$stack) { /** * @see Zend_Mail_Storage_Exception */ require_once 'Zend/Mail/Storage/Exception.php'; throw new Zend_Mail_Storage_Exception('error while reading maildir'); } } } /** * get root folder or given folder * * @param string $rootFolder get folder structure for given folder, else root * @return Zend_Mail_Storage_Folder root or wanted folder * @throws Zend_Mail_Storage_Exception */ public function getFolders($rootFolder = null) { if (!$rootFolder || $rootFolder == 'INBOX') { return $this->_rootFolder; } // rootdir is same as INBOX in maildir if (strpos($rootFolder, 'INBOX' . $this->_delim) === 0) { $rootFolder = substr($rootFolder, 6); } $currentFolder = $this->_rootFolder; $subname = trim($rootFolder, $this->_delim); while ($currentFolder) { @list($entry, $subname) = @explode($this->_delim, $subname, 2); $currentFolder = $currentFolder->$entry; if (!$subname) { break; } } if ($currentFolder->getGlobalName() != rtrim($rootFolder, $this->_delim)) { /** * @see Zend_Mail_Storage_Exception */ require_once 'Zend/Mail/Storage/Exception.php'; throw new Zend_Mail_Storage_Exception("folder $rootFolder not found"); } return $currentFolder; } /** * select given folder * * folder must be selectable! * * @param Zend_Mail_Storage_Folder|string $globalName global name of folder or instance for subfolder * @return null * @throws Zend_Mail_Storage_Exception */ public function selectFolder($globalName) { $this->_currentFolder = (string)$globalName; // getting folder from folder tree for validation $folder = $this->getFolders($this->_currentFolder); try { $this->_openMaildir($this->_rootdir . '.' . $folder->getGlobalName()); } catch(Zend_Mail_Storage_Exception $e) { // check what went wrong if (!$folder->isSelectable()) { /** * @see Zend_Mail_Storage_Exception */ require_once 'Zend/Mail/Storage/Exception.php'; throw new Zend_Mail_Storage_Exception("{$this->_currentFolder} is not selectable"); } // seems like file has vanished; rebuilding folder tree - but it's still an exception $this->_buildFolderTree($this->_rootdir); /** * @see Zend_Mail_Storage_Exception */ require_once 'Zend/Mail/Storage/Exception.php'; throw new Zend_Mail_Storage_Exception('seems like the maildir has vanished, I\'ve rebuild the ' . 'folder tree, search for an other folder and try again'); } } /** * get Zend_Mail_Storage_Folder instance for current folder * * @return Zend_Mail_Storage_Folder instance of current folder * @throws Zend_Mail_Storage_Exception */ public function getCurrentFolder() { return $this->_currentFolder; } }