diff --git a/Install-Wekan-Docker-for-testing.md b/Install-Wekan-Docker-for-testing.md index cd72e72..3deede5 100644 --- a/Install-Wekan-Docker-for-testing.md +++ b/Install-Wekan-Docker-for-testing.md @@ -52,7 +52,7 @@ to the new port (This procedure has been tested on Linux Ubuntu 14.04 and Mac OS 10.11.6.) -### Testing with mail server +## Testing with mail server Above method will create an instance of Wekan without mailing features (users inviting, password recovery, neat registration) because MAIL_URL env var isn't set. This `docker-compose.yml` solves that problem by adding *mailserver* container. @@ -99,4 +99,21 @@ Several additional steps needed. cd /home/wekan/maildirs opendkim-genkey -s mail -d example.com mv mail.private dkim.key - ``` \ No newline at end of file + ``` + +## Show mails with a Docker image, without mail configuration +When you did **NOT** setup the `MAIL_URL` environment variable in Wekan, the mail message will be 'sent' to the terminal output instead of sending an actual e-mail. If you are using Docker images, list the containers via: + +```sh +docker ps +``` + +Then display the process output: + +```sh +docker logs -f +``` + +With the `-f` flag (`f` for `follow`), you will see the real-time output of the process. You can exit with **CTRL + C** without affecting the Wekan process. + +Via the web-interface press the '_forgot your password?_' link and trigger a reset mail. And watch the terminal output for the e-mail. \ No newline at end of file