// Token: 0x06001AD3 RID: 6867 RVA: 0x000708BC File Offset: 0x0006EABC
 private RestrictionCheckResult ShouldAcceptByDefault()
 {
     if (ADRecipientRestriction.IsNullOrEmptyCollection <ADObjectId>(this.acceptMessagesFrom) && ADRecipientRestriction.IsNullOrEmptyCollection <ADObjectId>(this.acceptMessagesFromDLMembers))
     {
         return(RestrictionCheckResult.AcceptedAcceptanceListEmpty);
     }
     return((RestrictionCheckResult)2147483654U);
 }
        // Token: 0x06001AD4 RID: 6868 RVA: 0x000708E0 File Offset: 0x0006EAE0
        private bool HasPermissionRestriction()
        {
            if (!this.isAdRecipient)
            {
                return(false);
            }
            bool flag = ADRecipientRestriction.IsNullOrEmptyCollection <ADObjectId>(this.acceptMessagesFrom) && ADRecipientRestriction.IsNullOrEmptyCollection <ADObjectId>(this.acceptMessagesFromDLMembers) && ADRecipientRestriction.IsNullOrEmptyCollection <ADObjectId>(this.rejectMessagesFrom) && ADRecipientRestriction.IsNullOrEmptyCollection <ADObjectId>(this.rejectMessagesFromDLMembers);

            return(!flag);
        }