Skip to content
Snippets Groups Projects
Commit 62b08710 authored by Tyler Antonio's avatar Tyler Antonio
Browse files

Added documentation for contactPerson attributes

parent 1ce9a0cd
No related branches found
No related tags found
No related merge requests found
......@@ -123,6 +123,37 @@ Common options
any value in the SP-remote metadata overrides the one configured
in the IdP metadata.
`contacts`
: Specify contacts in addition to the technical contact configured through config/config.php.
For example, specifying a support contact:
'contacts' => array(
array(
'contactType' => 'support',
'emailAddress' => 'support@example.org',
'givenName' => 'John',
'surName' => 'Doe',
'telephoneNumber' => '+31(0)12345678',
'company' => 'Example Inc.',
),
),
: If you have support for a trust framework that requires extra attributes on the contact person element in your IdP metadata (for example, SIRTFI), you can specify an array of attributes on a contact.
'contacts' => array(
array(
'contactType' => 'other',
'emailAddress' => 'abuse@example.org',
'givenName' => 'John',
'surName' => 'Doe',
'telephoneNumber' => '+31(0)12345678',
'company' => 'Example Inc.',
'attributes' => array(
'xmlns:remd' => 'http://refeds.org/metadata',
'remd:contactType => 'http://refeds.org/metadata/contactType/security',
),
),
),
SAML 2.0 options
----------------
......
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