diff options
author | Rob Crittenden <rcritten@redhat.com> | 2015-03-23 17:25:55 -0400 |
---|---|---|
committer | Simo Sorce <simo@redhat.com> | 2015-03-23 18:00:34 -0400 |
commit | 424a03e5bd141bfa80220816d6e9bd6be9aa256f (patch) | |
tree | 0f7c934f0fc7a05533b8978944cbe96afebb6d8d /ipsilon/providers | |
parent | cc527bd439314e45dc9f88599f9a3c03eb9b6220 (diff) | |
download | ipsilon.git-424a03e5bd141bfa80220816d6e9bd6be9aa256f.tar.gz ipsilon.git-424a03e5bd141bfa80220816d6e9bd6be9aa256f.tar.xz ipsilon.git-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>
Diffstat (limited to 'ipsilon/providers')
-rw-r--r-- | ipsilon/providers/saml2idp.py | 5 |
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.', |