You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Mar 24, 2024. It is now read-only.
Copy file name to clipboardExpand all lines: README.md
+9-10Lines changed: 9 additions & 10 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,16 +1,15 @@
1
1
SQLgreyGUI
2
2
==========
3
3
4
-
Web interface for [SQLgrey](http://sqlgrey.sourceforge.net/) using the [Laravel](http://laravel.com/) Framework.
4
+
Web interface for [SQLgrey](http://sqlgrey.sourceforge.net/) using the [Laravel 5](http://laravel.com/) Framework.
5
5
6
6
7
7
## Features
8
-
* Dashboard: quick overview of eMails / domains in greylist, whitelist, opt-out and opt-in
8
+
* Dashboard: quick overview of emails / domains in greylist, whitelist, opt-out and opt-in
9
9
* Greylist: delete entries or move them to the whitelist
10
-
* Greylist: new entries are displayed without the need to refresh periodically
11
-
* Whitelist: add sender eMails or sender domains to prevent them from being greylisted and delivered directly
12
-
* Opt-out: define eMails or Domains you don't want greylisting to be enabled for
13
-
* Opt-in: define eMails or Domains for which you want to enforce greylisting permanently
10
+
* Whitelist: add sender emails or sender domains to prevent them from being greylisted and delivered directly
11
+
* Opt-out: define emails or domains you don't want greylisting to be enabled for
12
+
* Opt-in: define emails or domains for which you want to enforce greylisting permanently
14
13
* 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.
15
14
16
15
@@ -20,14 +19,14 @@ Web interface for [SQLgrey](http://sqlgrey.sourceforge.net/) using the [Laravel]
20
19
* PHP >= 5.4.0
21
20
22
21
23
-
## Installation in 7 steps
22
+
## Installation in 7 simple steps
24
23
1. grab a copy of the code (download [master.zip](https://github.com/lbausch/SQLgreyGUI/archive/master.zip) or use `git clone https://github.com/lbausch/SQLgreyGUI.git`)
25
24
2. make your webserver use the `public` directory as document root
26
-
3.rename `config-dist.php` to `config.php`, `app/config/app-dist.php`to `app/config/app.php` and `app/config/mail-dist.php` to `app/config/mail.php`. Adjust the settings to your needs (check `timezone` setting in `app/config/app.php`!).
27
-
4. run `composer update` to install all necessary dependencies
25
+
3.copy `.env.example`to `.env` and adjust it to your needs (`APP_URL`, `APP_TIMEZONE`, `APP_KEY` and database settings)
26
+
4. run `composer update` to install all necessary dependencies and set a new application key with `php artisan key:generate`
28
27
5. run `php artisan migrate --force` to create the database tables
29
28
6. run `php artisan db:seed --force` to create an admin user
30
-
7. login with the username `admin` and the password `joh316`
29
+
7. login with the username `admin` and the password `joh316` (you can change the password in "Settings")
0 commit comments