mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-11-07 16:44:07 +01:00
72 lines
2.4 KiB
Plaintext
72 lines
2.4 KiB
Plaintext
#
|
|
# dbmail-ldap v3 directory schema
|
|
#
|
|
# Based on the Qmail schema
|
|
# Modified for dbmail by Paul Stevens <paul@nfg.nl>
|
|
# Modified for dbmail by Lars Kneschke <lkneschke@metaways.de> too
|
|
#
|
|
# This schema depends on:
|
|
# - core.schema
|
|
# - cosine.schema
|
|
# - nis.schema
|
|
#
|
|
# This schema conflicts with
|
|
# - qmailuser.schema
|
|
|
|
# Attribute Type Definitions
|
|
|
|
attributetype ( 1.3.6.1.4.1.12340.6.2.1.1 NAME 'mailQuota'
|
|
DESC 'The amount of space the user can use until all further messages get bounced.'
|
|
SYNTAX 1.3.6.1.4.1.1466.115.121.1.44
|
|
SINGLE-VALUE )
|
|
|
|
attributetype ( 1.3.6.1.4.1.12340.6.2.1.2 NAME 'mailForwardingAddress'
|
|
DESC 'Address(es) to forward all incoming messages to.'
|
|
EQUALITY caseIgnoreIA5Match
|
|
SYNTAX 1.3.6.1.4.1.1466.115.121.1.26 )
|
|
|
|
attributetype ( 1.3.6.1.4.1.12340.6.2.1.3 NAME 'mailHost'
|
|
DESC 'Name or address of the MTA host to use for recipient'
|
|
EQUALITY caseIgnoreIA5Match
|
|
SYNTAX 1.3.6.1.4.1.1466.115.121.1.26 )
|
|
|
|
attributetype ( 1.3.6.1.4.1.12340.6.2.1.4 NAME 'dbmailUID'
|
|
DESC 'UID of the user on the mailsystem'
|
|
EQUALITY caseIgnoreIA5Match
|
|
SUBSTR caseIgnoreIA5SubstringsMatch
|
|
SYNTAX 1.3.6.1.4.1.1466.115.121.1.26
|
|
SINGLE-VALUE )
|
|
|
|
attributetype ( 1.3.6.1.4.1.12340.6.2.1.5 NAME 'dbmailGID'
|
|
DESC 'GID of the user on the mailsystem'
|
|
EQUALITY caseIgnoreIA5Match
|
|
SUBSTR caseIgnoreIA5SubstringsMatch
|
|
SYNTAX 1.3.6.1.4.1.1466.115.121.1.26
|
|
SINGLE-VALUE )
|
|
|
|
attributetype ( 1.3.6.1.4.1.12340.6.2.1.6 NAME 'mailAlternateAddress'
|
|
DESC 'Secondary (alias) mailaddresses for the same user'
|
|
EQUALITY caseIgnoreIA5Match
|
|
SYNTAX 1.3.6.1.4.1.1466.115.121.1.26{256} )
|
|
|
|
attributetype ( 1.3.6.1.4.1.12340.6.2.1.7 NAME 'deliveryMode'
|
|
DESC 'multi field entries of: normal, forwardonly'
|
|
EQUALITY caseIgnoreMatch
|
|
SYNTAX 1.3.6.1.4.1.1466.115.121.1.44 SINGLE-VALUE )
|
|
|
|
attributetype ( 1.3.6.1.4.1.12340.6.2.1.8 NAME 'accountStatus'
|
|
DESC 'The status of a user account: active, disabled'
|
|
EQUALITY caseIgnoreMatch
|
|
SYNTAX 1.3.6.1.4.1.1466.115.121.1.44 SINGLE-VALUE )
|
|
|
|
# Object Class Definitions
|
|
|
|
objectclass ( 1.3.6.1.4.1.12340.6.2.2.1 NAME 'dbmailUser'
|
|
DESC 'DBMail-LDAP User' SUP top AUXILIARY
|
|
MUST ( uid $ mail )
|
|
MAY ( userPassword $ uidNumber $ gidNumber $ mailQuota $ mailForwardingAddress $ mailHost $ mailAlternateAddress $ dbmailUID $ dbmailGID $ deliveryMode $ accountStatus ) )
|
|
|
|
objectclass ( 1.3.6.1.4.1.12340.6.2.2.2 NAME 'dbmailForwardingAddress'
|
|
DESC 'DBMail-LDAP Forwarding Address' SUP top AUXILIARY
|
|
MUST ( mail $ mailForwardingAddress ) )
|