Released perl-ldap 0.68

2021-01-03 Thread Peter Marschall
sion OIDs * Constant.pm: add references to perl-ldap's modules Bug Fixes * META.json: update author & bugtracker * Control/*.pm: typo & grammar fixes * Control/Relax.pm: slight rephrasing * FAQ.pod: fix spelling/grammar error * Changes: fix typo -- Peter Marschall pe...@adpm.de

Released perl-ldap 0.67 [Christmas edition]

2020-12-26 Thread Peter Marschall
default sslserver * LDAP.pm: correct parameter to restrict IP family with IO::Socket::IP * data/regenerate_cert.sh: fix shebang -- Peter Marschall pe...@adpm.de

Re: Hello | LDAP module installed but not working

2020-01-12 Thread Peter Marschall
o connect to. Was able to reproduce it on a working installation of perl-ldap: $ perl -MNet::LDAP -e 'my $ld = Net::LDAP->new("ldaps://unknown") or die($@);' Name or service not known at -e line 1, line 755. Maybe a typo in the URL? Best PEter -- Peter Marschall pe...@adpm.de

Released perl-ldap 0.66

2019-04-16 Thread Peter Marschall
Hi all, I just released perl-ldap 0.66 to CPAN:     http://search.cpan.org/dist/perl-ldap/     https://metacpan.org/release/perl-ldap For those of you directly pulling from GitHub, the repository     https://github.com/perl-ldap/perl-ldap/releases has been updated accordingly.

Re: what is the best practice to modrdn for branch of objects?

2018-07-01 Thread Peter Marschall
provide code that is reasonably generic (and does not only fulfill your specific use case), I may consider including it. (No guarantee) Best PEter -- Peter Marschall pe...@adpm.de

Re: Net::LDAP::Entry - RFC

2018-01-09 Thread Peter Marschall
shall occur. Default is 78. Setting it to 40 or lower inhibits wrapping. Best Peter -- Peter Marschall <pe...@adpm.de>

updates to my github repository

2017-12-28 Thread Peter Marschall
them give them a shake and report bugs, improvements, ... and of course also, what you want to see in future versions of perl-ldap. Best PEter -- Peter Marschall pe...@adpm.de

Re: Net::LDAP::Extension::Refresh doesn't understand responce from server

2017-12-28 Thread Peter Marschall
Hi, Am Donnerstag, 28. Dezember 2017, 13:58:10 CET schrieb Zeus Panchenko: > Peter Marschall <pe...@adpm.de> wrote: > > Have you tried patching > > usr/local/lib/perl5/site_perl/Convert/ASN1/_decode.pm? Digging a bit deeper, I don't think Convert::ASN1 is the issue. The i

Re: Net::LDAP::Entry - RFC

2017-12-28 Thread Peter Marschall
ourself a favour and update to a recent version. While not directly fulfilling your request, the newer versions have an extended Net::LDAP::Entry->update() method, that allows using an LDIF file as a target to write to. Best regards PEter -- Peter Marschall pe...@adpm.de

Re: Net::LDAP::Extension::Refresh doesn't understand responce from server

2017-12-28 Thread Peter Marschall
ng dds-max-ttl to some big enough value, same code works well Do I get it right, that only the error case (i.e. setting the ttl to a higher value than allowed) fails, while the correct case (setting the ttl to a value within the bounds allowed) works? In any case, can you provde a minimal test

Re: (Net::LDAP) Automatically convert attributes into utf8 when writting

2015-08-29 Thread Peter Marschall
a lot of the above for you automatically. Please read the perlunicode manual page for more detailed information. Best PEter -- Peter Marschall pe...@adpm.de

Re: Doubts about schema2ad.pl

2015-08-09 Thread Peter Marschall
/cd7602113d1971d3bfc7681e3c7869a5a1ce70ae This commit updates schema2ad's POD documentation slightly You can read it using e.g 'pod2text schema2ad.pl' Please test and reprot feedback to the mailing list perl-ldap@perl.org Best Peter -- Peter Marschall pe...@adpm.de

