| | |
| | | protected $search_set; |
| | | protected $options = array('auth_type' => 'check'); |
| | | protected $page_size = 10; |
| | | protected $list_page = 1; |
| | | protected $threading = false; |
| | | |
| | | /** |
| | |
| | | */ |
| | | public function set_page($page) |
| | | { |
| | | $this->list_page = (int) $page; |
| | | if ($page = intval($page)) { |
| | | $this->list_page = $page; |
| | | } |
| | | } |
| | | |
| | | /** |
| | |
| | | |
| | | /** |
| | | * Fetch message headers and body structure from the server and build |
| | | * an object structure similar to the one generated by PEAR::Mail_mimeDecode |
| | | * an object structure. |
| | | * |
| | | * @param int $uid Message UID to fetch |
| | | * @param string $folder Folder to read from |