exim.schema
changeset 0 6f63db6c380f
child 1 b4288a997501
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/exim.schema	Mon Oct 21 17:11:56 2013 +0200
@@ -0,0 +1,67 @@
+# exim.schema
+# https://ssl.schlittermann.de/hg/exim-ldap-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.10	- exim
+
+# The schlittermannRoot can be found in the iana.mails file, it's
+# officially assigned by IANA
+objectIdentifier schlittermannRoot 1.3.6.1.4.1.23297
+objectIdentifier eximRoot schlittermannRoot:10.6
+objectIdentifier eximAttribute eximRoot:1
+objectIdentifier eximObjectClass eximRoot:2
+
+attributetype (
+    eximAttribute:1 NAME ('eximMailPrimaryAddress' 'eximMailAddress' 'eximMailOfficialAddress') 
+    DESC 'official mail address'
+    SINGLE-VALUE
+    SUP mail )
+    
+attributetype (
+    eximAttribute:2 NAME ('eximMailAlternateAddress' 'eximMailAlias') DESC 'alternate mail address (alias)'
+    SUP mail )
+
+attributetype (
+    eximAttribute:3 NAME ('eximMailForwardingAddress') DESC 'forwarding information for this recipient'
+    EQUALITY caseIgnoreIA5Match
+    SUBSTR caseIgnoreIA5SubstringsMatch
+    SYNTAX 1.3.6.1.4.1.1466.115.121.1.26{256} )
+
+attributetype (
+    eximAttribute:4 NAME ('eximMailGroup') DESC 'mail group we are member of'
+    SUP mail )
+
+attributetype (
+    eximAttribute:5 NAME ('eximMailQuotaBytes') DESC 'size of quota space in bytes'
+    EQUALITY integerMatch
+    SYNTAX 1.3.6.1.4.1.1466.115.121.1.27
+    SINGLE-VALUE )
+
+attributetype (
+    eximAttribute:6 NAME ('eximMailACLGroups') 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 (
+    eximObjectClass:2 NAME 'eximMailAlias' DESC 'Alias'
+    SUP top
+    STRUCTURAL
+    MUST ( mail )
+    MAY ( eximMailForwardingAddress $ description ) )
+
+objectClass (
+    eximObjectClass:3 NAME 'eximMailRecipient' DESC 'mail attributes associated to person'
+    SUP top
+    AUXILIARY
+    MUST ( eximMailPrimaryAddress )
+    MAY ( eximMailAlternateAddress $ eximMailGroup $ eximMailForwardingAddress $ eximMailQuotaBytes $ eximMailACLGroups $ description ) )
+
+# vim:sts=4 sw=4 aw ai sm: