On Fri, Apr 18, 2008 at 02:38:43PM +0100, Howard Wilkinson wrote: > I suspect I need a different charmap but what would be suitable? Am I > right that this is what is wrong?
well ... i wrote an easy to use wrapper over Net::LDAP I use for a
while. In this one, i have this code:
use Encode;
sub passwd {
my ( $entry , $passwd ) = @_ ;
$entry->replace( unicodePwd =>
Encode::encode('UTF-16LE',qq("$passwd") )
);
}
does is works better?
regards
mc
