Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 8 additions & 8 deletions README
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ DESCRIPTION
This module provides the ability to authenticate RT users against one or
more external data sources at once. It will also allow information about
that user to be loaded from the same, or any other available, source as
well as allowing multple redundant servers for each method.
well as allowing multiple redundant servers for each method.

The extension currently supports authentication and information from
LDAP via the Net::LDAP module, and from any data source that an
Expand Down Expand Up @@ -58,8 +58,8 @@ UPGRADING

CONFIGURATION
RT::Authen::ExternalAuth provides a lot of flexibility with many
configuration options. The following desc these configuration options,
and provides a complete example.
configuration options. The following describes these configuration
options, and provides a complete example.

$ExternalAuthPriority
The order in which the services defined in "$ExternalSettings"
Expand All @@ -71,7 +71,7 @@ CONFIGURATION

Set($ExternalAuthPriority, [ 'My_LDAP',
'My_MySQL',
'My_SSO_Cookie'
'My_SSO_Cookie',
]
);

Expand All @@ -84,7 +84,7 @@ CONFIGURATION

Once a user record is found, no more services are checked.

You CANNOT use a SSO cookie to retrieve information.
You CANNOT use an SSO cookie to retrieve information.

You should remove services you don't use, but you must define at
least one service.
Expand All @@ -104,7 +104,7 @@ CONFIGURATION
$ExternalSettings
These are the full settings for each external service as a hash of
hashes. Note that you may have as many external services as you
wish. They will be checked in the order specified in
wish. They will be checked in the order specified in the
"$ExternalAuthPriority" and "$ExternalInfoPriority" directives
above.

Expand Down Expand Up @@ -159,7 +159,7 @@ CONFIGURATION
a RealName or building name).

attr_map
Mapping of RT attributes on to attributes in the external
Mapping of RT attributes onto attributes in the external
source. Valid keys are attributes of an RT::User
<http://bestpractical.com/rt/docs/latest/RT/User.html>. The
values are attributes from your authentication source. For
Expand All @@ -181,7 +181,7 @@ CONFIGURATION

# Users created from LDAP should be Privileged; this is a core RT
# option. Additionally, this is the 4.2 name for the option; for RT
# 4.0, is it named $AutoCreate See the core RT documentation at
# 4.0, is it named $AutoCreate. See the core RT documentation at
# http://docs.bestpractical.com/RT_Config#UserAutocreateDefaultsOnLogin
# for for further details.
Set( $UserAutocreateDefaultsOnLogin, { Privileged => 1 } );
Expand Down