diff options
author | BlackDex <[email protected]> | 2022-02-22 20:48:00 +0100 |
---|---|---|
committer | BlackDex <[email protected]> | 2022-02-26 13:56:42 +0100 |
commit | 42136a70973f60086749c62439c6a965d4589c02 (patch) | |
tree | 35979fc1ad0c6e6649271fa24ed0ba24b3135ef9 /.env.template | |
parent | 5f01db69ffdb3d37e24e30a7003792ed72882973 (diff) | |
download | vaultwarden-42136a70973f60086749c62439c6a965d4589c02.tar.gz vaultwarden-42136a70973f60086749c62439c6a965d4589c02.zip |
Favicon, SMTP and misc updates
Favicon:
- Replaced HTML tokenizer, much faster now.
- Caching the domain blacklist function.
- Almost all functions are async now.
- Fixed bug on minimizing data to parse
- Changed maximum icon download size to 5MB to match Bitwarden
- Added `apple-touch-icon.png` as a second fallback besides `favicon.ico`
SMTP:
- Deprecated SMTP_SSL and SMTP_EXPLICIT_TLS, replaced with SMTP_SECURITY
Misc:
- Fixed issue when `resolv.conf` contains errors and trust-dns panics (Fixes #2283)
- Updated Javscript and CSS files for admin interface
- Fixed an issue with the /admin interface which did not cleared the login cookie correctly
- Prevent websocket notifications during org import, this caused a lot of traffic, and slowed down the import.
This is also the same as Bitwarden which does not trigger this refresh via websockets.
Rust:
- Updated to use v1.59
- Use the new `strip` option and enabled to strip `debuginfo`
- Enabled `lto` with `thin`
- Removed the strip RUN from the alpine armv7, this is now done automatically
Diffstat (limited to '.env.template')
-rw-r--r-- | .env.template | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/.env.template b/.env.template index 8da88cdc..2d0ea32b 100644 --- a/.env.template +++ b/.env.template @@ -331,9 +331,8 @@ # SMTP_HOST=smtp.domain.tld # SMTP_FROM_NAME=Vaultwarden +# SMTP_SECURITY=starttls # ("starttls", "force_tls", "off") Enable a secure connection. Default is "starttls" (Explicit - ports 587 or 25), "force_tls" (Implicit - port 465) or "off", no encryption (port 25) # SMTP_PORT=587 # Ports 587 (submission) and 25 (smtp) are standard without encryption and with encryption via STARTTLS (Explicit TLS). Port 465 is outdated and used with Implicit TLS. -# SMTP_SSL=true # (Explicit) - This variable by default configures Explicit STARTTLS, it will upgrade an insecure connection to a secure one. Unless SMTP_EXPLICIT_TLS is set to true. Either port 587 or 25 are default. -# SMTP_EXPLICIT_TLS=true # (Implicit) - N.B. This variable configures Implicit TLS. It's currently mislabelled (see bug #851) - SMTP_SSL Needs to be set to true for this option to work. Usually port 465 is used here. # SMTP_USERNAME=username # SMTP_PASSWORD=password # SMTP_TIMEOUT=15 |