summaryrefslogtreecommitdiffstats
path: root/ldap/schema/60pureftpd.ldif
blob: 0ca98a3afb56d2a7981e6fe9d78a805feb684b3a (plain)
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
# 60pureftpd.ldif - Pure-FTPd schema
################################################################################
#
# See README.LDAP in the Pure-FTPd documentation for more information.
#
# Written 2002-01-24 by Ben Gertzfield <che =AT= debian -DOT- org>
#
dn: cn=schema
#
################################################################################
#
attributeTypes: (
  1.3.6.1.4.1.6981.11.3.1
  NAME 'FTPQuotaFiles'
  DESC 'Quota (in number of files) for an FTP user'
  EQUALITY integerMatch
  SYNTAX 1.3.6.1.4.1.1466.115.121.1.27
  SINGLE-VALUE
  X-ORIGIN 'Pure-FTPd'
  )
#
################################################################################
#
attributeTypes: (
  1.3.6.1.4.1.6981.11.3.2
  NAME 'FTPQuotaMBytes'
  DESC 'Quota (in megabytes) for an FTP user'
  EQUALITY integerMatch
  SYNTAX 1.3.6.1.4.1.1466.115.121.1.27
  SINGLE-VALUE
  X-ORIGIN 'Pure-FTPd'
  )
#
################################################################################
#
attributeTypes: (
  1.3.6.1.4.1.6981.11.3.3
  NAME 'FTPUploadRatio'
  DESC 'Ratio (compared with FTPRatioDown) for uploaded files'
  EQUALITY integerMatch
  SYNTAX 1.3.6.1.4.1.1466.115.121.1.27
  SINGLE-VALUE
  X-ORIGIN 'Pure-FTPd'
  )
#
################################################################################
#
attributeTypes: (
  1.3.6.1.4.1.6981.11.3.4
  NAME 'FTPDownloadRatio'
  DESC 'Ratio (compared with FTPRatioUp) for downloaded files'
  EQUALITY integerMatch
  SYNTAX 1.3.6.1.4.1.1466.115.121.1.27
  SINGLE-VALUE
  X-ORIGIN 'Pure-FTPd'
  )
#
################################################################################
#
attributeTypes: (
  1.3.6.1.4.1.6981.11.3.5
  NAME 'FTPUploadBandwidth'
  DESC 'Bandwidth (in KB/s) to limit upload speeds to'
  EQUALITY integerMatch
  SYNTAX 1.3.6.1.4.1.1466.115.121.1.27
  SINGLE-VALUE
  X-ORIGIN 'Pure-FTPd'
  )
#
################################################################################
#
attributeTypes: (
  1.3.6.1.4.1.6981.11.3.6
  NAME 'FTPDownloadBandwidth'
  DESC 'Bandwidth (in KB/s) to limit download speeds to'
  EQUALITY integerMatch
  SYNTAX 1.3.6.1.4.1.1466.115.121.1.27
  SINGLE-VALUE
  X-ORIGIN 'Pure-FTPd'
  )
#
################################################################################
#
attributeTypes: (
  1.3.6.1.4.1.6981.11.3.7
  NAME 'FTPStatus'
  DESC 'Account status: enabled or disabled'
  EQUALITY booleanMatch
  SYNTAX 1.3.6.1.4.1.1466.115.121.1.7
  SINGLE-VALUE
  X-ORIGIN 'Pure-FTPd'
  )
#
################################################################################
#
attributeTypes: (
  1.3.6.1.4.1.6981.11.3.8
  NAME 'FTPuid'
  DESC 'System uid (overrides uidNumber if present)'
  EQUALITY integerMatch
  SYNTAX 1.3.6.1.4.1.1466.115.121.1.27
  SINGLE-VALUE
  X-ORIGIN 'Pure-FTPd'
  )
#
################################################################################
#
attributeTypes: (
  1.3.6.1.4.1.6981.11.3.9
  NAME 'FTPgid'
  DESC 'System uid (overrides gidNumber if present)'
  EQUALITY integerMatch
  SYNTAX 1.3.6.1.4.1.1466.115.121.1.27
  SINGLE-VALUE
  X-ORIGIN 'Pure-FTPd'
  )
#
################################################################################
#
objectClasses: (
  1.3.6.1.4.1.6981.11.2.3
  NAME 'PureFTPdUser'
  DESC 'PureFTPd user with optional quota, throttling and ratio'
  MAY ( FTPStatus $ FTPQuotaFiles $ FTPQuotaMBytes $ FTPUploadRatio $ FTPDownloadRatio $ FTPUploadBandwidth $ FTPDownloadBandwidth $ FTPuid $ FTPgid )
  X-ORIGIN 'Pure-FTPd'
  )
#
################################################################################
#