Released perl-ldap 0.65

2015-04-06 Thread Peter Marschall
/releases has been updated accordingly. Please find a short log of all the changes below. Thanks to * Troy Loveday tr...@ti.com for his bug report / patch. -- Peter Marschall pe...@adpm.de 0.65 -- Mon Apr 6 19:43:37 CEST 2015 Enhancements: * t/74matchedvalues.t: more tests * {ASN,Extension

Re: Bug in Perl LDAP FAQ

2014-10-03 Thread Peter Marschall
-- Peter Marschall pe...@adpm.de

perl-ldap v0.64 released

2014-06-19 Thread Peter Marschall
. Please find a short log of all the changes below. Thanks to * Thomas Guevin * Jim Toth * Jitka Plesnikova for their bug reports / patches. Enjoy the new release! Peter -- Peter Marschall pe...@adpm.de 0.64 -- Thu Jun 19 17:48:08 CEST 2014 Bug Fixes: * LDAP.pm: set SSL_cipher_list correctly * RT

Re: entry-changetype(modify) returns No attributes to update at ...

2014-06-14 Thread Peter Marschall
returns: No attributes to update at ./ldap-update.pl line 23, DATA line 751. Net::LDAP::Entry's changetype() method clears all previous changes when called with an argument. Solution is simple: set the changetype first. Best Peter -- Peter Marschall pe...@adpm.de

perl-ldap 0.63

2014-06-01 Thread Peter Marschall
-- Peter Marschall pe...@adpm.de 0.63 -- Sun Jun 1 12:42:59 CEST 2014 Enhancements: * Entry.pm: accept options for update() in the LDIF case * LDIF.pm: - implement writing controls - refactor _write_entry - check for decoding errors in LWP-based URLs Bug Fixes: * RT#95001: Do not set

Get perl-ldap 0.60 while it's hot

2014-03-08 Thread Peter Marschall
installed - this solves RT#93122, which IMHO is not really a bug of perl-ldap * remove trailing whitespace in contrib/* -- Peter Marschall pe...@adpm.de

Re: IO::Socket::IP for perl-ldap?

2014-03-05 Thread Peter Marschall
Hi, On Wednesday, 5. March 2014 10:17:12 Michiel Beijen wrote: On Tue, Mar 4, 2014 at 7:56 PM, Peter Marschall pe...@adpm.de wrote: But there's a downside too: With IO::Socket::IP, the option Timeout to Net::LDAP-new() will be ignored. I asked Paul (cc) about this and he replied In what

Re: IO::Socket::IP for perl-ldap?

2014-03-05 Thread Peter Marschall
Hi, On Wednesday, 5. March 2014 11:32:52 Paul LeoNerd Evans wrote: On Wed, 05 Mar 2014 11:31:29 +0100 Peter Marschall pe...@adpm.de wrote: Paul, from the mail above, I get it that Timeout is working in IO::Socket::IP. Can you confirm? Additionally, may I ask you to add Timeout

IO::Socket::IP for perl-ldap?

2014-03-04 Thread Peter Marschall
What's your opinion? Best PEter -- Peter Marschall pe...@adpm.de

Released perl-ldap 0.58

2013-12-23 Thread Peter Marschall
::Soundex for tests -- Peter Marschall pe...@adpm.de

New release 0.57 of perl-ldap!

2013-07-21 Thread Peter Marschall
/ harmonizations Enhancements: * LDAP.pm: use data_ready() in process() * Util.pm: simplify return on error * Constant.pm: add constant LDAP_CONTROL_NOOP * Schema.pm: call isa() as recommented in UNIVERSAL.pm -- Peter Marschall pe...@adpm.de

perl-ldap 0.56 released

2013-06-08 Thread Peter Marschall
- convert _write_... to object methods - use indirect file handles for URLs * LWP/Protocol/ldap.pm: use regex as 1st arg to split() -- Peter Marschall pe...@adpm.de

Re: Reading LDIF files containing controls

2013-05-11 Thread Peter Marschall
the dump utility fixed so that it adheres to the RFC. Best Peter PS: Please don't top-post -- Peter Marschall pe...@adpm.de

Re: Reading LDIF files containing controls

2013-05-11 Thread Peter Marschall
utility fixed so that it adheres to the RFC. I don't have that kind of pull with IBM. Please at least report it to them as a bug in their tool (even if they might not react). Maybe they are not even aware of the issue. Best Peter -- Peter Marschall pe...@adpm.de

Re: Reading LDIF files containing controls

2013-05-11 Thread Peter Marschall
then prevail? Did you at least report the bug to IBM? Because their non-standards compliant tool is the cause of the whole discussion. Best Peter -- Peter Marschall pe...@adpm.de

perl-ldap 0.55 released

2013-04-23 Thread Peter Marschall
LDAP_CONTROL_RELAX LDAP.pod: omit space from filter in synopsis FAQ.pod: don't talk of 2 lines when there's only one Extra/eDirectory.pm: fix typo, space police -- Peter Marschall pe...@adpm.de

Released perl-ldap 0.54

2013-03-29 Thread Peter Marschall
support controls when reading * Util.pm: add time conversion functions * Makefile.PL: update recommends, add comments on core modules * FAQ.pod: update info on required/optional modules * LDAP.pod,FAQ.pod: harmonize documentation of scope values -- Peter Marschall pe...@adpm.de

Re: Released perl-ldap 0.54

2013-03-29 Thread Peter Marschall
::LDAP exposes the socket it uses via the socket() method. Can't this be used to implement the things on the application side? Best PEter -- Peter Marschall pe...@adpm.de

Re: I/O Error using Net LDAP

2012-12-25 Thread Peter Marschall
Hi, On Friday, 21. December 2012, Girish Jagdish Khetan wrote: We have used Net::LDAP in Perl (Version: 5.6.1) to process data from LDAPv3 server on Linux environment. We are using callback (Asynchronous processing) to process the data. At runtime, scripts are failing abruptly with I/O Error

Released perl-ldap 0.50

2012-11-24 Thread Peter Marschall
, the GitHub repository https://github.com/perl-ldap/perl-ldap has been updated accordingly. Enjoy Peter -- Peter Marschall pe...@adpm.de 0.50 -- Sat Nov 24 13:03:45 CET 2012 Bug Fixes: * t/07filtermatch.t: use core module Text::Soundex instead of String::Approx * Message.pm: fix regression w.r.t

Re: messageID is undefined when using unbind()

2012-11-17 Thread Peter Marschall
) tests the patch fixed the issue. Please report whether it does the trick for you too. Best Peter -- Peter Marschall pe...@adpm.de

