forked from plume/documentation
Add MAIL_ADDRESS
environment variable (#46)
Add `MAIL_ADDRESS` environment variable
This commit is contained in:
commit
94d5ab0ff2
2 changed files with 3 additions and 1 deletions
|
@ -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:
|
||||
|
|
|
@ -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`,
|
||||
|
|
Loading…
Reference in a new issue