HCL-TECH-SOFTWARE / domino-license-analysis-utility-DLAU

Utility to assist HCL Domino Administrators in determining your Authorized User Count
https://opensource.hcltechsw.com/domino-license-analysis-utility-DLAU/
Apache License 2.0
10 stars 1 forks source link

External (CCX) Users Who Are Not Listed in Entitlement Tracking Are Being Recognized as CCB Users when selecting External Organization #71

Closed stevepridemore closed 3 weeks ago

stevepridemore commented 3 months ago

External (CCX) Users Who Are Not Listed in Entitlement Tracking Are Being Recognized as CCB Users is still a problem. If you select your external users based on Organization instead of directory they are still being flagged as CCB instead of CCX if they are not listed or haven't been calculated in the entitlements database.

In the ProcessEntitlements function of the slCore script library.
The If statement starting on line 229

If isReader And externalNAB Then 
      userNote.KnownGuest = "true" 'DNEXT-23857
End If

Should be changed to

If isReader And (externalNAB Or userNote.externalOrg(0) = "true") Then 
      userNote.KnownGuest = "true" 'DNEXT-23857
 End If

and the If statement starting on line 233

If externalNAB Then 
     userNote.KnownGuest = "true"    'DNEXT-23857
End If

should be changed to

If externalNAB Or userNote.externalOrg(0) = "true" Then 
     userNote.KnownGuest = "true"    'DNEXT-23857
End If
notesboy commented 3 weeks ago

Fixed for DLAU V1.2.5