Developer release perl-ldap 0.50_01

2012-11-17 Thread Peter Marschall
*.t - t/4(X+1)*.t - t/47ipc.t: add TLS tests - t/60cancel.t: new, tests for Net::LDAP::Extension::Cancel - t/70sortctrl.t: make it a server test add multi-attribute testcase -- Peter Marschall pe...@adpm.de

Released perl-ldap 0.49

2012-10-06 Thread Peter Marschall
/perl-ldap has been updated accordingly. Enjoy Peter -- Peter Marschall pe...@adpm.de 0.49 -- Sat Oct 5 10:00:30 CEST 2012 Bug Fixes: * RT#79763 extend ldap_explode_dn() for RFC 4514 * RT#77291 canonicalize host name with ldapi:// * LDAP.pm: don't try to set errors on undefined objects

Re: Net::LDAP::Util not compatible with RFC4514

2012-09-21 Thread Peter Marschall
(but canonical_dn will make them confiorming to both) Which of the alternatives do you prefer? Best PEter -- Peter Marschall pe...@adpm.de

Re: Net::LDAP::Util not compatible with RFC4514

2012-09-20 Thread Peter Marschall
in escape_dn_value() which got fixed in https://github.com/marschap/perl- ldap/commit/11ea6b176a0e728d10cc3219cbb84fd8018df5a6 Feedback is very welcome Best regards Peter -- Peter Marschall pe...@adpm.de

