In doing some more testing, I found an easier way, just throw this file in your /opt/fedora-ds/slapd-server/config/schema directory and restart ldap. This may be easier than running through the below steps.

Drew wrote:

Hi Gang,
I posted this to this qmail-ldap wiki, but here is is for you folks as well. This is how I got Fedora-DS to work with the qmail-ldap schema:

Note that server should be replaced by the name of your slapd server

1. Remove /opt/fedora-ds/slapd-server/config/schema/tmp/50ns-mail.ldif.
(This file had some of the same attributes as the qmail schema, but not all fo them)

2. Convert the qmail.schema file to a fedora-ds style schema by running:
$ ./ol-schema-migrate.pl /tmp/qmail.schema > /opt/fedora-ds/slapd-server/config/schema/55ns-qmail.ldif

The ol-schema-migrate.pl script (http://www.directory.fedora.redhat.com/download/ol-schema-migrate.pl) was downloaded from http://directory.fedora.redhat.com/. The OpenLDAP->FDS Migration Howto (http://directory.fedora.redhat.com/wiki/Howto:OpenLDAPMigration) located at the same site may also be useful for troubleshooting problems.

3. The LDIF had to be changed a bit so that the qmailAccountPurge would work. Apparently fedora-ds does not have the OID for numericStringMatch. I changed that to integerMatch instead. I hope that doesn't break anything.

Feel free to expand on this, or let me know if I have missed anything! Attached is the 55ns-qmail.ldif I generated.

------------------------------------------------------------------------

#
#********************************************************************
#
dn: cn=schema
#
#********************************************************************
#
attributeTypes: (
 1.3.6.1.4.1.7914.1.2.1.1
 NAME 'qmailUID'
 DESC 'UID of the user on the mailsystem'
 EQUALITY integerMatch
 SYNTAX 1.3.6.1.4.1.1466.115.121.1.27
 SINGLE-VALUE
 )
#
#********************************************************************
#
attributeTypes: (
 1.3.6.1.4.1.7914.1.2.1.2
 NAME 'qmailGID'
 DESC 'GID of the user on the mailsystem'
 EQUALITY integerMatch
 SYNTAX 1.3.6.1.4.1.1466.115.121.1.27
 SINGLE-VALUE
 )
#
#********************************************************************
#
attributeTypes: (
 1.3.6.1.4.1.7914.1.2.1.3
 NAME 'mailMessageStore'
 DESC 'Path to the maildir/mbox on the mail system'
 EQUALITY caseExactIA5Match
 SUBSTR caseIgnoreIA5SubstringsMatch
 SYNTAX 1.3.6.1.4.1.1466.115.121.1.26{256}
 SINGLE-VALUE
 )
#
#********************************************************************
#
attributeTypes: (
 1.3.6.1.4.1.7914.1.2.1.4
 NAME 'mailAlternateAddress'
 DESC 'Secondary (alias) mailaddresses for the same user'
 EQUALITY caseIgnoreIA5Match
 SUBSTR caseIgnoreIA5SubstringsMatch
 SYNTAX 1.3.6.1.4.1.1466.115.121.1.26{256}
 )
#
#********************************************************************
#
attributeTypes: (
 1.3.6.1.4.1.7914.1.2.1.6
 NAME 'mailHost'
 DESC 'On which qmail server the messagestore of this user is located.'
 EQUALITY caseIgnoreIA5Match
 SUBSTR caseIgnoreIA5SubstringsMatch
 SYNTAX 1.3.6.1.4.1.1466.115.121.1.26{256}
 SINGLE-VALUE
 )
#
#********************************************************************
#
attributeTypes: (
 1.3.6.1.4.1.7914.1.2.1.7
 NAME 'mailForwardingAddress'
 DESC 'Address(es) to forward all incoming messages to.'
 EQUALITY caseIgnoreIA5Match
 SUBSTR caseIgnoreIA5SubstringsMatch
 SYNTAX 1.3.6.1.4.1.1466.115.121.1.26{256}
 )
#
#********************************************************************
#
attributeTypes: (
 1.3.6.1.4.1.7914.1.2.1.8
 NAME 'deliveryProgramPath'
 DESC 'Program to execute for all incoming mails.'
 EQUALITY caseExactIA5Match
 SUBSTR caseIgnoreIA5SubstringsMatch
 SYNTAX 1.3.6.1.4.1.1466.115.121.1.26{256}
 )
#
#********************************************************************
#
attributeTypes: (
 1.3.6.1.4.1.7914.1.2.1.9
 NAME 'qmailDotMode'
 DESC 'Interpretation of .qmail files: both, dotonly, ldaponly, ldapwithprog'
 EQUALITY caseIgnoreIA5Match
 SYNTAX 1.3.6.1.4.1.1466.115.121.1.26{32}
 SINGLE-VALUE
 )
#
#********************************************************************
#
attributeTypes: (
 1.3.6.1.4.1.7914.1.2.1.10
 NAME 'deliveryMode'
 DESC 'multi field entries of: nolocal, noforward, noprogram, reply'
 EQUALITY caseIgnoreIA5Match
 SYNTAX 1.3.6.1.4.1.1466.115.121.1.26{32}
 )
#
#********************************************************************
#
attributeTypes: (
 1.3.6.1.4.1.7914.1.2.1.11
 NAME 'mailReplyText'
 DESC 'A reply text for every incoming message'
 EQUALITY caseIgnoreMatch
 SUBSTR caseIgnoreSubstringsMatch
 SYNTAX 1.3.6.1.4.1.1466.115.121.1.15{4096}
 SINGLE-VALUE
 )
#
#********************************************************************
#
attributeTypes: (
 1.3.6.1.4.1.7914.1.2.1.12
 NAME 'accountStatus'
 DESC 'The status of a user account: active, noaccess, disabled, deleted'
 EQUALITY caseIgnoreIA5Match
 SYNTAX 1.3.6.1.4.1.1466.115.121.1.26
 SINGLE-VALUE
 )
#
#********************************************************************
#
attributeTypes: (
 1.3.6.1.4.1.7914.1.2.1.13
 NAME 'qmailAccountPurge'
 DESC 'The earliest date when a mailMessageStore will be purged'
 EQUALITY integerMatch
 SYNTAX 1.3.6.1.4.1.1466.115.121.1.26
 SINGLE-VALUE
 )
#
#********************************************************************
#
attributeTypes: (
 1.3.6.1.4.1.7914.1.2.1.15
 NAME 'mailQuotaSize'
 DESC 'The size of space the user can have until further messages get bounced.'
 EQUALITY integerMatch
 SYNTAX 1.3.6.1.4.1.1466.115.121.1.27
 SINGLE-VALUE
 )
#
#********************************************************************
#
attributeTypes: (
 1.3.6.1.4.1.7914.1.2.1.16
 NAME 'mailQuotaCount'
 DESC 'The number of messages the user can have until further messages get 
bounced.'
 EQUALITY integerMatch
 SYNTAX 1.3.6.1.4.1.1466.115.121.1.27
 SINGLE-VALUE
 )
#
#********************************************************************
#
attributeTypes: (
 1.3.6.1.4.1.7914.1.2.1.17
 NAME 'mailSizeMax'
 DESC 'The maximum size of a single messages the user accepts.'
 EQUALITY integerMatch
 SYNTAX 1.3.6.1.4.1.1466.115.121.1.27
 SINGLE-VALUE
 )
#
#********************************************************************
#
attributeTypes: (
 1.3.6.1.4.1.7914.1.3.1.1
 NAME 'dnmember'
 DESC 'Group member specified as distinguished name.'
 EQUALITY distinguishedNameMatch
 SYNTAX 1.3.6.1.4.1.1466.115.121.1.12
 )
#
#********************************************************************
#
attributeTypes: (
 1.3.6.1.4.1.7914.1.3.1.2
 NAME 'rfc822member'
 DESC 'Group member specified as normal rf822 email address.'
 EQUALITY caseIgnoreIA5Match
 SUBSTR caseIgnoreIA5SubstringsMatch
 SYNTAX 1.3.6.1.4.1.1466.115.121.1.26{256}
 )
#
#********************************************************************
#
attributeTypes: (
 1.3.6.1.4.1.7914.1.3.1.3
 NAME 'filtermember'
 DESC 'Group member specified as ldap search filter.'
 EQUALITY caseIgnoreIA5Match
 SUBSTR caseIgnoreIA5SubstringsMatch
 SYNTAX 1.3.6.1.4.1.1466.115.121.1.26{512}
 )
#
#********************************************************************
#
attributeTypes: (
 1.3.6.1.4.1.7914.1.3.1.4
 NAME 'senderconfirm'
 DESC 'Sender to Group has to answer confirmation email.'
 EQUALITY booleanMatch
 SYNTAX 1.3.6.1.4.1.1466.115.121.1.7
 SINGLE-VALUE
 )
#
#********************************************************************
#
attributeTypes: (
 1.3.6.1.4.1.7914.1.3.1.5
 NAME 'membersonly'
 DESC 'Sender to Group must be group member itself.'
 EQUALITY booleanMatch
 SYNTAX 1.3.6.1.4.1.1466.115.121.1.7
 SINGLE-VALUE
 )
#
#********************************************************************
#
attributeTypes: (
 1.3.6.1.4.1.7914.1.3.1.6
 NAME 'confirmtext'
 DESC 'Text that will be sent with sender confirmation email.'
 EQUALITY caseIgnoreMatch
 SUBSTR caseIgnoreSubstringsMatch
 SYNTAX 1.3.6.1.4.1.1466.115.121.1.15{4096}
 SINGLE-VALUE
 )
#
#********************************************************************
#
attributeTypes: (
 1.3.6.1.4.1.7914.1.3.1.7
 NAME 'dnmoderator'
 DESC 'Group moderator specified as Distinguished name.'
 EQUALITY distinguishedNameMatch
 SYNTAX 1.3.6.1.4.1.1466.115.121.1.12
 )
#
#********************************************************************
#
attributeTypes: (
 1.3.6.1.4.1.7914.1.3.1.8
 NAME 'rfc822moderator'
 DESC 'Group moderator specified as normal rfc822 email address.'
 EQUALITY caseIgnoreIA5Match
 SUBSTR caseIgnoreIA5SubstringsMatch
 SYNTAX 1.3.6.1.4.1.1466.115.121.1.26{256}
 )
#
#********************************************************************
#
attributeTypes: (
 1.3.6.1.4.1.7914.1.3.1.9
 NAME 'moderatortext'
 DESC 'Text that will be sent with request for moderation email.'
 EQUALITY caseIgnoreMatch
 SUBSTR caseIgnoreSubstringsMatch
 SYNTAX 1.3.6.1.4.1.1466.115.121.1.15{4096}
 SINGLE-VALUE
 )
#
#********************************************************************
#
attributeTypes: (
 1.3.6.1.4.1.7914.1.3.1.10
 NAME 'dnsender'
 DESC 'Allowed sender specified as distinguished name.'
 EQUALITY distinguishedNameMatch
 SYNTAX 1.3.6.1.4.1.1466.115.121.1.12
 )
#
#********************************************************************
#
attributeTypes: (
 1.3.6.1.4.1.7914.1.3.1.11
 NAME 'rfc822sender'
 DESC 'Allowed sender specified as normal rf822 email address.'
 EQUALITY caseIgnoreIA5Match
 SUBSTR caseIgnoreIA5SubstringsMatch
 SYNTAX 1.3.6.1.4.1.1466.115.121.1.26{256}
 )
#
#********************************************************************
#
attributeTypes: (
 1.3.6.1.4.1.7914.1.3.1.12
 NAME 'filtersender'
 DESC 'Allowed sender specified as ldap search filter.'
 EQUALITY caseIgnoreIA5Match
 SUBSTR caseIgnoreIA5SubstringsMatch
 SYNTAX 1.3.6.1.4.1.1466.115.121.1.26{512}
 )
#
#********************************************************************
#
attributeTypes: (
 1.3.6.1.4.1.7914.1.4.1.1
 NAME 'qladnmanager'
 DESC ''
 EQUALITY distinguishedNameMatch
 SYNTAX 1.3.6.1.4.1.1466.115.121.1.12
 )
#
#********************************************************************
#
attributeTypes: (
 1.3.6.1.4.1.7914.1.4.1.2
 NAME 'qlaDomainList'
 DESC ''
 EQUALITY caseIgnoreIA5Match
 SUBSTR caseIgnoreIA5SubstringsMatch
 SYNTAX 1.3.6.1.4.1.1466.115.121.1.26{256}
 )
#
#********************************************************************
#
attributeTypes: (
 1.3.6.1.4.1.7914.1.4.1.3
 NAME 'qlaUidPrefix'
 DESC ''
 EQUALITY caseIgnoreIA5Match
 SUBSTR caseIgnoreIA5SubstringsMatch
 SYNTAX 1.3.6.1.4.1.1466.115.121.1.26{256}
 SINGLE-VALUE
 )
#
#********************************************************************
#
attributeTypes: (
 1.3.6.1.4.1.7914.1.4.1.4
 NAME 'qlaQmailUid'
 DESC ''
 EQUALITY integerMatch
 SYNTAX 1.3.6.1.4.1.1466.115.121.1.27
 SINGLE-VALUE
 )
#
#********************************************************************
#
attributeTypes: (
 1.3.6.1.4.1.7914.1.4.1.5
 NAME 'qlaQmailGid'
 DESC ''
 EQUALITY integerMatch
 SYNTAX 1.3.6.1.4.1.1466.115.121.1.27
 SINGLE-VALUE
 )
#
#********************************************************************
#
attributeTypes: (
 1.3.6.1.4.1.7914.1.4.1.6
 NAME 'qlaMailMStorePrefix'
 DESC ''
 EQUALITY caseIgnoreIA5Match
 SUBSTR caseIgnoreIA5SubstringsMatch
 SYNTAX 1.3.6.1.4.1.1466.115.121.1.26{256}
 SINGLE-VALUE
 )
#
#********************************************************************
#
attributeTypes: (
 1.3.6.1.4.1.7914.1.4.1.7
 NAME 'qlaMailQuotaSize'
 DESC ''
 EQUALITY integerMatch
 SYNTAX 1.3.6.1.4.1.1466.115.121.1.27
 SINGLE-VALUE
 )
#
#********************************************************************
#
attributeTypes: (
 1.3.6.1.4.1.7914.1.4.1.8
 NAME 'qlaMailQuotaCount'
 DESC ''
 EQUALITY integerMatch
 SYNTAX 1.3.6.1.4.1.1466.115.121.1.27
 SINGLE-VALUE
 )
#
#********************************************************************
#
attributeTypes: (
 1.3.6.1.4.1.7914.1.4.1.9
 NAME 'qlaMailSizeMax'
 DESC ''
 EQUALITY integerMatch
 SYNTAX 1.3.6.1.4.1.1466.115.121.1.27
 SINGLE-VALUE
 )
#
#********************************************************************
#
attributeTypes: (
 1.3.6.1.4.1.7914.1.4.1.10
 NAME 'qlaMailHostList'
 DESC ''
 EQUALITY caseIgnoreIA5Match
 SUBSTR caseIgnoreIA5SubstringsMatch
 SYNTAX 1.3.6.1.4.1.1466.115.121.1.26{256}
 )
#
#********************************************************************
#
objectClasses: (
 1.3.6.1.4.1.7914.1.2.2.1
 NAME 'qmailUser'
 DESC 'QMail-LDAP User'
 SUP top
 AUXILIARY
 MUST ( mail )
 MAY ( uid $ mailMessageStore $ homeDirectory $ userPassword $ 
mailAlternateAddress $ qmailUID $ qmailGID $ mailHost $ mailForwardingAddress $ 
deliveryProgramPath $ qmailDotMode $ deliveryMode $ mailReplyText $ 
accountStatus $ qmailAccountPurge $ mailQuotaSize $ mailQuotaCount $ 
mailSizeMax )
 )
#
#********************************************************************
#
objectClasses: (
 1.3.6.1.4.1.7914.1.3.2.1
 NAME 'qmailGroup'
 DESC 'QMail-LDAP Group'
 SUP top
 AUXILIARY
 MUST ( mail $ mailAlternateAddress $ mailMessageStore )
 MAY ( dnmember $ rfc822member $ filtermember $ senderconfirm $ membersonly $ 
confirmtext $ dnmoderator $ rfc822moderator $ moderatortext $ dnsender $ 
rfc822sender $ filtersender)
 )
#
#********************************************************************
#

#
# This was adapted from the qmail.schema
#
dn: cn=schema
attributeTypes: ( 1.3.6.1.4.1.7914.1.2.1.9 NAME 'qmailDotMode' DESC 'Interpret
 ation of .qmail files: both, dotonly, ldaponly, ldapwithprog' SYNTAX 1.3.6.1
 .4.1.1466.115.121.1.26 SINGLE-VALUE X-ORIGIN 'user defined' )
attributeTypes: ( 1.3.6.1.4.1.7914.1.2.1.10 NAME 'deliveryMode' DESC 'multi fi
 eld entries of: nolocal, noforward, noprogram, reply' SYNTAX 1.3.6.1.4.1.146
 6.115.121.1.26 X-ORIGIN 'user defined' )
attributeTypes: ( 1.3.6.1.4.1.7914.1.4.1.3 NAME 'qlaUidPrefix'  SYNTAX 1.3.6.1
 .4.1.1466.115.121.1.26 SINGLE-VALUE X-ORIGIN 'user defined' )
attributeTypes: ( 1.3.6.1.4.1.7914.1.3.1.2 NAME 'rfc822member' DESC 'Group mem
 ber specified as normal rf822 email address.' SYNTAX 1.3.6.1.4.1.1466.115.12
 1.1.26 X-ORIGIN 'user defined' )
attributeTypes: ( 1.3.6.1.4.1.7914.1.2.1.15 NAME 'mailQuotaSize' DESC 'The siz
 e of space the user can have until further messages get bounced.' SYNTAX 1.3
 .6.1.4.1.1466.115.121.1.27 SINGLE-VALUE X-ORIGIN 'user defined' )
attributeTypes: ( 1.3.6.1.4.1.7914.1.3.1.7 NAME 'dnmoderator' DESC 'Group mode
 rator specified as Distinguished name' SYNTAX 1.3.6.1.4.1.1466.115.121.1.12 
 X-ORIGIN 'user defined' )
attributeTypes: ( 1.3.6.1.4.1.7914.1.3.1.11 NAME 'rfc822sender' DESC 'Allowed 
 sender specified as normal rf822 email address.' SYNTAX 1.3.6.1.4.1.1466.115
 .121.1.26 X-ORIGIN 'user defined' )
attributeTypes: ( 1.3.6.1.4.1.7914.1.4.1.8 NAME 'qlaMailQuotaCount'  SYNTAX 1.
 3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE X-ORIGIN 'user defined' )
attributeTypes: ( 1.3.6.1.4.1.7914.1.2.1.12 NAME 'accountStatus' DESC 'The sta
 tus of a user account: active, noaccess, disabled, deleted' SYNTAX 1.3.6.1.4
 .1.1466.115.121.1.26 X-ORIGIN 'user defined' )
attributeTypes: ( 1.3.6.1.4.1.7914.1.4.1.5 NAME 'qlaQmailGid'  SYNTAX 1.3.6.1.
 4.1.1466.115.121.1.27 SINGLE-VALUE X-ORIGIN 'user defined' )
attributeTypes: ( 1.3.6.1.4.1.7914.1.3.1.4 NAME 'senderconfirm' DESC 'Sender t
 o Group has to answer confirmation email.' SYNTAX 1.3.6.1.4.1.1466.115.121.1
 .7 SINGLE-VALUE X-ORIGIN 'user defined' )
attributeTypes: ( 1.3.6.1.4.1.7914.1.2.1.17 NAME 'mailSizeMax' DESC 'The maxim
 um size of a single messages the user accepts.' SYNTAX 1.3.6.1.4.1.1466.115.
 121.1.27 SINGLE-VALUE X-ORIGIN 'user defined' )
attributeTypes: ( 1.3.6.1.4.1.4203.1.3.5 NAME 'supportedFeatures' DESC 'featur
 es supported by the server' EQUALITY objectIdentifierMatch SYNTAX 1.3.6.1.4.
 1.1466.115.121.1.38 X-ORIGIN 'user defined' )
attributeTypes: ( 1.3.6.1.4.1.7914.1.2.1.8 NAME 'deliveryProgramPath' DESC 'Pr
 ogram to execute for all incoming mails.' SYNTAX 1.3.6.1.4.1.1466.115.121.1.
 26 X-ORIGIN 'user defined' )
attributeTypes: ( 1.3.6.1.4.1.7914.1.4.1.2 NAME 'qlaDomainList'  SYNTAX 1.3.6.
 1.4.1.1466.115.121.1.26 X-ORIGIN 'user defined' )
attributeTypes: ( 1.3.6.1.4.1.7914.1.3.1.1 NAME 'dnmember' DESC 'Group member 
 specified as distinguished name' SYNTAX 1.3.6.1.4.1.1466.115.121.1.12 X-ORIG
 IN 'user defined' )
attributeTypes: ( 1.3.6.1.4.1.7914.1.3.1.9 NAME 'moderatortext' DESC 'Text tha
 t will be sent with request for moderation email.' SYNTAX 2.16.840.1.113730.
 3.7.1 SINGLE-VALUE X-ORIGIN 'user defined' )
attributeTypes: ( 1.3.6.1.4.1.7914.1.4.1.7 NAME 'qlaMailQuotaSize'  SYNTAX 1.3
 .6.1.4.1.1466.115.121.1.27 SINGLE-VALUE X-ORIGIN 'user defined' )
attributeTypes: ( 1.3.6.1.4.1.7914.1.3.1.6 NAME 'confirmtext' DESC 'Text that 
 will be sent with sender confirmation email' SYNTAX 2.16.840.1.113730.3.7.1 
 SINGLE-VALUE X-ORIGIN 'user defined' )
attributeTypes: ( 1.3.6.1.4.1.7914.1.2.1.2 NAME 'qmailGID' DESC 'GID of the us
 er on the mailsyste' SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE X-ORI
 GIN 'user defined' )
attributeTypes: ( 1.3.6.1.4.1.7914.1.3.1.10 NAME 'dnsender' DESC 'Allowed send
 er specified as distinguished name.' SYNTAX 1.3.6.1.4.1.1466.115.121.1.12 X-
 ORIGIN 'user defined' )
attributeTypes: ( 1.3.6.1.4.1.7914.1.2.1.11 NAME 'mailReplyText' DESC 'A reply
  text for every incoming message' SYNTAX 2.16.840.1.113730.3.7.1 SINGLE-VALU
 E X-ORIGIN 'user defined' )
attributeTypes: ( 1.3.6.1.4.1.7914.1.4.1.10 NAME 'qlaMailHostList'  SYNTAX 1.3
 .6.1.4.1.1466.115.121.1.26 X-ORIGIN 'user defined' )
attributeTypes: ( 1.3.6.1.4.1.7914.1.4.1.4 NAME 'qlaQmailUid'  SYNTAX 1.3.6.1.
 4.1.1466.115.121.1.27 SINGLE-VALUE X-ORIGIN 'user defined' )
attributeTypes: ( 1.3.6.1.4.1.7914.1.3.1.3 NAME 'filtermember' DESC 'Group mem
 ber specified as ldap search filter.' SYNTAX 1.3.6.1.4.1.1466.115.121.1.26 X
 -ORIGIN 'user defined' )
attributeTypes: ( 1.3.6.1.4.1.7914.1.2.1.16 NAME 'mailQuotaCount' DESC 'The nu
 mber of messages the user can have until further messages get bounced' SYNTA
 X 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE X-ORIGIN 'user defined' )
attributeTypes: ( 1.3.6.1.4.1.7914.1.4.1.1 NAME 'qladnmanager'  SYNTAX 1.3.6.1
 .4.1.1466.115.121.1.12 X-ORIGIN 'user defined' )
attributeTypes: ( 1.3.6.1.4.1.7914.1.3.1.12 NAME 'filtersender' DESC 'Allowed 
 sender specified as ldap search filter' SYNTAX 1.3.6.1.4.1.1466.115.121.1.26
  X-ORIGIN 'user defined' )
attributeTypes: ( 1.3.6.1.4.1.7914.1.4.1.9 NAME 'qlaMailSizeMax'  SYNTAX 1.3.6
 .1.4.1.1466.115.121.1.27 SINGLE-VALUE X-ORIGIN 'user defined' )
attributeTypes: ( 1.3.6.1.4.1.7914.1.2.1.13 NAME 'qmailAccountPurge' DESC 'The
  earliest date when a mailMessageStore will be purged' SYNTAX 1.3.6.1.4.1.14
 66.115.121.1.27 SINGLE-VALUE X-ORIGIN 'user defined' )
attributeTypes: ( 1.3.6.1.4.1.7914.1.3.1.8 NAME 'rfc822moderator' DESC 'Group 
 moderator specified as normal rfc822 email address.' SYNTAX 1.3.6.1.4.1.1466
 .115.121.1.26 X-ORIGIN 'user defined' )
attributeTypes: ( 1.3.6.1.4.1.7914.1.4.1.6 NAME 'qlaMailMStorePrefix'  SYNTAX 
 1.3.6.1.4.1.1466.115.121.1.26 SINGLE-VALUE X-ORIGIN 'user defined' )
attributeTypes: ( 1.3.6.1.4.1.7914.1.3.1.5 NAME 'membersonly' DESC 'Sender to 
 Group must be group member itself.' SYNTAX 1.3.6.1.4.1.1466.115.121.1.7 SING
 LE-VALUE X-ORIGIN 'user defined' )
attributeTypes: ( 1.3.6.1.4.1.7914.1.2.1.1 NAME 'qmailUID' DESC 'UID of the us
 er on the mailsystem' SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE X-OR
 IGIN 'user defined' )
objectClasses: ( 2.16.840.1.113730.3.2.3 NAME 'mailRecipient' SUP top AUXILIAR
 Y MAY ( cn $ mail $ mailAlternateAddress $ mailHost $ mailRoutingAddress $ m
 ailAccessDomain $ mailAutoReplyMode $ mailAutoReplyText $ mailDeliveryOption
  $ mailForwardingAddress $ mailMessageStore $ mailProgramDeliveryInfo $ mail
 Quota $ multiLineDescription $ uid $ userPassword ) X-ORIGIN 'Netscape Messa
 ging Server 4.x' )
objectClasses: ( 2.16.840.113730.3.2.37 NAME 'nsMessagingServerUser' SUP top A
 UXILIARY MAY ( cn $ mailAccessDomain $ mailAutoReplyMode $ mailAutoReplyText
  $ mailDeliveryOption $ mailForwardingAddress $ mailMessageStore $ mailProgr
 amDeliveryInfo $ mailQuota $ nsmsgDisallowAccess $ nsmsgNumMsgQuota $ nswmEx
 tendedUserPrefs $ vacationstartdate $ vacationenddate ) X-ORIGIN 'Netscape M
 essaging Server 4.x' )
objectClasses: ( 2.16.840.1.113730.3.2.4 NAME 'mailGroup' SUP top AUXILIARY MA
 Y ( cn $ mail $ mailAlternateAddress $ mailHost $ mailRoutingAddress $ mgrpA
 ddHeader $ mgrpAllowedBroadcaster $ mgrpAllowedDomain $ mgrpApprovePassword 
 $ mgrpBroadcasterPolicy $ mgrpDeliverTo $ mgrpErrorsTo $ mgrpModerator $ mgr
 pMsgMaxSize $ mgrpMsgRejectAction $ mgrpMsgRejectText $ mgrpNoDuplicateCheck
 s $ mgrpRemoveHeader $ mgrpRFC822MailMember $ owner ) X-ORIGIN 'Netscape Mes
 saging Server 4.x' )
objectClasses: ( 2.16.840.1.113730.3.2.5 NAME 'groupOfMailEnhancedUniqueNames'
  SUP top AUXILIARY MUST cn MAY ( businessCategory $ description $ mailEnhanc
 edUniqueMember $ o $ ou $ owner $ seeAlso ) X-ORIGIN 'Netscape Messaging Ser
 ver 4.x' )
objectClasses: ( 2.16.840.1.113730.3.2.24 NAME 'netscapeMailServer' SUP top AU
 XILIARY X-ORIGIN 'Netscape Messaging Server 4.x' )
objectClasses: ( 1.3.6.1.4.1.7914.1.2.2.1 NAME 'qmailUser' SUP top STRUCTURAL 
 MUST mail MAY ( accountStatus $ deliveryMode $ deliveryProgramPath $ homeDir
 ectory $ mailAlternateAddress $ mailForwardingAddress $ mailHost $ mailMessa
 geStore $ mailQuotaCount $ mailQuotaSize $ mailReplyText $ mailSizeMax $ qma
 ilAccountPurge $ qmailDotMode $ qmailGID $ qmailUID $ userPassword ) X-ORIGI
 N 'user defined' )
objectClasses: ( 1.3.6.1.4.1.7914.1.3.2.1 NAME 'qmailGroup' SUP top STRUCTURAL
  MUST ( mail $ mailAlternateAddress $ mailMessageStore ) MAY ( confirmtext $
  dnmember $ dnmoderator $ dnsender $ filtermember $ filtersender $ memberson
 ly $ moderatortext $ rfc822member $ rfc822moderator $ rfc822sender $ senderc
 onfirm ) X-ORIGIN 'user defined' )
#nsSchemaCSN: 4305ec1a000000000000

Reply via email to