Webklex / laravel-imap

Laravel IMAP is an easy way to integrate both the native php-imap module and an extended custom imap protocol into your Laravel app.
https://www.php-imap.com
MIT License
617 stars 177 forks source link

when run thi #456

Closed satyajitckt closed 1 year ago

satyajitckt commented 1 year ago

Please be aware that these issues will be closed if inactive for more then 14 days :) Webklex\PHPIMAP\Client::authenticate D:\taillog-backend\New folder\taillog-backend\vendor\webklex\php-imap\src\Client.php:391

/**

 * Authenticate the current session

 *

 * @throws ConnectionFailedException

 */

protected function authenticate() {

    try {

        if ($this->authentication == "oauth") {

            if (!$this->connection->authenticate($this->username, $this->password)) {

                throw new AuthFailedException();

            }

        } elseif (!$this->connection->login($this->username, $this->password)) {

            throw new AuthFailedException();

        }

    } catch (AuthFailedException $e) {

        throw new ConnectionFailedException("connection setup failed", 0, $e);

    }

}
Webklex commented 1 year ago

Hi @satyajitckt , I'm not sure what you are asking or reporting.

If the issue / question you are asking is related to webklex/php-imap please head over there. This repository is just a wrapper for webklex/php-imap.

Best regards & happy coding,