Re: Net::LDAP::Util not compatible with RFC4514

2012-09-20 Thread Peter Marschall
Hi Quanah, On Thursday, 20. September 2012, Quanah Gibson-Mount wrote: --On Thursday, September 20, 2012 9:34 AM +0200 Peter Marschall Feedback is very welcome Thanks Peter! Should I look at this or perl-ldap 0.48? ;) At this _and_ perl-ldap 0.48 ;-) These changes are not part

Release of perl-ldap 0.45

2012-09-05 Thread Peter Marschall
Enhancements * RT#77458 re-work IPv6 support * Don't accumulate intermediate messages passed to a callback. * slightly extend Net::LDAP::Entry-update() and document it * convenience alias done() for Net::LDAP-unbind() -- Peter Marschall pe...@adpm.de

Released perl-ldap 0.46

2012-09-05 Thread Peter Marschall
more -- Peter Marschall pe...@adpm.de

Re: How Change Boolean Attribute LDAP

2012-06-03 Thread Peter Marschall
are a bit special, as the false value is given implicitly, i.e. by the absence of the attribute. [might not apply to ADAM Co - I've seen other LDAP servers that allowed booeanAttribute=FALSE too] Best PEter -- Peter Marschall pe...@adpm.de

Re: Problem in Net::LDAP::FilterMatch?

2012-04-22 Thread Peter Marschall
On Sunday, 22. April 2012, Alexei Znamensky wrote: Hi Peter, On 22 April 2012 15:10, Peter Marschall pe...@adpm.de wrote: [...] In that case, why does Net::LDAP::Filter constructor accepts such filters as argument? Shouldn't it moan that this is illegal? It builds an object out

Re: Net::LDAP fails with later versions of IO::Socket::SSL [SEC=UNCLASSIFIED]

2011-11-04 Thread Peter Marschall
to the jurisdiction of section 70 of the Crimes Act 1914. If you have received this email in error, you are requested to contact the sender and delete the email. -- Peter Marschall pe...@adpm.de

fixes new features for perl-ldap/next

2011-10-02 Thread Peter Marschall
then and with this update and the new controls extensions, shouldn't this make a nice new 0.44? Best Peter -- Peter Marschall pe...@adpm.de

Re: critical fixes for perl-ldap 0.43

2011-09-08 Thread Peter Marschall
Hi, On Thursday, 8. September 2011, Graham Barr wrote: On Sep 7, 2011, at 09:26 , Peter Marschall wrote: * 0.43 has a serious regression: commit 041d540 broke start_tls completely and led to warnings being generated at every encrypted connection with sslverify='none

critical fixes for perl-ldap 0.43

2011-09-07 Thread Peter Marschall
-Read controls As bonus: * Assertion Control implemented * new control LDAP_CONTROL_PERMISSIVEMODIFY Thanks Peter -- Peter Marschall pe...@adpm.de

Re: Why is this not working?

2011-09-05 Thread Peter Marschall
, ...) -- Peter Marschall pe...@adpm.de

