-
Notifications
You must be signed in to change notification settings - Fork 6
/
owncloud.schema
34 lines (30 loc) · 1 KB
/
owncloud.schema
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
#
# LDAP SCHEMA for 'ownCloud'
#
# From http://doc.owncloud.org/server/6.0/admin_manual/configuration/auth_ldap.html
#
# Quota Field:
# ownCloud can read an LDAP attribute and set the user quota according to its value.
# Specify the attribute here, otherwise keep it empty. The attribute shall return
# human readable values, e.g. "2 GB".
# Example: ownCloudQuota
#
# SOURCE:
# https://github.com/valerytschopp/owncloud-ldap-schema
#
# objectidentifier OwnCloud 1.3.6.1.4.1.39430
# objectidentifier OwnCloudLDAP 1.3.6.1.4.1.39430.1
# objectidentifier OwnCloudLDAPAttributeType 1.3.6.1.4.1.39430.1.1
# objectidentifier OwnCloudLDAPObjectClass 1.3.6.1.4.1.39430.1.2
attributetype ( 1.3.6.1.4.1.39430.1.1.1
NAME 'ownCloudQuota'
DESC 'User Quota (e.g. 15 GB)'
EQUALITY caseExactMatch
SUBSTR caseIgnoreSubstringsMatch
SYNTAX '1.3.6.1.4.1.1466.115.121.1.15'
SINGLE-VALUE )
objectclass ( 1.3.6.1.4.1.39430.1.2.1
NAME 'ownCloud'
DESC 'ownCloud LDAP Schema'
AUXILIARY
MAY ( ownCloudQuota ) )