comparison 510sg.schema @ 2:8dd68d722fa8

add ldif converters
author carl
date Sun, 11 Jul 2004 13:31:02 -0700
parents
children
comparison
equal deleted inserted replaced
0:6b1b602514db 2:8dd68d722fa8
1 attributetype ( 2.5.4.3.1 NAME ( 'fn' 'firstName' ) SUP name )
2 attributetype ( 2.5.4.3.2 NAME ( 'ti' 'salutation' ) SUP name )
3 attributetype ( 2.5.4.3.3 NAME ( 'ma' 'email' ) SUP name )
4 attributetype ( 2.5.4.3.4 NAME ( 'ad' 'address' ) SUP name )
5 attributetype ( 2.5.4.3.5 NAME ( 'ci' 'city' ) SUP name )
6 attributetype ( 2.5.4.3.6 NAME ( 'zi' 'zipcode' ) SUP name )
7 attributetype ( 2.5.4.3.7 NAME ( 'ph' 'phone' ) SUP name )
8 attributetype ( 2.5.4.3.8 NAME ( 'wk' 'workphone' ) SUP name )
9 attributetype ( 2.5.4.3.9 NAME ( 'fa' 'faxphone' ) SUP name )
10 attributetype ( 2.5.4.3.10 NAME ( 'mo' 'cellphone' ) SUP name )
11 attributetype ( 2.5.4.3.11 NAME ( 'de' 'descript' ) SUP name )
12
13 attributetype ( 2.5.4.3.12 NAME ( 'company' ) SUP name )
14
15 objectclass ( 2.5.6.6.1 NAME 'sgPerson' SUP top STRUCTURAL
16 MUST ( cn )
17 MAY (
18 fn $
19 sn $
20 ti $
21 co $
22 ma $
23 ad $
24 ci $
25 st $
26 zi $
27 c $
28 ph $
29 wk $
30 fa $
31 mo $
32 de
33 )
34 )
35
36 objectclass ( 2.5.6.6.2 NAME 'newPerson' SUP person STRUCTURAL
37 MUST ( cn )
38 MAY (
39 givenName $
40 sn $
41 personalTitle $
42 company $
43 mail $
44 postalAddress $
45 l $
46 st $
47 postalCode $
48 c $
49 homePhone $
50 telephoneNumber $
51 facsimileTelephoneNumber $
52 mobile $
53 description
54 )
55 )