diff options
author | thelittlefireman <[email protected]> | 2021-03-24 20:15:55 +0100 |
---|---|---|
committer | thelittlefireman <[email protected]> | 2021-09-17 01:25:44 +0200 |
commit | 4ab936297186746f00a275182b8e01d54466fc3d (patch) | |
tree | 9a79a86a1904c5f87362be698f379a14d17d22c9 /.env.template | |
parent | 8c10de3eddd8349264074c3aa3a7d955862275a6 (diff) | |
download | vaultwarden-4ab936297186746f00a275182b8e01d54466fc3d.tar.gz vaultwarden-4ab936297186746f00a275182b8e01d54466fc3d.zip |
Add Emergency contact feature
Signed-off-by: thelittlefireman <[email protected]>
Diffstat (limited to '.env.template')
-rw-r--r-- | .env.template | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/.env.template b/.env.template index 8c741d83..705c533c 100644 --- a/.env.template +++ b/.env.template @@ -77,6 +77,14 @@ ## Cron schedule of the job that checks for trashed items to delete permanently. ## Defaults to daily (5 minutes after midnight). Set blank to disable this job. # TRASH_PURGE_SCHEDULE="0 5 0 * * *" +## +## Cron schedule of the job that sends expiration reminders to emergency request grantors. +## Defaults to hourly (10 minutes after the hour). Set blank to disable this job. +# EMERGENCY_NOTIFICATION_REMINDER_SCHEDULE="0 10 * * * *" +## +## Cron schedule of the job that checks for expired (i.e granted by timeout) emergency requests. +## Defaults to hourly (15 minutes after the hour). Set blank to disable this job. +# EMERGENCY_REQUEST_TIMEOUT_SCHEDULE="0 15 * * * *" ## Enable extended logging, which shows timestamps and targets in the logs # EXTENDED_LOGGING=true @@ -312,6 +320,9 @@ ## If sending the email fails the login attempt will fail!! # REQUIRE_DEVICE_EMAIL=false +## Emergency access enable. Enable or disable the emergency access feature for all users +# EMERGENCY_ACCESS_ALLOWED=false + ## HIBP Api Key ## HaveIBeenPwned API Key, request it here: https://haveibeenpwned.com/API/Key # HIBP_API_KEY= |