punarinta / email-auth
Discover IMAP/SMTP settings, authenticate via any email
Installs: 55 171
Dependents: 1
Suggesters: 0
Security: 0
Stars: 3
Watchers: 1
Forks: 4
Open Issues: 0
Requires
- php: >=5.4.0
This package is not auto-updated.
Last update: 2025-03-29 22:48:52 UTC
README
A library to authenticate via an arbitrary email or/and to discover IMAP/SMTP settings by email address. Can be for example used in the projects where one doesn't need to keep a user entity in the database, but for which at the same time an authentication with service providers like Google is not enough.
Installation
- Install Composer: https://getcomposer.org/download
- Run
php composer.phar require punarinta/email-auth:1.*
- Assure "autoload.php" file from vendor directory is included
Sample usage
Authentication
use \EmailAuth\Auth;
$auth = new Auth;
if ($auth->login('your@email', 'your-password'))
{
// You are authenticated.
}
elseif ($auth->status == Auth::STATUS_OAUTH_NEEDED)
{
// Please authenticate via OAuth.
}
else
{
// Thou shalt not pass!
}
Discovery
use \EmailAuth\Discover;
$discover = new Discover;
$config = $discover->imap('your@email');
echo "IMAP is on {$config['host']}:{$config['port']}, encryption is $config['encryption']}\n";
$config = $discover->smtp('your@email');
echo "SMTP is on {$config['host']}:{$config['port']}, encryption is $config['encryption']}\n";
Troubleshooting
Fatal error: Call to undefined function imap_open()
No IMAP module is installed for PHP. Here's an example for PHP7 and Ubuntu how to fix it.
sudo apt-get install php7.0-imap
sudo phpenmod imap
License
This project is licensed under the terms of MIT license.