-
Notifications
You must be signed in to change notification settings - Fork 2.1k
spec: Quota handling
If no quota is set, the limit indicated to the user is the maximum available space of the partition available to owncloud storage, in case the local storage backend is used.
Ed: What about remote storage backends?
Each user / group can be assigned a quota via the user management console, or via special fields in the auth backend such as LDAP.
Ed: Do user quotas take precedence over group quotas?
Ed: There are several possibilities here afaik. Sharing a folder with a user can reduce his quota (provider scenario). If that's not the case, which quota is taken? The one of the one sharing the folder?
ownCloud returns the following properties as defined in RFC 4331:
Name | Purpose |
---|---|
DAV:quota-available-bytes |
Indicates the maximum amount of additional storage available to be allocated to a resource. |
DAV:quota-used-bytes |
Contains the amount of storage counted against the quota on a resource. |
Quotas in WebDAV are hard-quotas, i.e. once hit, the user will not be able to upload any more files.