Permit not-delegated+dont-expire-password+normal-accounts to login

This commit is contained in:
Brady Wetherington 2023-01-31 16:49:41 -08:00
parent a2a078015f
commit a4173e3881

View file

@ -314,6 +314,7 @@ class LdapSync extends Command
'4194816',// 0x400200 NORMAL_ACCOUNT, DONT_REQ_PREAUTH
'4260352', // 0x410200 NORMAL_ACCOUNT, DONT_EXPIRE_PASSWORD, DONT_REQ_PREAUTH
'1049088', // 0x100200 NORMAL_ACCOUNT, NOT_DELEGATED
'1114624', // 0x110200 NORMAL_ACCOUNT, DONT_EXPIRE_PASSWORD, NOT_DELEGATED,
];
$user->activated = (in_array($results[$i]['useraccountcontrol'][0], $enabled_accounts)) ? 1 : 0;