openldap/tests/data/slapd-acl.conf

146 lines
5.4 KiB
Text
Raw Normal View History

1998-08-08 20:43:13 -04:00
# master slapd config -- for testing
2008-02-11 17:47:32 -05:00
# $OpenLDAP$
2003-11-28 15:00:23 -05:00
## This work is part of OpenLDAP Software <http://www.openldap.org/>.
##
2008-01-07 19:19:56 -05:00
## Copyright 1998-2008 The OpenLDAP Foundation.
2003-11-28 15:00:23 -05:00
## All rights reserved.
##
## Redistribution and use in source and binary forms, with or without
## modification, are permitted only as authorized by the OpenLDAP
## Public License.
##
## A copy of this license is available in the file LICENSE in the
## top-level directory of the distribution or, alternatively, at
## <http://www.OpenLDAP.org/license.html>.
2005-09-28 19:38:15 -04:00
include @SCHEMADIR@/core.schema
include @SCHEMADIR@/cosine.schema
include @SCHEMADIR@/inetorgperson.schema
include @SCHEMADIR@/openldap.schema
include @SCHEMADIR@/nis.schema
pidfile @TESTDIR@/slapd.1.pid
argsfile @TESTDIR@/slapd.1.args
1998-08-08 20:43:13 -04:00
2001-09-01 01:01:31 -04:00
# global ACLs
2004-05-12 20:18:21 -04:00
#
# normal installations should protect root dse, cn=monitor, cn=subschema
#
2005-12-13 10:53:10 -05:00
access to dn.exact="" attrs=objectClass
2004-05-12 20:18:21 -04:00
by users read
access to *
by * read
2001-09-01 01:01:31 -04:00
#mod#modulepath ../servers/slapd/back-@BACKEND@/
#mod#moduleload back_@BACKEND@.la
#monitormod#modulepath ../servers/slapd/back-monitor/
#monitormod#moduleload back_monitor.la
1998-08-08 20:43:13 -04:00
#######################################################################
# database definitions
1998-08-08 20:43:13 -04:00
#######################################################################
database @BACKEND@
suffix "dc=example,dc=com"
2005-09-28 19:38:15 -04:00
directory @TESTDIR@/db.1.a
rootdn "cn=Manager,dc=example,dc=com"
1998-08-08 20:43:13 -04:00
rootpw secret
2001-10-03 17:27:37 -04:00
#bdb#index objectClass eq
#bdb#index cn,sn,uid pres,eq,sub
#hdb#index objectClass eq
#hdb#index cn,sn,uid pres,eq,sub
2005-12-13 10:53:10 -05:00
#access to attrs=objectclass dn.subtree="dc=example,dc=com"
access to attrs=objectclass
1999-10-21 17:23:43 -04:00
by * =rsc stop
2005-12-13 10:53:10 -05:00
#access to filter="(objectclass=person)" attrs=userpassword dn.subtree="dc=example,dc=com"
access to filter="(objectclass=person)" attrs=userpassword
by anonymous auth
2004-04-27 21:58:46 -04:00
by self =wx
access to dn.exact="cn=Mark Elliot,ou=Alumni Association,ou=People,dc=example,dc=com"
attrs=cn val="Mark A Elliot"
by dn="cn=Barbara Jensen,ou=Information Technology Division,ou=People,dc=example,dc=com" read
by * break
access to dn.exact="cn=Mark Elliot,ou=Alumni Association,ou=People,dc=example,dc=com"
attrs=cn val="Mark Elliot"
by dn="cn=Bjorn Jensen,ou=Information Technology Division,ou=People,dc=example,dc=com" read
by * break
access to dn.exact="cn=Mark Elliot,ou=Alumni Association,ou=People,dc=example,dc=com"
attrs=cn
by * search
access to dn.exact="cn=John Doe,ou=Information Technology Division,ou=People,dc=example,dc=com"
2005-12-10 05:23:01 -05:00
attrs=cn val.regex="^John D.+"
by dn="cn=Barbara Jensen,ou=Information Technology Division,ou=People,dc=example,dc=com" read
by * break
access to dn.exact="cn=John Doe,ou=Information Technology Division,ou=People,dc=example,dc=com"
2005-12-10 05:23:01 -05:00
attrs=cn val.regex="^Jonath.+"
by dn="cn=Bjorn Jensen,ou=Information Technology Division,ou=People,dc=example,dc=com" read
by * break
access to dn.exact="cn=John Doe,ou=Information Technology Division,ou=People,dc=example,dc=com"
attrs=cn
by * search
2005-12-10 05:23:01 -05:00
access to dn.onelevel="ou=Information Technology Division,ou=People,dc=example,dc=com"
filter="(cn=*Jensen)"
attrs=cn val.regex=".*Jensen$"
by dn="cn=Barbara Jensen,ou=Information Technology Division,ou=People,dc=example,dc=com" read
by dn="cn=Bjorn Jensen,ou=Information Technology Division,ou=People,dc=example,dc=com" read
by * break
access to dn.exact="cn=Bjorn Jensen,ou=Information Technology Division,ou=People,dc=example,dc=com"
attrs=cn
by * search
access to dn.children="ou=Alumni Association,ou=People,dc=example,dc=com"
by dn.regex=".+,dc=example,dc=com" +c continue
by dn.subtree="dc=example,dc=com" +rs continue
by dn.children="dc=example,dc=com" +d continue
1999-10-21 17:23:43 -04:00
by * stop
2005-12-13 10:53:10 -05:00
#access to attrs=member,uniquemember dn.subtree="dc=example,dc=com"
access to attrs=member,uniquemember
by dn.exact="cn=James A Jones 1,ou=Alumni Association,ou=People,dc=example,dc=com" selfwrite
1998-08-08 20:43:13 -04:00
by dnattr=member selfwrite
by dnattr=uniquemember selfwrite
1998-08-08 20:43:13 -04:00
by * read
2005-12-13 10:53:10 -05:00
#access to attrs=member,uniquemember filter="(mail=*com)" dn.subtree="dc=example,dc=com"
access to attrs=member,uniquemember filter="(mail=*com)"
2002-03-23 20:55:11 -05:00
by * read
2004-05-12 20:18:21 -04:00
#access to filter="(|(objectclass=groupofnames)(objectClass=groupofuniquenames))" dn.subtree="dc=example,dc=com"
access to filter="(|(objectclass=groupofnames)(objectClass=groupofuniquenames))"
2004-05-07 11:38:42 -04:00
by dn.exact="cn=Bjorn Jensen,ou=Information Technology Division,ou=People,dc=example,dc=com" =sc continue
2004-05-07 11:28:39 -04:00
by dn.regex="^cn=Bjorn Jensen,ou=Information Technology Division,ou=People,dc=example,dc=com$" +rw stop
1999-10-21 17:23:43 -04:00
by * break
2004-05-07 11:28:39 -04:00
access to dn.children="ou=Information Technology Division,ou=People,dc=example,dc=com"
by group/groupOfUniqueNames/uniqueMember.exact="cn=ITD Staff,ou=Groups,dc=example,dc=com" write
2002-09-13 11:04:04 -04:00
by * read
2004-05-12 20:18:21 -04:00
access to dn.exact="cn=Alumni Assoc Staff,ou=Groups,dc=example,dc=com"
by set="[cn=Alumni Assoc Staff,ou=Groups,dc=example,dc=com]/member* & user" write
by * read
#access to filter="(name=X*Y*Z)" dn.subtree="dc=example,dc=com"
access to filter="(name=X*Y*Z)"
2002-03-01 13:58:11 -05:00
by * continue
access to dn.subtree="ou=Add & Delete,dc=example,dc=com"
by dn.exact="cn=Bjorn Jensen,ou=Information Technology Division,ou=People,dc=example,dc=com" add
by dn.exact="cn=Barbara Jensen,ou=Information Technology Division,ou=People,dc=example,dc=com" delete
by dn.exact="cn=James A Jones 1,ou=Alumni Association,ou=People,dc=example,dc=com" write
by * read
2001-09-01 01:01:31 -04:00
# fall into global ACLs
#monitor#database monitor