1
2
mirror of https://github.com/vimagick/dockerfiles synced 2024-06-16 03:48:44 +00:00
This commit is contained in:
kev 2015-05-26 17:56:00 +08:00
parent f920d9cd8c
commit 0096418f05

@ -24,7 +24,7 @@ mysql:
> You can use `mariadb`/`postgres` instead of `mysql`.
## setup
## install
```
$ firefox http://localhost:8989/admin/install.php
@ -48,8 +48,20 @@ Attempt Installation [Install/Upgrade Databas
==================================================================================
```
## todo
## email
Append following to `/var/www/html/config_inc.php`
```
$g_phpMailer_method = PHPMAILER_METHOD_SMTP;
$g_administrator_email = 'admin@example.org';
$g_webmaster_email = 'webmaster@example.org';
$g_return_path_email = 'mantisbt@example.org';
$g_from_email = 'mantisbt@example.org';
$g_smtp_host = 'smtp.example.org';
$g_smtp_port = 25;
$g_smtp_connection_mode = 'tls';
$g_smtp_username = 'mantisbt';
$g_smtp_password = '********';
```
- support `curl`
- config `smtp`
- ...