From: Alexander Hartmaier Date: Tue, 24 Nov 2015 13:15:31 +0000 (+0100) Subject: update README for last two commits X-Git-Tag: v1.016~2 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=58b695ab0ca923a943591ac2bdbb71c94bbd732f;hp=9638f14b4680792cf962de6c87125d4c88dd250b;p=catagits%2FCatalyst-Authentication-Store-LDAP.git update README for last two commits --- diff --git a/README b/README index aa04454..d72cb63 100644 --- a/README +++ b/README @@ -38,7 +38,10 @@ SYNOPSIS user_field => "uid", user_filter => "(&(objectClass=posixAccount)(uid=%s))", user_scope => "one", # or "sub" for Active Directory - user_search_options => { deref => "always" }, + user_search_options => { + deref => 'always', + attrs => [qw( distinguishedname name mail )], + }, user_results_filter => sub { return shift->pop_entry }, }, }, @@ -50,8 +53,8 @@ SYNOPSIS my ( $self, $c ) = @_; $c->authenticate({ - id => $c->req->param("login"), - password => $c->req->param("password") + id => $c->req->param("login"), + password => $c->req->param("password") }); $c->res->body("Welcome " . $c->user->username . "!"); } @@ -131,7 +134,7 @@ CONFIGURATION OPTIONS user_basedn: ou=Domain Users,ou=Accounts,dc=mycompany,dc=com user_field: samaccountname - user_filter: (sAMAccountName=%s) + user_filter: (sAMAccountName=%s) user_scope: sub He also notes: "I found the case in the value of user_field to be