From 553dcb059e3d92fa5ceb44c61c0dd8038fb91b5d Mon Sep 17 00:00:00 2001 From: Yvan Duhamel Date: Thu, 7 Apr 2022 09:41:41 +0200 Subject: [PATCH] Enable augmentation by default on default LDAP connection --- LDAPCP/LDAPCPConfig.cs | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/LDAPCP/LDAPCPConfig.cs b/LDAPCP/LDAPCPConfig.cs index b5236bb..7d6d84c 100644 --- a/LDAPCP/LDAPCPConfig.cs +++ b/LDAPCP/LDAPCPConfig.cs @@ -598,7 +598,10 @@ public static List ReturnDefaultLDAPConnection() { return new List { - new LDAPConnection{UseSPServerConnectionToAD = true} + new LDAPConnection{ + UseSPServerConnectionToAD = true, + EnableAugmentation = true, + } }; }