mirror of
https://github.com/retailcrm/Fetch.git
synced 2025-04-04 13:53:35 +03:00
Merge pull request #125 from benr77/imap-separator
Added method to access mailbox properties - including IMAP separator character
This commit is contained in:
commit
6baf7fe404
1 changed files with 13 additions and 1 deletions
|
@ -443,7 +443,19 @@ class Server
|
|||
*/
|
||||
public function hasMailBox($mailbox)
|
||||
{
|
||||
return (boolean) imap_getmailboxes(
|
||||
return (boolean) $this->getMailBoxDetails($mailbox);
|
||||
}
|
||||
|
||||
/**
|
||||
* Return information about the mailbox or mailboxes
|
||||
*
|
||||
* @param $mailbox
|
||||
*
|
||||
* @return bool
|
||||
*/
|
||||
public function getMailBoxDetails($mailbox)
|
||||
{
|
||||
return imap_getmailboxes(
|
||||
$this->getImapStream(),
|
||||
$this->getServerString(),
|
||||
$this->getServerSpecification() . $mailbox
|
||||
|
|
Loading…
Add table
Reference in a new issue