NAME
Uttu::Framework::Uttu::Auth::krb5 - Kerberos V authentication
SYNOPSIS
[auth]
method krb5
krb5_realm MY.KRB5.DOMAIN
krb5_username_filter lc
krb5_username_suffix /web
DESCRIPTION
This module provides Kerberos V authentication for the Uttu framework.
CONFIGURATION
All configuration variables are in the [auth] configuration block.
- krb5_realm
-
This is the Kerberos V realm. The realm must be a valid realm.
- krb5_username_filter
-
This is the name of a function the username will be passed to. The return value is used in place of the username.
krb5_username_filter lc
This will lowercase the username.
krb5_username_filter My::Module->username_transform
This will call
My::Module-
username_transform($username)> and use the return value in place of the username. - krb5_username_prefix
-
This string is prepended to the username after the username is passed through the username filter.
- krb5_username_suffix
-
This string is appended to the username after the username is passed through the username filter.
1 POD Error
The following errors were encountered while parsing the POD:
- Around line 154:
=back doesn't take any parameters, but you said =back 4