aboutsummaryrefslogtreecommitdiff
path: root/contrib/sendmail/cf/sendmail.schema
blob: 98861abf881bc5ba204f17fafbff3df4d3e800c6 (plain) (blame)
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
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
# Copyright (c) 2000-2001 Sendmail, Inc. and its suppliers.
#	All rights reserved.
#
# By using this file, you agree to the terms and conditions set
# forth in the LICENSE file which can be found at the top level of
# the sendmail distribution.
#
# $Id: sendmail.schema,v 1.1.1.1 2002/02/17 21:56:43 gshapiro Exp $

# Note that this schema is experimental at this point as it has had little
# public review.  Therefore, it may change in future versions.  Feedback
# via sendmail@sendmail.org is encouraged.

# OID arcs for Sendmail
# enterprise:		1.3.6.1.4.1
# sendmail:		enterprise.6152
# sendmail-at:		sendmail.3.1
# sendmail-oc:		sendmail.3.2

###########################################################################
#
# The Sendmail MTA attributes and objectclass
#
###########################################################################

# attribute sendmailMTACluster	cis
attributetype ( 1.3.6.1.4.1.6152.10.3.1.10
	NAME 'sendmailMTACluster'
	DESC 'cluster name associated with a set of MTAs'
	EQUALITY caseIgnoreIA5Match
	SUBSTR caseIgnoreIA5SubstringsMatch
	SYNTAX 1.3.6.1.4.1.1466.115.121.1.26{256} )

# attribute sendmailMTAHost	cis
attributetype ( 1.3.6.1.4.1.6152.10.3.1.11
	NAME 'sendmailMTAHost'
	DESC 'host name associated with a MTA cluster'
	EQUALITY caseIgnoreIA5Match
	SUBSTR caseIgnoreIA5SubstringsMatch
	SYNTAX 1.3.6.1.4.1.1466.115.121.1.26{256} )

#objectClass sendmailMTA
#	requires
#		objectClass
#	allows
#		sendmailMTACluster,
#		sendmailMTAHost,
#		Description

objectclass ( 1.3.6.1.4.1.6152.10.3.2.10
	NAME 'sendmailMTA'
	SUP top STRUCTURAL
	DESC 'Sendmail MTA definition'
	MAY ( sendmailMTACluster $ sendmailMTAHost $ Description ) )

###########################################################################
#
# The Sendmail MTA shared attributes
#
###########################################################################

# attribute sendmailMTAKey	cis
attributetype ( 1.3.6.1.4.1.6152.10.3.1.13
	NAME 'sendmailMTAKey'
	DESC 'key (left hand side) of an aliases or map entry'
	EQUALITY caseIgnoreMatch
	SUBSTR caseIgnoreSubstringsMatch
	SYNTAX 1.3.6.1.4.1.1466.115.121.1.15{256} )

###########################################################################
#
# The Sendmail MTA Map attributes and objectclasses
#
###########################################################################

# attribute sendmailMTAMapName	cis
attributetype ( 1.3.6.1.4.1.6152.10.3.1.14
	NAME 'sendmailMTAMapName'
	DESC 'identifier for the particular map'
	EQUALITY caseIgnoreMatch
	SYNTAX 1.3.6.1.4.1.1466.115.121.1.15{128} SINGLE-VALUE )

# attribute sendmailMTAMapValue	cis
attributetype ( 1.3.6.1.4.1.6152.10.3.1.16
	NAME 'sendmailMTAMapValue'
	DESC 'value (right hand side) of a map entry'
	EQUALITY caseIgnoreMatch
	SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE )

#objectClass sendmailMTAMap
#	requires
#		objectClass,
#		sendmailMTAMapName,
#	allows
#		sendmailMTACluster,
#		sendmailMTAHost,
#		Description

objectclass ( 1.3.6.1.4.1.6152.10.3.2.11
	NAME 'sendmailMTAMap'
	SUP sendmailMTA STRUCTURAL
	DESC 'Sendmail MTA map definition'
	MUST sendmailMTAMapName
	MAY ( sendmailMTACluster $ sendmailMTAHost $ Description ) )

