mirror of
https://github.com/retailcrm/Fetch.git
synced 2024-11-25 12:36:01 +03:00
Fix imap_reopen 'mailbox not found' error
When this method was called and tried to reopen the imap connection, an error was thrown because the second argument must be the complete mailbox path and not only mailbox name (http://lu.php.net/manual/fr/function.imap-reopen.php).
This commit is contained in:
parent
3f5cd124e3
commit
8f96aef73c
@ -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…
Reference in New Issue
Block a user