/**
  * @return \MailSo\Mail\MailClient
  *
  * @throws \MailSo\Net\Exceptions\Exception
  * @throws \MailSo\Imap\Exceptions\Exception
  */
 public function FolderUnSelect()
 {
     if ($this->oImapClient->IsSelected()) {
         $this->oImapClient->FolderUnSelect();
     }
     return $this;
 }