summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRob Crittenden <rcritten@redhat.com>2015-03-23 17:25:55 -0400
committerSimo Sorce <simo@redhat.com>2015-03-23 18:00:34 -0400
commit424a03e5bd141bfa80220816d6e9bd6be9aa256f (patch)
tree0f7c934f0fc7a05533b8978944cbe96afebb6d8d
parentcc527bd439314e45dc9f88599f9a3c03eb9b6220 (diff)
downloadipsilon-424a03e5bd141bfa80220816d6e9bd6be9aa256f.tar.gz
ipsilon-424a03e5bd141bfa80220816d6e9bd6be9aa256f.tar.xz
ipsilon-424a03e5bd141bfa80220816d6e9bd6be9aa256f.zip
Make unspecified the default Name ID format, add to enabled list
https://fedorahosted.org/ipsilon/ticket/27 Signed-off-by: Rob Crittenden <rcritten@redhat.com> Reviewed-by: Simo Sorce <simo@redhat.com>
-rw-r--r--ipsilon/providers/saml2idp.py5
1 files changed, 3 insertions, 2 deletions
diff --git a/ipsilon/providers/saml2idp.py b/ipsilon/providers/saml2idp.py
index 5d8aa03..8ff512c 100644
--- a/ipsilon/providers/saml2idp.py
+++ b/ipsilon/providers/saml2idp.py
@@ -207,12 +207,13 @@ Provides SAML 2.0 authentication infrastructure. """
'default allowed nameids',
'Default Allowed NameIDs for Service Providers.',
metadata.SAML2_NAMEID_MAP.keys(),
- ['persistent', 'transient', 'email', 'kerberos', 'x509']),
+ ['unspecified', 'persistent', 'transient', 'email',
+ 'kerberos', 'x509']),
pconfig.Pick(
'default nameid',
'Default NameID used by Service Providers.',
metadata.SAML2_NAMEID_MAP.keys(),
- 'persistent'),
+ 'unspecified'),
pconfig.String(
'default email domain',
'Used for users missing the email property.',