This commit is contained in:
Miles Lott 2001-07-02 01:06:32 +00:00
parent 69579ae6d2
commit 249c2b01ea
3 changed files with 14 additions and 12 deletions

View File

@ -2,12 +2,12 @@ objectclass phpgwaccount
oid 1.3.6.1.4.1.9554.0 oid 1.3.6.1.4.1.9554.0
requires requires
objectClass, objectClass,
uid, uid
allows
phpgwaccountlastlogin, phpgwaccountlastlogin,
phpgwaccountlastloginfrom, phpgwaccountlastloginfrom,
phpgwlastpasswdchange, phpgwlastpasswdchange,
phpgwaccounttype, phpgwaccounttype,
phpgwaccountstatus, phpgwaccountstatus,
phpgwaccountexpires phpgwaccountexpires,
allows
seeAlso seeAlso

View File

@ -1,10 +1,12 @@
objectclass phpgwAccount objectclass phpgwAccount
requires requires
objectClass, objectClass,
uid, uid
phpgwaccountstatus,
phpgwaccountlastlogin,
phpgwaccountlastloginip,
phpgwaccountexpires
allows allows
phpgwaccountlastlogin,
phpgwaccountlastloginfrom,
phpgwlastpasswdchange,
phpgwaccounttype,
phpgwaccountstatus,
phpgwaccountexpires,
seeAlso seeAlso

View File

@ -2,7 +2,7 @@
# lastlogin # lastlogin
attributetype ( 1.3.6.1.4.1.9554.1 attributetype ( 1.3.6.1.4.1.9554.1
NAME 'phpgwLastLogin' NAME 'phpgwAccountLastLogin'
DESC 'timestamp of last login' DESC 'timestamp of last login'
EQUALITY integerMatch EQUALITY integerMatch
SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SYNTAX 1.3.6.1.4.1.1466.115.121.1.27
@ -10,7 +10,7 @@ attributetype ( 1.3.6.1.4.1.9554.1
# lastloginfrom # lastloginfrom
attributetype ( 1.3.6.1.4.1.9554.2 attributetype ( 1.3.6.1.4.1.9554.2
NAME 'phpgwLastLoginFrom' NAME 'phpgwAccountLastLoginFrom'
DESC 'IP address as a dotted decimal, eg. 192.168.1.1, omitting leading zeros' DESC 'IP address as a dotted decimal, eg. 192.168.1.1, omitting leading zeros'
EQUALITY caseIgnoreIA5Match EQUALITY caseIgnoreIA5Match
SYNTAX 1.3.6.1.4.1.1466.115.121.1.26{128} ) SYNTAX 1.3.6.1.4.1.1466.115.121.1.26{128} )
@ -40,7 +40,7 @@ attributetype ( 1.3.6.1.4.1.9554.5
# expires # expires
attributetype ( 1.3.6.1.4.1.9554.6 attributetype ( 1.3.6.1.4.1.9554.6
NAME 'phpgwExpires' NAME 'phpgwAccountExpires'
DESC 'timestamp for account expiration' DESC 'timestamp for account expiration'
EQUALITY integerMatch EQUALITY integerMatch
SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SYNTAX 1.3.6.1.4.1.1466.115.121.1.27
@ -49,5 +49,5 @@ attributetype ( 1.3.6.1.4.1.9554.6
# Objectclass definition for phpgwAccount # Objectclass definition for phpgwAccount
objectclass ( 1.3.6.1.4.1.9554.0 NAME 'phpgwAccount' SUP top AUXILIARY objectclass ( 1.3.6.1.4.1.9554.0 NAME 'phpgwAccount' SUP top AUXILIARY
DESC 'Abstraction of an account with phpgw attributes' DESC 'Abstraction of an account with phpgw attributes'
MAY ( phpgwLastLogin $ phpgwLastLoginFrom $ phpgwLastPasswdChange $ phpgwAccountType $ phpgwAccountStatus ) ) MAY ( phpgwAccountLastLogin $ phpgwAccountLastLoginFrom $ phpgwLastPasswdChange $ phpgwAccountType $ phpgwAccountStatus & phpgwAccountExpires) )