Commit Graph

7 Commits

Author SHA1 Message Date
Lars Bensmann d7badc97fe Allow bare jids (users) in whitelist
Allow more fine-grained control via the whitelist feature.
2015-08-04 14:40:48 +02:00
Christian S. c097e378a6 update readme to match with renamed config variables 2015-08-02 11:23:37 +02:00
Lars Bensmann f4b4284536 Add expiry and user quotas
Expiry and user quotas are controlled by four config options:

```expire_interval``` determines how often (in seconds) files should be
deleted. As every expiry run needs to check all uploaded files of all
users this should not be set too small.

Files older than ```expire_maxage``` (in seconds) will be deleted by an
expiry run. Set this to ```0``` to disable deletions based on file age.

After an expiry run at most ```user_quota_soft``` space (in bytes) will be
occupied per user. The oldest files will be deleted first until the occupied
space is less than ```user_quota_soft```. Set this to ```0``` to disable
file deletions based on a users occupied space.

```user_quota_hard``` sets a hard limit how much space (in bytes) a user
may occupy. If an upload would make his files exceed this size it will be
rejected. This setting is not dependend on ```expire_interval```. Set
this to ```0``` to disable upload rejection based on occupied space.

```expire_maxage``` and ```user_quota_soft``` depend on ```expire_interval```.

```user_quota_hard``` is honoured even without expiry runs. But some kind
of expiry is recommended otherwise a user will not be able to upload
anymore files once his hard quota is reached.

The difference between ```user_quota_hard``` and ```user_quota_soft```
determines how much a user may upload per ```expire_interval```.
2015-07-28 00:07:07 +02:00
Sam Whited 2546769fb4 Cleanup readme 2015-07-22 21:30:57 -05:00
Daniel Gultsch 7f6be7e97a mention the contrib directory in the readme 2015-07-22 11:31:09 +02:00
Daniel Gultsch 4dde390ae5 edited readme 2015-07-20 18:21:16 +02:00
Daniel Gultsch 2f8ac488a5 added readme 2015-07-03 13:50:20 +02:00