laravel-enso / imapauth
This package is abandoned and no longer maintained.
No replacement package was suggested.
An authentication provider for Laravel 5 that allows you to authenticate via IMAP.
2.0.5
2018-05-04 13:55 UTC
Requires
- ddeboer/imap: ^0.5.2
README
An authentication provider for Laravel 5 that allows you to authenticate via IMAP.
Heavily inspired by peckrob's package.
Installation
Add the following line to the require
section of your composer.json
:
{ "require": { "peckrob/laravel5-imap-authentication": "dev-master" } }
Update your packages with composer update
or install with composer install
.
Laravel 5
Setup
Add the ServiceProvider to the providers
array in app/config/app.php
.
App\Providers\AppServiceProvider::class,
App\Providers\EventServiceProvider::class,
App\Providers\RouteServiceProvider::class,
...
peckrob\Laravel5ImapAuthentication\ImapAuthServiceProvider::class,
In your app/config/auth.php
, set the authentication driver to imap
.
'driver' => 'imap',
Configuration
By default it will attempt to connect to localhost. If you want something different, add IMAP_AUTH_SERVER
, IMAP_AUTH_PORT
, IMAP_PARAMETERS
to the .env file:
IMAP_AUTH_SERVER
IMAP_PORT
IMAP_PARAMETERS
Contribute
Contributions are welcome. :)