in reply to Re^2: Catalyst LDAP Authentication Not Working
in thread Catalyst LDAP Authentication Not Working

Don't know if it's the issue but (sAMAccountName=%s)) has an extra close paren. Might want to add this to the store (sorry, I like YAML better than Config::General)-

ldap_server_options: timeout: 30 onerror: warn

I would also recommend never taking query params for login; insist on POST params. Otherwise some user might discover that she can auto-login with a URL with her credentials in the query string.

my $user = $c->req->params->{user} and my $password = $c->req->params->{password} # Becomes... my $user = $c->request->body_params->{user} and my $password = $c->request->body_params->{password}

Replies are listed 'Best First'.
Re^4: Catalyst LDAP Authentication Not Working
by Anonymous Monk on Oct 17, 2013 at 19:58 UTC
    Thanks. The extra parenthesis was the problem. If it was a snake, I'd be bit.