Add MAIL_ADDRESS environment variable

This commit is contained in:
Rob Watson 2019-05-30 09:42:08 +02:00
parent 7eb338be9e
commit 26d7541eb3
2 changed files with 3 additions and 1 deletions

View file

@ -22,9 +22,10 @@ meaning that all your users will get disconnected. You can generate one with `op
The SMTP server to send mails can be configured with:
- `MAIL_SERVER`: the SMTP server to connect to.
- `MAIL_USER`: the username of the user that sends emails.
- `MAIL_USER`: the username for authentication purposes.
- `MAIL_PASSWORD`: its password.
- `MAIL_HELO_NAME`: the name sent during EHLO/HELO.
- `MAIL_ADDRESS`: the address that emails will be sent from.
You can also change the logo you want to use for your instance in this file. Your logo should be in the `static` directory.
To make Plume load it, you can use:

View file

@ -37,6 +37,7 @@ MAIL_SERVER=smtp.example.org
MAIL_USER=example
MAIL_PASSWORD=123456
MAIL_HELO_NAME=example.org
MAIL_ADDRESS=from@example.org
```
For more information about what you can put in your `.env`,