diff options
author | Daniel GarcĂa <[email protected]> | 2024-01-27 02:43:26 +0100 |
---|---|---|
committer | GitHub <[email protected]> | 2024-01-27 02:43:26 +0100 |
commit | edf7484a70942de387d59c5d5cf849f24180ba66 (patch) | |
tree | b5cd3c96048e8bd77c895a099f9fbca147ac244e /.env.template | |
parent | 8b66e3441571fdb71f0610882d1ee47dccc8c0a3 (diff) | |
download | vaultwarden-edf7484a70942de387d59c5d5cf849f24180ba66.tar.gz vaultwarden-edf7484a70942de387d59c5d5cf849f24180ba66.zip |
Improve file limit handling (#4242)
* Improve file limit handling
* Oops
* Update PostgreSQL migration
* Review comments
---------
Co-authored-by: BlackDex <[email protected]>
Diffstat (limited to '.env.template')
-rw-r--r-- | .env.template | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/.env.template b/.env.template index 70b1fd6c..14219e62 100644 --- a/.env.template +++ b/.env.template @@ -308,6 +308,10 @@ ## Max kilobytes of attachment storage allowed per user. ## When this limit is reached, the user will not be allowed to upload further attachments. # USER_ATTACHMENT_LIMIT= +## Per-user send storage limit (KB) +## Max kilobytes of send storage allowed per user. +## When this limit is reached, the user will not be allowed to upload further sends. +# USER_SEND_LIMIT= ## Number of days to wait before auto-deleting a trashed item. ## If unset (the default), trashed items are not auto-deleted. |