* Andrew Alien <
wer...@gmail.com> [2015-06-05 15:59]:
> *Incoming SAML message has no valid value for EmailAddress
> attribute*
> So guess I need to make some extra configuration on SimpleSAMLphp to
> send attribute *EmailAddress. *At the moment I'm using simple
> Auth-example module.
According to their documentation it needs to be an attribute called
"username", which you can add via the exampleauth module.
For example-static it would be:
'example-static' => array(
'exampleauth:Static',
'username' => array('your-username'),
),
always adding a "username" attribute with the value "your-username".
Likewise for example-userpass:
'example-userpass' => array(
'exampleauth:UserPass',
'user:password' => array(
'username' => array('your-username'),
),
),
Which adds the same attribute to the user "user" with the password
"password".
-peter