sfa.schema
changeset 46 41d51a5d22b8
parent 45 84929964cb95
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/sfa.schema	Tue Mar 06 14:01:54 2012 +0100
@@ -0,0 +1,63 @@
+# $Id: sfa.schema 2024 2006-07-04 15:17:29Z heiko $
+# $URL: https://svn.schlittermann.de/pub/ldap.schema/trunk/sfa.schema $
+# © Heiko Schlittermann
+#
+# 1.3.6.1.4.1.23297		schlittermann OID
+# ...
+# 1.3.6.1.4.1.23297.10.		other
+# ...
+# 1.3.6.1.4.1.23297.10.9	- Seiler & Forstmann
+
+objectIdentifier schlittermannRoot 1.3.6.1.4.1.23297
+objectIdentifier sfaRoot schlittermannRoot:10.6
+objectIdentifier sfaAttribute sfaRoot:1
+objectIdentifier sfaObjectClass sfaRoot:2
+
+attributetype (
+    sfaAttribute:1 NAME ('sfaMailPrimaryAddress' 'sfaMailOfficialAddress') DESC 'official mail address'
+    SUP mail )
+
+attributetype (
+    sfaAttribute:2 NAME 'sfaMailForwardingAddress' DESC 'forwarding information for this recipient'
+    EQUALITY caseIgnoreIA5Match
+    SUBSTR caseIgnoreIA5SubstringsMatch
+    SYNTAX 1.3.6.1.4.1.1466.115.121.1.26{256} )
+
+attributetype (
+    sfaAttribute:3 NAME ('sfaMailGroup') DESC 'mail group we are member of'
+    SUP mail )
+
+attributetype (
+    sfaAttribute:4 NAME ('sfaMailAddress') DESC 'mail address'
+    SUP mail )
+
+attributetype (
+    sfaAttribute:5 NAME ('sfaMailQuotaBytes') DESC 'size of quota space in bytes'
+    EQUALITY integerMatch
+    SYNTAX 1.3.6.1.4.1.1466.115.121.1.27
+    SINGLE-VALUE )
+
+attributetype (
+    sfaAttribute:6 NAME ('sfaMailACLGroups') DESC 'comma separated list of acl groups'
+    EQUALITY caseIgnoreIA5Match
+    SUBSTR caseIgnoreIA5SubstringsMatch
+    SINGLE-VALUE
+    SYNTAX 1.3.6.1.4.1.1466.115.121.1.26{256} )
+
+####
+
+objectClass (
+    sfaObjectClass:2 NAME 'sfaMailAlias' DESC 'Alias'
+    SUP top
+    STRUCTURAL
+    MUST ( mail )
+    MAY ( sfaMailForwardingAddress $ description ) )
+
+objectClass (
+    sfaObjectClass:3 NAME 'sfaMailRecipient' DESC 'mail attributes associated to person'
+    SUP top
+    AUXILIARY
+    MUST ( sfaMailPrimaryAddress )
+    MAY ( sfaMailAddress $ sfaMailGroup $ sfaMailForwardingAddress $ sfaMailQuotaBytes $ sfaMailACLGroups $ description ) )
+
+# vim:sts=4 sw=4 aw ai sm: