From 26d7541eb3058d179f24ddbf84c0ceb1353637c8 Mon Sep 17 00:00:00 2001 From: Rob Watson Date: Thu, 30 May 2019 09:42:08 +0200 Subject: [PATCH] Add `MAIL_ADDRESS` environment variable --- source/environment.html.md | 3 ++- source/installation/config.html.md | 1 + 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/source/environment.html.md b/source/environment.html.md index 7710307..f45dc3c 100644 --- a/source/environment.html.md +++ b/source/environment.html.md @@ -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: diff --git a/source/installation/config.html.md b/source/installation/config.html.md index ff14c2e..6bbba7f 100644 --- a/source/installation/config.html.md +++ b/source/installation/config.html.md @@ -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`,