Skip to content
Snippets Groups Projects
Commit 141702b4 authored by Tim van Dijen's avatar Tim van Dijen
Browse files

Fix last metions of userid/.attribute

parent 1d91ce94
No related branches found
No related tags found
No related merge requests found
...@@ -62,7 +62,7 @@ As an example, here is the saml20_idp_hosted table: ...@@ -62,7 +62,7 @@ As an example, here is the saml20_idp_hosted table:
entity_id | entity_data entity_id | entity_data
----------------|------------------------------------------------------------------------------------------------------------------------- ----------------|-------------------------------------------------------------------------------------------------------------------------
`__DEFAULT:1__` | {"host":"\_\_DEFAULT\_\_","privatekey":"idp.key","certificate":"idp.crt","auth":"example-ldap","userid.attribute":"uid"} `__DEFAULT:1__` | {"host":"\_\_DEFAULT\_\_","privatekey":"idp.key","certificate":"idp.crt","auth":"example-ldap","identifyingAttribute":"uid"}
Another example is the saml20_idp_remote table: Another example is the saml20_idp_remote table:
......
...@@ -138,14 +138,6 @@ Common options ...@@ -138,14 +138,6 @@ Common options
A scope can either be a domain name or a regular expression A scope can either be a domain name or a regular expression
matching a number of domains. matching a number of domains.
`userid.attribute`
: The attribute name of an attribute which uniquely identifies
the user. This attribute is used if SimpleSAMLphp needs to generate
a persistent unique identifier for the user. This option can be set
in both the IdP-hosted and the SP-remote metadata. The value in the
SP-remote metadata has the highest priority. The default value is
`eduPersonPrincipalName`.
SAML 2.0 options SAML 2.0 options
---------------- ----------------
......
...@@ -98,14 +98,6 @@ The following options can be set: ...@@ -98,14 +98,6 @@ The following options can be set:
: *Note*: **deprecated** Will be removed in a future release; use the MDUI-extension instead : *Note*: **deprecated** Will be removed in a future release; use the MDUI-extension instead
`userid.attribute`
: The attribute name of an attribute which uniquely identifies
the user. This attribute is used if SimpleSAMLphp needs to generate
a persistent unique identifier for the user. This option can be set
in both the IdP-hosted and the SP-remote metadata. The value in the
SP-remote metadata has the highest priority. The default value is
`eduPersonPrincipalName`.
`AssertionConsumerService` `AssertionConsumerService`
: The URL of the AssertionConsumerService endpoint for this SP. : The URL of the AssertionConsumerService endpoint for this SP.
This option is required - without it you will not be able to send This option is required - without it you will not be able to send
......
...@@ -3,15 +3,13 @@ ...@@ -3,15 +3,13 @@
This filter generates the `eduPersonTargetedID` attribute for the user. This filter generates the `eduPersonTargetedID` attribute for the user.
By default, this filter will use the contents of the attribute set by the `userid.attribute` metadata option as the unique user ID. This filter will use the contents of the attribute set by the `attributename` option as the unique user ID.
You can also use a different attribute by setting the `attributename` option,
Parameters Parameters
---------- ----------
`attributename` `attributename`
: The name of the attribute we should use for the unique user identifier. : The name of the attribute we should use for the unique user identifier.
Optional, will use the attribute set by the `userid.attribute` metadata option by default.
Note: only the first value of the specified attribute is being used for the generation of the identifier. Note: only the first value of the specified attribute is being used for the generation of the identifier.
...@@ -24,14 +22,6 @@ Parameters ...@@ -24,14 +22,6 @@ Parameters
Examples Examples
-------- --------
Using the attribute from `userid.attribute`:
'authproc' => array(
50 => array(
'class' => 'core:TargetedID',
),
),
A custom attribute: A custom attribute:
'authproc' => array( 'authproc' => array(
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment