schema for email validation

This commit is contained in:
Serghei Mihai 2014-06-06 15:06:52 +02:00
parent e575231d89
commit 8021ee0763
1 changed files with 45 additions and 0 deletions

45
ldap/authentic.schema Normal file
View File

@ -0,0 +1,45 @@
# Authentic
#
# Date : 20140606
# Révision :
# * 20140606 - Serghei Mihai - Initial draft
#
objectIdentifier EoRoot 1.3.6.1.4.1.10650 # FIXME
objectIdentifier EoClientRoot EoRoot:3 # FIXME
objectIdentifier AuthenticRoot EoClientRoot:1128 # FIXME
objectIdentifier AuthenticLdap AuthenticRoot:1
objectIdentifier AuthenticLdapAttributes AuthenticLdap:2
objectIdentifier AuthenticLdapObjectClass AuthenticLdap:3
attributeType (AuthenticLdapAttributes:1
NAME 'activationKey'
DESC 'user activation key'
EQUALITY caseExactMatch
SYNTAX 1.3.6.1.4.1.1466.115.121.1.26
SINGLE-VALUE )
attributeType (AuthenticLdapAttributes:2
NAME 'activationStatus'
DESC 'user account activation status'
SYNTAX 1.3.6.1.4.1.1466.115.121.1.26
SIGNLE-VALUE )
attributeType (AuthenticLdapAttributes:3
NAME 'creationDate'
DESC 'email record creation date'
SYNTAX 1.3.6.1.4.1.1466.115.121.1.15
SIGNLE-VALUE )
attributeType (AuthenticLdapAttributes:4
NAME 'activationDate'
DESC 'email record activation date'
SYNTAX 1.3.6.1.4.1.1466.115.121.1.15
SIGNLE-VALUE )
objectclass (AuthenticLdapObjectClass:1
NAME 'authenticEmailValidation'
DESC ''
MUST (mail $ activationKey $ activationStatus $ creationDate)
MAY activationDate )