diff options
author | Daniel García <[email protected]> | 2018-09-13 20:59:51 +0200 |
---|---|---|
committer | Daniel García <[email protected]> | 2018-09-13 20:59:51 +0200 |
commit | 948554a20fd46acc7155303985b9517607b246b9 (patch) | |
tree | fc64750616ef43bbddaf0a6fa5a8e3533770d3b1 /README.md | |
parent | 9cdb605659f557ecfd5a90e00154fb0b58c8ec9b (diff) | |
download | vaultwarden-948554a20fd46acc7155303985b9517607b246b9.tar.gz vaultwarden-948554a20fd46acc7155303985b9517607b246b9.zip |
Added config option for websocket port, and reworked the config parsing a bit.
Added SMTP_FROM config to examples and made it mandatory, it doesn't make much sense to not specify the from address.
Diffstat (limited to 'README.md')
-rw-r--r-- | README.md | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -300,6 +300,7 @@ You can configure bitwarden_rs to send emails via a SMTP agent: ```sh docker run -d --name bitwarden \ -e SMTP_HOST=<smtp.domain.tld> \ + -e SMTP_FROM=<[email protected]> \ -e SMTP_PORT=587 \ -e SMTP_SSL=true \ -e SMTP_USERNAME=<username> \ |