[Date Prev][Date Next]
[Chronological]
[Thread]
[Top]
Errors in LDAP Log
Ok, now I have the setup fixed and everything seems to be loading
correctly. Unfortunatly when an email comes in this is what is listed
in the ldaplog. I don't understand what these errors mean...
Jul 19 10:59:07 mini slapd[26202]: conn=1 op=0 BIND dn="" method=128
Jul 19 10:59:07 mini slapd[26202]: conn=1 op=0 RESULT tag=97 err=0 text=
Jul 19 10:59:07 mini slapd[26202]: conn=1 op=1 SRCH
base="dc=digitalplace,dc=org
" scope=2
filter="(&(objectClass=inetLocalMailRecipient)(mailLocalAddress=rdrunn
er@digitalplace.org))"
Jul 19 10:59:07 mini slapd[26202]: conn=1 op=1 SEARCH RESULT tag=101
err=0 text=
Jul 19 10:59:07 mini slapd[26202]: conn=1 op=2 SRCH
base="dc=digitalplace,dc=org
" scope=2
filter="(&(objectClass=inetLocalMailRecipient)(mailLocalAddress=rdrunn
er@digitalplace.org))"
Jul 19 10:59:07 mini slapd[26202]: conn=1 op=2 SEARCH RESULT tag=101
err=0 text=
Jul 19 10:59:07 mini slapd[26202]: conn=1 op=3 UNBIND
Jul 19 10:59:07 mini slapd[26202]: conn=-1 fd=9 closed
Here is my ldif file if that helps:
dn: uid=rdrunner, dc=digitalplace, dc=org
objectclass: inetLocalMailRecipient
objectclass: person
objectclass: posixAccount
cn: Michael
sn: Weber
uid: rdrunner
uidNumber: 500
gidNumber: 100
homeDirectory: /home/rdrunner
loginShell: /bin/tcsh
mailLocalAddress: rdrunner@digitalplace.org
mailRoutingAddress: rdrunner@digitalplace.org
uid: rdrunner
My Slapd.conf File:
# $OpenLDAP: pkg/ldap/servers/slapd/slapd.conf,v 1.8.8.6 2001/04/20
23:32:43 kur
t Exp $
#
# See slapd.conf(5) for details on configuration options.
# This file should NOT be world readable.
#
include /usr/local/etc/openldap/schema/core.schema
include /usr/local/etc/openldap/schema/cosine.schema
include /usr/local/etc/openldap/schema/misc.schema
include /usr/local/etc/openldap/schema/nis.schema
# Define global ACLs to disable default read access.
# Do not enable referrals until AFTER you have a working directory
# service AND an understanding of referrals.
#referral ldap://root.openldap.org
pidfile /usr/local/var/slapd.pid
argsfile /usr/local/var/slapd.args
# Load dynamic backend modules:
# modulepath /usr/local/libexec/openldap
# moduleload back_ldap.la
# moduleload back_ldbm.la
# moduleload back_passwd.la
# moduleload back_shell.la
#######################################################################
# ldbm database definitions
#######################################################################
database ldbm
suffix "dc=digitalplace,dc=org"
#suffix "o=DigitalPlace Name,c=US"
rootdn "cn=Manager,dc=digitalplace,dc=org"
# Cleartext passwords, especially for the rootdn, should
# be avoid. See slappasswd(8) and slapd.conf(5) for details.
# Use of strong authentication encouraged.
rootpw secret
# The database directory MUST exist prior to running slapd AND
# should only be accessible by the slapd/tools. Mode 700 recommended.
directory /usr/local/var/openldap-ldbm
# Indices to maintain
index cn,sn,uid pres,eq,sub
index objectClass pres,eq
#ldbm access control definitions
defaultaccess read
access to attr=userpassword
by self write
by dn="cn=Manager,dc=digitalplace,dc=org" write
by * compare
access to *
by dn="cn=Manager,dc=digitalplace,dc=org" write
by * read
Again thank you for any help.
Michael