Mailing List Archive

version 1.1.1 on Ubuntu 14.04 ldap
Hello All,
I can't get share calendars to be able to view by group with
authenticate by OpenLdap running on a different machine.

As individual, I am able to access my calendar, create events but I
can't view a share calendar.

Here is /etc/davical/my-domain.conf
'host' => 'ldap.mydomain.com',
'port' => '389',
'bindDN'=> 'cn=calman,dc=mydomain,dc=com',
'passDN'=> '*secret*',
'protocolVersion' => 3,
'baseDNUsers'=> 'ou=users,dc=mydomain,dc=com',
'filterUsers' => '',
'baseDNGroups' => 'ou=groups,dc=mydomain,dc=com',
'filterGroups' => 'objectClass=groupOfNames',
'mapping_field' => array('username' => 'uid',
'updated' => 'modifyTimestamp',
'fullname' => 'cn' ,
'email' => 'mail'
),
'group_mapping_field' => array(
'username' => 'uid',
'updated' => 'modifyTimestamp',
'fullname' => 'cn' ,
'members' =>'memberUid'
),
'format_updated'=> array('Y' => array(0,4),
'm' => array(4,2),
'd' => array(6,2),
'H' => array(8,2),
'M' => array(10,2),
'S' => array(12,2)),
'scope' => 'subtree'
);
include_once('drivers_ldap.php');


here is my slapd.conf on FreeBSD machine:
# Sample access control policy:
access to * by * write
by dn.base="uid=calman,dc=mydomain,dc=com" write
by users read

# rootdn can always read and write EVERYTHING!
#######################################################################
# backend database definitions
#######################################################################

database mdb
maxsize 1073741
suffix "dc=mydomain,dc=com"
rootdn "cn=calman,dc=mydomain,dc=com"

# Cleartext passwords, especially for the rootdn, should
rootpw {SSHA}BIGSECRET

# Mode 700 recommended.
directory /usr/local/openldap-data

# Indices to maintain
index objectClass eq

#### END ########
The logs on Ubuntu VM:
[Tue Jan 12 10:06:52.816949 2016] [:error] [pid 1381] [client
19.8.8.11:56698] davical: LOG: Principal: Query: QF:
":session_principal" => "1001", referer:
http://ical.mydomain.com/admin.php?action=browse&t=principal&type=1
[Tue Jan 12 10:06:52.816960 2016] [:error] [pid 1381] [client
19.8.8.11:56698] davical: LOG: Principal: Query: QF: ":scan_depth" =>
"2", referer:
http://ical.mydomain.com/admin.php?action=browse&t=principal&type=1
[Tue Jan 12 10:06:52.816971 2016] [:error] [pid 1381] [client
19.8.8.11:56698] d

any ideas? suggestions?