Re: Problem with LDAP search filter containing a backslash ('\')

2011-07-27 Thread Peter Marschall
-- Peter Marschall pe...@adpm.de

Re: LDIF file instead of updating directory

2011-01-09 Thread Peter Marschall
be great if this patch would make it into the next release of perl-ldap. Best regards Peter -- Peter Marschall pe...@adpm.de From bce3842056339ebdbbaaebd46857b13eadc68759 Mon Sep 17 00:00:00 2001 From: Peter Marschall pe...@adpm.de Date: Sun, 9 Jan 2011 19:47:55 +0100 Subject: [PATCH] extend Net::LDAP

patch correcting a few typos in Net::LDAP::Entry.pod

2011-01-09 Thread Peter Marschall
Hi, the attached patch fixes a few typos in Net::LDAP::Entry.pod Please consider it for inclusion into the next version of perl-ldap. Best Peter -- Peter Marschall pe...@adpm.de From fb4418175d436e598e72e4a2fc7d185a40c8e378 Mon Sep 17 00:00:00 2001 From: Peter Marschall pe...@adpm.de Date: Fri

Re: Creating an entry to add or modify values

2009-05-14 Thread Peter Marschall
'); # 'add' is default changetype $entry-add('givenName' = $1); # only for addingg $entry-changetype('modify'); $entry-replace('mail' = $2); # for adding and updating $entry-add(...); $entry-update($ldap); Personally I do not consider this approach a safe one. Regards Peter -- Peter Marschall pe

Re: Need help on Authenticating users.

2008-05-04 Thread Peter Marschall
on the implementation of the server and precludes other authentication metods than plain simple username/password authentication. Hope it helps Peter -- Peter Marschall [EMAIL PROTECTED]

Re: Fwd: [rt.cpan.org #34689] suggestion for the position of CR character in Net::LDAP::LDIF entry

2008-04-05 Thread Peter Marschall
to the version line as well) CU Peter -- Peter Marschall [EMAIL PROTECTED]

Re: perl-ldap 0.35?

2008-03-31 Thread Peter Marschall
also affect the other modules Auth::SASL, Convert::ASN1, ...? Peter -- Peter Marschall [EMAIL PROTECTED]

Re: Net::LDAP::LDIF Options wrap

2008-03-21 Thread Peter Marschall
) / $l2; Hope it helps Peter -- Peter Marschall [EMAIL PROTECTED]

Re: Problem with array of hosts in Net:LDAP(S)-new

2008-02-10 Thread Peter Marschall
it with [ qw(192.168.1.18 192.168.1.12) ] or the equivalent [ '192.168.1.18', '192.168.1.12' ] as the 1st arg to Net::LDAP-new() Hope it helps Peter -- Peter Marschall [EMAIL PROTECTED]

Re: Net::LDAP on SELinux Problem

2008-01-19 Thread Peter Marschall
this helps Peter -- Peter Marschall [EMAIL PROTECTED]

Re: how to split changes on a sigle entry in multiple ldiff chunks ?

2007-12-21 Thread Peter Marschall
dn: cn=group changetype: modify replace: member member: cn=user Hope it helps Peter -- Peter Marschall [EMAIL PROTECTED]

Re: Problem with big entries

2007-12-21 Thread Peter Marschall
first fills it's buffer and then proceeds. That's the regular wordking mode of Net::LDAP's search() method: collect all entries, including the result from the server and return. You might try the asynchronous mode that uses callbacks. See CALLBACKS in the man pages for that. Regards Peter -- Peter

Re: Bug version 0.17 of Net::LDAP::LDIF::_wrap

2007-12-08 Thread Peter Marschall
])); } Thanks for thebug report. I fixed it in perl-ldap's SVN repository with a similar patch. CU Peter -- Peter Marschall [EMAIL PROTECTED]

Re: base64 translation removing trailing space from string attribute

2007-12-01 Thread Peter Marschall
for details and a little example. Just to avoid misunderstandings: When the raw option is not given, Net::LDAP's behaviour is unchanged. Only when raw = REGEX is given, all attributes not matching the regex are converted to Perl-Unicode strings Regrds Peter -- Peter Marschall [EMAIL PROTECTED]

Re: [PATCH] Net::LDAP::Entry::delete()

2007-07-28 Thread Peter Marschall
a bug as the doc states to use array refs ;-) Thanks for spotting it Peter -- Peter Marschall [EMAIL PROTECTED]

Re: Problm in connecting ldap

2007-07-28 Thread Peter Marschall
resolving the hostname of the server. Peter -- Peter Marschall [EMAIL PROTECTED]

Re: Authen::SASL::Perl bug

2007-07-21 Thread Peter Marschall
+)=(([^\\]+|\\.)*|[^,]+) \s*//) { Would it not have worked to just change that first ? to be a * and add (?:,\s*)* to the end while($challenge =~ s/^(?:\s*,)*\s*(\w+)=(([^\\]+|\\.)*|[^,]+) \s*(?:,\s*)*//) { Graham. Yes, that seems to work too. Committed to SVN Thanks Peter -- Peter

