Re: ptloader problem

2008-08-11 Thread Dmitriy Kirhlarov
I can't do it.

I try to create new login for my e-mail. Register it.
Waiting several days for confirmation link without success.

Could you, please, open this bug report?

Wesley Craig wrote:
 You can add it to the bugzilla here:
 
 https://bugzilla.andrew.cmu.edu/
 
 Thanks!
 
 :wes
 
 On 30 Jul 2008, at 05:57, Dmitriy Kirhlarov wrote:
 We find a problem -- when ptloader build with ldap support by gcc4 on
 amd64 platform it's doesn't work.

 After investigation ptloader core with gdb we find a problem. (I'm
 sorry, for possible unpropper problem description)

 1. ldap.h have hints:
 
 #if LDAP_DEPRECATED
 LDAP_F( char ** )
 ldap_get_values LDAP_P((/* deprecated, use ldap_get_values_len */
  LDAP *ld,
  LDAPMessage *entry,
  LDAP_CONST char *target ));
 

 2. cyrus building without -DLDAP_DEPRECATED, by default and
 ldap_get_values is int32

 3. ptloader running
 3.1 call libldap
 3.2 libldap get values from server
 3.3 return pointer to ptloader as int64
 3.4 ptloader get it as _int32_ and core dumping

 My test configuration:
 cyrus-imapd-2.3.{8,11} with ldap support
 cyrus-sasl-saslauthd-2.1.22 with ldap support
 openldap 2.{3,4}
 FreeBSD 7.0 amd64

 This configuration work very good on FreeBSD 6.x amd64.
 userbase in ldap, authentication over saslauthd, authorization over
 ptloader.

 How I can report a but to developers?
 I can provide my configs and detalize test procedure, if needed.
 


WBR
Dmitriy

Cyrus Home Page: http://cyrusimap.web.cmu.edu/
Cyrus Wiki/FAQ: http://cyrusimap.web.cmu.edu/twiki
List Archives/Info: http://asg.web.cmu.edu/cyrus/mailing-list.html


ptloader problem

2008-08-02 Thread Dmitriy Kirhlarov
Hi, list

We find a problem -- when ptloader build with ldap support by gcc4 on
amd64 platform it's doesn't work.

After investigation ptloader core with gdb we find a problem. (I'm
sorry, for possible unpropper problem description)

1. ldap.h have hints:

#if LDAP_DEPRECATED
LDAP_F( char ** )
ldap_get_values LDAP_P((/* deprecated, use ldap_get_values_len */
 LDAP *ld,
 LDAPMessage *entry,
 LDAP_CONST char *target ));


2. cyrus building without -DLDAP_DEPRECATED, by default and
ldap_get_values is int32

3. ptloader running
3.1 call libldap
3.2 libldap get values from server
3.3 return pointer to ptloader as int64
3.4 ptloader get it as _int32_ and core dumping

My test configuration:
cyrus-imapd-2.3.{8,11} with ldap support
cyrus-sasl-saslauthd-2.1.22 with ldap support
openldap 2.{3,4}
FreeBSD 7.0 amd64

This configuration work very good on FreeBSD 6.x amd64.
userbase in ldap, authentication over saslauthd, authorization over
ptloader.

How I can report a but to developers?
I can provide my configs and detalize test procedure, if needed.

WBR
Dmitriy


Cyrus Home Page: http://cyrusimap.web.cmu.edu/
Cyrus Wiki/FAQ: http://cyrusimap.web.cmu.edu/twiki
List Archives/Info: http://asg.web.cmu.edu/cyrus/mailing-list.html


ptloader problem

2008-07-30 Thread Dmitriy Kirhlarov
Hi, list

We find a problem -- when ptloader build with ldap support by gcc4 on 
amd64 platform it's doesn't work.

After investigation ptloader core with gdb we find a problem. (I'm 
sorry, for possible unpropper problem description)

1. ldap.h have hints:

#if LDAP_DEPRECATED
LDAP_F( char ** )
ldap_get_values LDAP_P((/* deprecated, use ldap_get_values_len */
 LDAP *ld,
 LDAPMessage *entry,
 LDAP_CONST char *target ));


2. cyrus building without -DLDAP_DEPRECATED, by default and 
ldap_get_values is int32

3. ptloader running
3.1 call libldap
3.2 libldap get values from server
3.3 return pointer to ptloader as int64
3.4 ptloader get it as _int32_ and core dumping

My test configuration:
cyrus-imapd-2.3.{8,11} with ldap support
cyrus-sasl-saslauthd-2.1.22 with ldap support
openldap 2.{3,4}
FreeBSD 7.0 amd64

This configuration work very good on FreeBSD 6.x amd64.
userbase in ldap, authentication over saslauthd, authorization over 
ptloader.

How I can report a but to developers?
I can provide my configs and detalize test procedure, if needed.

WBR
Dmitriy

Cyrus Home Page: http://cyrusimap.web.cmu.edu/
Cyrus Wiki/FAQ: http://cyrusimap.web.cmu.edu/twiki
List Archives/Info: http://asg.web.cmu.edu/cyrus/mailing-list.html


Re: ptloader problem

2008-07-30 Thread Wesley Craig
You can add it to the bugzilla here:

https://bugzilla.andrew.cmu.edu/

Thanks!

:wes

On 30 Jul 2008, at 05:57, Dmitriy Kirhlarov wrote:
 We find a problem -- when ptloader build with ldap support by gcc4 on
 amd64 platform it's doesn't work.

 After investigation ptloader core with gdb we find a problem. (I'm
 sorry, for possible unpropper problem description)

 1. ldap.h have hints:
 
 #if LDAP_DEPRECATED
 LDAP_F( char ** )
 ldap_get_values LDAP_P((/* deprecated, use  
 ldap_get_values_len */
  LDAP *ld,
  LDAPMessage *entry,
  LDAP_CONST char *target ));
 

 2. cyrus building without -DLDAP_DEPRECATED, by default and
 ldap_get_values is int32

 3. ptloader running
 3.1 call libldap
 3.2 libldap get values from server
 3.3 return pointer to ptloader as int64
 3.4 ptloader get it as _int32_ and core dumping

 My test configuration:
 cyrus-imapd-2.3.{8,11} with ldap support
 cyrus-sasl-saslauthd-2.1.22 with ldap support
 openldap 2.{3,4}
 FreeBSD 7.0 amd64

 This configuration work very good on FreeBSD 6.x amd64.
 userbase in ldap, authentication over saslauthd, authorization over
 ptloader.

 How I can report a but to developers?
 I can provide my configs and detalize test procedure, if needed.

Cyrus Home Page: http://cyrusimap.web.cmu.edu/
Cyrus Wiki/FAQ: http://cyrusimap.web.cmu.edu/twiki
List Archives/Info: http://asg.web.cmu.edu/cyrus/mailing-list.html


sync_client ptloader problem

2007-04-16 Thread Dmitriy Kirhlarov
Some time ago I was report about problem with sync_client (sync_client
can't be run from cyrus.conf, when ptloader used)
For details:
http://lists.andrew.cmu.edu/pipermail/info-cyrus/2006-October/024121.html

2.3.8 have same issue.
How I can inform developers about it? Some other list? bug-tracking
system?

WBR
Dmitriy

Cyrus Home Page: http://cyrusimap.web.cmu.edu/
Cyrus Wiki/FAQ: http://cyrusimap.web.cmu.edu/twiki
List Archives/Info: http://asg.web.cmu.edu/cyrus/mailing-list.html