#objectClass sendmailMTAObject
#	requires
#		objectClass,
#		sendmailMTAMapName,
#		sendmailMTAKey,
#		sendmailMTAMapValue,
#	allows
#		sendmailMTACluster,
#		sendmailMTAHost,
#		Description

objectclass ( 1.3.6.1.4.1.6152.10.3.2.12
	NAME 'sendmailMTAMapObject'
	SUP sendmailMTAMap STRUCTURAL
	DESC 'Sendmail MTA map object'
	MUST ( sendmailMTAMapName $ sendmailMTAKey $ sendmailMTAMapValue )
	MAY ( sendmailMTACluster $ sendmailMTAHost $ Description ) )


###########################################################################
#
# The Sendmail MTA Alias attributes and objectclasses
#
###########################################################################

# attribute sendmailMTAAliasGrouping	cis
attributetype ( 1.3.6.1.4.1.6152.10.3.1.18
	NAME 'sendmailMTAAliasGrouping'
	DESC 'name that identifies a particular aliases grouping'
	EQUALITY caseIgnoreMatch
	SUBSTR caseIgnoreSubstringsMatch
	SYNTAX 1.3.6.1.4.1.1466.115.121.1.26{256} )

# attribute sendmailMTAAliasValue	cis
attributetype ( 1.3.6.1.4.1.6152.10.3.1.20
	NAME 'sendmailMTAAliasValue'
	DESC 'value (right hand side) of an alias'
	EQUALITY caseIgnoreMatch
	SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 )

#objectClass sendmailMTAAlias
#	requires
#		objectClass,
#	allows
#		sendmailMTAAliasGrouping,
#		sendmailMTACluster,
#		sendmailMTAHost,
#		Description

objectclass ( 1.3.6.1.4.1.6152.10.3.2.13
	NAME 'sendmailMTAAlias'
	SUP sendmailMTA STRUCTURAL
	DESC 'Sendmail MTA alias definition'
	MAY ( sendmailMTAAliasGrouping $
		sendmailMTACluster $ sendmailMTAHost $ Description ) )

#objectClass sendmailMTAAliasObject
#	requires
#		objectClass,
#		sendmailMTAKey,
#		sendmailMTAAliasValue,
#	allows
#		sendmailMTAAliasGrouping,
#		sendmailMTACluster,
#		sendmailMTAHost,
#		Description

objectclass ( 1.3.6.1.4.1.6152.10.3.2.14
	NAME 'sendmailMTAAliasObject'
	SUP sendmailMTAAlias STRUCTURAL
	DESC 'Sendmail MTA alias object'
	MUST ( sendmailMTAKey $ sendmailMTAAliasValue )
	MAY ( sendmailMTAAliasGrouping $
		sendmailMTACluster $ sendmailMTAHost $ Description ) )

###########################################################################
#
# The Sendmail MTA Class attributes and objectclass
#
###########################################################################

# attribute sendmailMTAClassName	cis
attributetype ( 1.3.6.1.4.1.6152.10.3.1.22
	NAME 'sendmailMTAClassName'
	DESC 'identifier for the class'
	EQUALITY caseIgnoreMatch
	SYNTAX 1.3.6.1.4.1.1466.115.121.1.15{128} SINGLE-VALUE )

# attribute sendmailMTAClassValue	cis
attributetype ( 1.3.6.1.4.1.6152.10.3.1.23
	NAME 'sendmailMTAClassValue'
	DESC 'member of a class'
	EQUALITY caseIgnoreMatch
	SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 )

#objectClass sendmailMTAClass
#	requires
#		objectClass,
#		sendmailMTAClassName,
#		sendmailMTAClassValue,
#	allows
#		sendmailMTACluster,
#		sendmailMTAHost,
#		Description

objectclass ( 1.3.6.1.4.1.6152.10.3.2.15
	NAME 'sendmailMTAClass'
	SUP sendmailMTA STRUCTURAL
	DESC 'Sendmail MTA class definition'
	MUST ( sendmailMTAClassName $ sendmailMTAClassValue )
	MAY ( sendmailMTACluster $ sendmailMTAHost $ Description ) )