sfa.schema
changeset 50 882fec08957c
parent 49 d8b5f709a2a7
equal deleted inserted replaced
49:d8b5f709a2a7 50:882fec08957c
     1 # $Id: sfa.schema 2024 2006-07-04 15:17:29Z heiko $
       
     2 # $URL: https://svn.schlittermann.de/pub/ldap.schema/trunk/sfa.schema $
       
     3 # © Heiko Schlittermann
       
     4 #
       
     5 # 1.3.6.1.4.1.23297		schlittermann OID
       
     6 # ...
       
     7 # 1.3.6.1.4.1.23297.10.		other
       
     8 # ...
       
     9 # 1.3.6.1.4.1.23297.10.9	- Seiler & Forstmann
       
    10 
       
    11 objectIdentifier schlittermannRoot 1.3.6.1.4.1.23297
       
    12 objectIdentifier sfaRoot schlittermannRoot:10.6
       
    13 objectIdentifier sfaAttribute sfaRoot:1
       
    14 objectIdentifier sfaObjectClass sfaRoot:2
       
    15 
       
    16 attributetype (
       
    17     sfaAttribute:1 NAME ('sfaMailPrimaryAddress' 'sfaMailOfficialAddress') DESC 'official mail address'
       
    18     SUP mail )
       
    19 
       
    20 attributetype (
       
    21     sfaAttribute:2 NAME 'sfaMailForwardingAddress' DESC 'forwarding information for this recipient'
       
    22     EQUALITY caseIgnoreIA5Match
       
    23     SUBSTR caseIgnoreIA5SubstringsMatch
       
    24     SYNTAX 1.3.6.1.4.1.1466.115.121.1.26{256} )
       
    25 
       
    26 attributetype (
       
    27     sfaAttribute:3 NAME ('sfaMailGroup') DESC 'mail group we are member of'
       
    28     SUP mail )
       
    29 
       
    30 attributetype (
       
    31     sfaAttribute:4 NAME ('sfaMailAddress') DESC 'mail address'
       
    32     SUP mail )
       
    33 
       
    34 attributetype (
       
    35     sfaAttribute:5 NAME ('sfaMailQuotaBytes') DESC 'size of quota space in bytes'
       
    36     EQUALITY integerMatch
       
    37     SYNTAX 1.3.6.1.4.1.1466.115.121.1.27
       
    38     SINGLE-VALUE )
       
    39 
       
    40 attributetype (
       
    41     sfaAttribute:6 NAME ('sfaMailACLGroups') DESC 'comma separated list of acl groups'
       
    42     EQUALITY caseIgnoreIA5Match
       
    43     SUBSTR caseIgnoreIA5SubstringsMatch
       
    44     SINGLE-VALUE
       
    45     SYNTAX 1.3.6.1.4.1.1466.115.121.1.26{256} )
       
    46 
       
    47 ####
       
    48 
       
    49 objectClass (
       
    50     sfaObjectClass:2 NAME 'sfaMailAlias' DESC 'Alias'
       
    51     SUP top
       
    52     STRUCTURAL
       
    53     MUST ( mail )
       
    54     MAY ( sfaMailForwardingAddress $ description ) )
       
    55 
       
    56 objectClass (
       
    57     sfaObjectClass:3 NAME 'sfaMailRecipient' DESC 'mail attributes associated to person'
       
    58     SUP top
       
    59     AUXILIARY
       
    60     MUST ( sfaMailPrimaryAddress )
       
    61     MAY ( sfaMailAddress $ sfaMailGroup $ sfaMailForwardingAddress $ sfaMailQuotaBytes $ sfaMailACLGroups $ description ) )
       
    62 
       
    63 # vim:sts=4 sw=4 aw ai sm: