X-Git-Url: http://wagnertech.de/git?a=blobdiff_plain;f=SL%2FAuth%2FLDAP.pm;h=92ee43e2b807ac538d3f4e3e6ffae1ae125a3ce9;hb=4b31e6ba4211c900648d92af80ae8d09041977ad;hp=70e963d47896ff45cb12d3eb8c03c271694d07eb;hpb=1fe74e53d153ed2ac08da4943b9252ab2cd3da67;p=kivitendo-erp.git diff --git a/SL/Auth/LDAP.pm b/SL/Auth/LDAP.pm index 70e963d47..92ee43e2b 100644 --- a/SL/Auth/LDAP.pm +++ b/SL/Auth/LDAP.pm @@ -27,6 +27,12 @@ sub new { return $self; } +sub reset { + my ($self) = @_; + $self->{ldap} = undef; + $self->{dn_cache} = { }; +} + sub _connect { $main::lxdebug->enter_sub(); @@ -180,6 +186,10 @@ sub can_change_password { return 0; } +sub requires_cleartext_password { + return 1; +} + sub change_password { return ERR_BACKEND; }