Re: Net::LDAP::Extra help

2007-06-23 Thread Peter Marschall
0.34 you may use Net::LDAP's host() method that even works if you pass an array reference as first parameter to Net::LDAP's constructor. In perl-ldap 0.32 you may use the net_ldap_host key in the Net::LDAP object: $ldap-{net_ldap_host} . Hope this helps Peter -- Peter Marschall [EMAIL PROTECTED]

Re: Net::LDAPS - problems with big entries

2007-06-09 Thread Peter Marschall
committed Graham's patch SVN. Out of curiosity: Sven, Josef, do you - by chance - have figures how it impacts performance? To the bettor or towards the worse? Peter -- Peter Marschall [EMAIL PROTECTED]

IPv6 in trunk working even with SSL [was Re: IPv6]

2007-05-28 Thread Peter Marschall
Hi, On Tuesday, 22. May 2007 13:42, Graham Barr wrote: On May 20, 2007, at 7:46 AM, Peter Marschall wrote: I have tried to write a little patch to Net::LDAP that should implement support for IPv6. It tries to stay compatible as much as possible. Only if the inet6 = 1 option

Re: IPv6

2007-05-20 Thread Peter Marschall
of my environment or of the patch. Currently I cannot tell, since this was my first tyoing with IPv6. The more adventuresomes can try the attached patch. Have fun, and please report success/problems/fixes ... Peter -- Peter Marschall [EMAIL PROTECTED] diff -rub lib/Net/LDAP.pm lib/Net/LDAP.pm

Re: changetype modrdn

2007-05-13 Thread Peter Marschall
-detection get mis-aligned and thus crete the error above. A fix has just been committed to SVN. Regards Peter -- Peter Marschall [EMAIL PROTECTED]

Re: Accessing values of an $entry object inside a function

2007-02-28 Thread Peter Marschall
, but that only gives me errors that say the reference isn't blessed. If I bless it I get an error saying that it's not a reference. No need to work with references of objects. A Perl object is simply a bledded reference. Peter -- Peter Marschall [EMAIL PROTECTED]

Re: schema-dump returns nothing

2007-02-27 Thread Peter Marschall
conforming to the RFCs ;-) No, let's get serious: AD does not adhere to the LDAP standards for publishing schema information. Although there has work been gone into perl-ldap to make some/most of the schema fucntions work with AD to, I guess dump() relies on the standard. Regards Peter -- Peter

Re: perl-ldap 0.34

2007-02-02 Thread Peter Marschall
Hi Grahm, On Monday, 29. January 2007 22:30, Peter Marschall wrote: please relase perl-ldap 0.34 (or 0.33.1 ;-). It is long overdue. There are lot's of changes sicne 0.33 - LDIF changes - control fixes / extensions - documentation updarts / fixes - new accessors for host / port / scheme

Re: extracting extended schema info from Active Directory

2006-12-03 Thread Peter Marschall
then load Net::LDAP:Schema::ADS instead of Net::LDAP:Schema and all is well Regards Peter -- Peter Marschall [EMAIL PROTECTED]

Re: extracting extended schema info from Active Directory

2006-12-02 Thread Peter Marschall
or objectClass attributes - fields that start with X-. So there was no need to create a non-standard extension on a separate attribute. Peter -- Peter Marschall [EMAIL PROTECTED]

Re: The filter, the or and the missing attribute

2006-10-11 Thread Peter Marschall
with the data in the directory or the directory configuration. Regars Peter -- Peter Marschall [EMAIL PROTECTED]

Re: The filter, the or and the missing attribute

2006-10-11 Thread Peter Marschall
Hi, On Wednesday, 11. October 2006 19:31, Andrej Ricnik-Bay wrote: On 10/12/06, Peter Marschall [EMAIL PROTECTED] wrote: Do you mean it fails to find entries that have the uid attribute set, but miss the cn attribute (or vice versa)? That is exactly the case. And it doesn't fail

