mirror of
https://github.com/retailcrm/Fetch.git
synced 2025-04-05 14:23:35 +03:00
Merge pull request #9 from sherblot/master
Fix imap_reopen 'mailbox not found' error
This commit is contained in:
commit
127a0a2983
1 changed files with 1 additions and 1 deletions
|
@ -260,7 +260,7 @@ class Server
|
|||
{
|
||||
if(isset($this->imapStream))
|
||||
{
|
||||
if(!imap_reopen($this->imapStream, $this->mailbox, $this->options, 1))
|
||||
if(!imap_reopen($this->imapStream, $this->getServerString(), $this->options, 1))
|
||||
throw new \RuntimeException(imap_last_error());
|
||||
}else{
|
||||
$imapStream = imap_open($this->getServerString(), $this->username, $this->password, $this->options, 1);
|
||||
|
|
Loading…
Add table
Reference in a new issue