From e40362af1cf71b06001cfd875a121103dea229ac Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Proxymiity=20=E2=98=86?= Date: Thu, 29 Apr 2021 20:34:21 +0200 Subject: [PATCH] Renamed values according to the README --- SMTP-configuration.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/SMTP-configuration.md b/SMTP-configuration.md index e6e85d5..a44ae01 100644 --- a/SMTP-configuration.md +++ b/SMTP-configuration.md @@ -1,14 +1,14 @@ You can configure vaultwarden to send emails via a SMTP agent: ```sh -docker run -d --name bitwarden \ +docker run -d --name vaultwarden \ -e SMTP_HOST= \ - -e SMTP_FROM= \ + -e SMTP_FROM= \ -e SMTP_PORT=587 \ -e SMTP_SSL=true \ -e SMTP_USERNAME= \ -e SMTP_PASSWORD= \ - -v /bw-data/:/data/ \ + -v /vw-data/:/data/ \ -p 80:80 \ vaultwarden/server:latest ``` @@ -18,7 +18,7 @@ When `SMTP_SSL` is set to `true`(this is the default), only TLSv1.1 and TLSv1.2 Note that if SMTP and invitations are enabled, invitations will be sent to new users via email. You must set the `DOMAIN` configuration option with the base URL of your vaultwarden instance for the invite link to be generated correctly: ```sh -docker run -d --name bitwarden \ +docker run -d --name vaultwarden \ ... -e DOMAIN=https://vault.example.com \ ...