Re: Issues passing around the associative array containing the Net::LDAP object.

2006-09-19 Thread Peter Marschall
(${$ldapconnection}{LDAP}); This results in this following error. Can't call method add on an undefined value at /usr/local/lib/perl5/site_perl/5.8.8/Net/LDAP/Entry.pm line 239. Any one have any idea what is happening there? -- Peter Marschall [EMAIL PROTECTED]

Re: Net::LDAP::Schema and attributes

2006-09-18 Thread Peter Marschall
Hi, Please keep your reply to the list !!! You deprive others of the help you get if you send personal mail in response to posts that help you with your requests. On Monday, 18. September 2006 09:45, Andrej Ricnik-Bay wrote: On 9/18/06, Peter Marschall [EMAIL PROTECTED] wrote: It's in line

Re: Net::LDAP::Schema and attributes

2006-09-18 Thread Peter Marschall
Hi, this is outside the scope of this list, but I would not expect that a perl object survives between two invocations of a CGI script. Regards Peter On Monday, 18. September 2006 22:35, Andrej Ricnik-Bay wrote: On 9/19/06, Peter Marschall [EMAIL PROTECTED] wrote: Hi, Hi Peter, Please

Re: Net::LDAP::Schema and attributes

2006-09-13 Thread Peter Marschall
schedule in a spearate job and have the results stored in a config file. Hope it helps Peter -- Peter Marschall [EMAIL PROTECTED]

Re: How to connect to ldap with domain name only

2006-09-02 Thread Peter Marschall
: . $res-errorstring; } return; } Please note: I copied this from a posting to this(?) ML years ago. I cannot tell whether it will work or not. Regards Peter -- Peter Marschall [EMAIL PROTECTED]

Re: Wrong mailing list at lib/Net/LDAP/Schema.pod

2006-09-02 Thread Peter Marschall
been fixed in SVN. SF is not mentioned any more in perl-ldap. Thanks for pointing at the error Regards Peter -- Peter Marschall [EMAIL PROTECTED]

Re: Help with script

2006-09-02 Thread Peter Marschall
in the Net::LDAP packages for more information. Peter -- Peter Marschall [EMAIL PROTECTED]

Re: Typo in source Was: UTF-8 data from Net::LDAP

2006-08-27 Thread Peter Marschall
' ), 'net_ldap_host' = 'localhost' }, 'Net::LDAP' ); ??? I' look into it. Thanks for reporting it Peter -- Peter Marschall [EMAIL PROTECTED]

Re: UTF-8 data from Net::LDAP

2006-08-19 Thread Peter Marschall
risk (as with all other software ;-))) I'd be glad to get some feedback (success stories, error reports, patches, ...) Regards Peter -- Peter Marschall [EMAIL PROTECTED]

Re: Entry doesn't appear in the destination directory server

2006-08-12 Thread Peter Marschall
::add_entry_to_dest_ds 118 Updating with code: 'Unexpected EOF' code: 1 Regards, Bhagt Rajaram LDAP error code 1 is LDAP_OPERATIONS_ERROR meaning: Server encountered an internal error (see Net::LDAP::Constant) So it looks like a server-side problem. Regards Peter -- Peter Marschall [EMAIL PROTECTED]

Re: My entry doesn't appear in the destionation directory

2006-08-12 Thread Peter Marschall
of their numeric values represents and LDPA error 9 = LDAP_PARTIAL_RESULTS The other one is not a standard LDAP error number that perl-ldap knows about. Regards Peter -- Peter Marschall [EMAIL PROTECTED]

Re: Entry doesn't appear in the destination directory server

2006-08-12 Thread Peter Marschall
Hi Kurt, On Saturday, 12. August 2006 21:43, Kurt D. Zeilenga wrote: At 12:17 PM 8/12/2006, Peter Marschall wrote: LDAP error code 1 is LDAP_OPERATIONS_ERROR meaning: Server encountered an internal error I note that the standardized meaning is: operationsError (1) Indicates

