Add MAIL_ADDRESS environment variable (#46)

Add `MAIL_ADDRESS` environment variable
This commit is contained in:
Baptiste Gelez 2019-05-30 10:50:44 +01:00 committed by GitHub
commit 94d5ab0ff2
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
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`,