/**
  * @see Page::readData()
  */
 public function readData()
 {
     parent::readData();
     // get message list
     $this->readMessages();
     $this->readAvailableSenders();
     // columns
     $this->showRecipientColumn = $this->folderID == PMFolderList::FOLDER_DRAFTS || $this->folderID == PMFolderList::FOLDER_OUTBOX;
     $this->showIconColumn = !$this->showRecipientColumn;
     $this->showViewedColumn = $this->showRecipientColumn;
     // marked messages
     $this->markedMessages = PMAction::getMarkedCount();
 }