Web interface for SQLgrey using the Laravel 5 Framework.
- Dashboard: quick overview of emails / domains in greylist, whitelist, opt-out and opt-in
- Greylist: delete entries or move them to the whitelist
- Whitelist: add sender emails or sender domains to prevent them from being greylisted and delivered directly
- Opt-out: define emails or domains you don't want greylisting to be enabled for
- Opt-in: define emails or domains for which you want to enforce greylisting permanently
- Option of using seperate databases for SQLgrey and the application itself. This way you can maintain a user database in a single place and use it with all installations of SQLgreyGUI. In addition you don't need to alter the SQLgrey database at all.
- working SQLgrey setup
- Webserver (e.g. Apache) and Database (e.g. MySQL)
- PHP >= 5.5.9
- grab a copy of the code (download master.zip or use
git clone https://github.com/lbausch/SQLgreyGUI.git) - make your webserver use the
publicdirectory as document root - copy
.env.exampleto.envand adjust it to your needs (APP_URL,APP_TIMEZONE,APP_KEYand database settings) - run
composer updateto install all necessary dependencies and set a new application key withphp artisan key:generate - run
php artisan migrate --forceto create the database tables - run
php artisan db:seed --forceto create an admin user - login with the username
adminand the passwordjoh316(you can change the password in "Settings")