Re: My entry doesn't appear in the destionation directory

2006-08-06 Thread Peter Marschall
(). What does $result-code() say ? $ldif_add-write_entry($dest_entry); $logger-debug_message ( Updating entry: '.$dest_entry-dn().' with returned message: '.$result-error().', code: .$result-code().'); } } What do the destination server logs say ? Regards Peter -- Peter Marschall

Re: change filter if no match

2006-07-29 Thread Peter Marschall
!= LDAP_SUCCESS) || ($mesg-count() != 1)) { # .. do whatever you want here .. } Hop it helps Peter -- Peter Marschall [EMAIL PROTECTED]

Re: compare a NULL value with unexpected result code

2006-07-08 Thread Peter Marschall
an incorrect message to LDPA server. What does it say when $ldap-debug(15) is called before the compare() call ? Peter -- Peter Marschall [EMAIL PROTECTED]

Re: Schema - Max Length for an attribute?

2006-06-22 Thread Peter Marschall
in fact is a private deviation. Sorry for the rant Peter -- Peter Marschall [EMAIL PROTECTED]

Re: Fwd: CPAN Upload: G/GB/GBARR/Authen-SASL-2.10.tar.gz

2006-03-26 Thread Peter Marschall
part Request entered by: GBARR (Graham Barr) Request entered on: Sat, 25 Mar 2006 23:38:46 GMT Request completed: Sat, 25 Mar 2006 23:40:22 GMT Thanks for relasing the new version. I already tested it with GSSAPI against OpenLDAP: it works like a charm Thanks Peter PS: perl-ldap ? -- Peter

Re: Authen::SASL::Perl::GSSAPI

2006-03-18 Thread Peter Marschall
Hi, committed Achims patch to SVN Peter On Tuesday, 28. February 2006 21:14, Peter Marschall wrote: I guess it is up to you to comment of the changes to the GSSAPI sasl mech in Achim's mai. With your approval I'll gladly commit these patches to the SVN. Peter On Friday, 24. February

Re: Authen::SASL::Perl and Microsoft AD login

2006-03-18 Thread Peter Marschall
Hi Graham, I am getting more and more mails like the one below Please, please release the next versions of Authen::SASL and perl-ldap ! Thanks in advance Peter -- Peter Marschall eMail: [EMAIL PROTECTED] On Thursday, 16. March 2006 15:53, Rainer Kraft wrote: I'm trying to get my Perl script

Re: Authen::SASL::Perl::GSSAPI

2006-02-28 Thread Peter Marschall
having some trouble understanding the requirements for these changes. I'm sorry. find attached my new diff. Please let me know if that changes are OK to you. -- Peter Marschall eMail: [EMAIL PROTECTED]

Re: problem w/ Mac OSX 10.4.5

2006-02-22 Thread Peter Marschall
related to perl-ldap. (But of course this is just a guess) Peter -- Peter Marschall eMail: [EMAIL PROTECTED]

Re: bind() and SASL authentication via GSSAPI

2006-02-22 Thread Peter Marschall
have to test it. (When I'm back with access to infrastructure). Thanks Peter -- Peter Marschall eMail: [EMAIL PROTECTED]

Re: bind() and SASL authentication via GSSAPI

2006-02-22 Thread Peter Marschall
Hi, On Tuesday, 21. February 2006 19:55, Achim Grolms wrote: Is there an easy way to export the actual version of Authen::SASL::Perl you want me to test? svn export https://svn.mutatus.co.uk/repos/Authen-SASL/trunk/ Hope it helps Peter -- Peter Marschall eMail: [EMAIL PROTECTED]

Re: bind() and SASL authentication via GSSAPI

2006-02-21 Thread Peter Marschall
on SASL) all the necessary steps are done inside the SASL object. So only one call is necessary in the Net::LDAP-bind() method. Any feedback is welcome. Regards Peter -- Peter Marschall eMail: [EMAIL PROTECTED]

  1   2   >