From 7e34fa4732c4b40e03d2705b7b04695128ac1152 Mon Sep 17 00:00:00 2001 From: Ralf Becker Date: Tue, 22 Sep 2020 18:11:23 +0200 Subject: [PATCH] fix wrong OID for mail attribute --- api/src/Auth/Saml.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/api/src/Auth/Saml.php b/api/src/Auth/Saml.php index bfeef46a39..a8e732f9e6 100644 --- a/api/src/Auth/Saml.php +++ b/api/src/Auth/Saml.php @@ -100,7 +100,7 @@ class Saml implements BackendSSO * Some urn:oid constants for common attributes */ const eduPersonPricipalName = 'urn:oid:1.3.6.1.4.1.5923.1.1.1.6'; - const emailAddress = 'urn:oid:0.9.2342.19200300.100.1.1'; + const emailAddress = 'urn:oid:0.9.2342.19200300.100.1.3'; const firstName = 'urn:oid:2.5.4.42'; const lastName = 'urn:oid:2.5.4.4';