Security

last person joined: 16 hours ago 

Forum to discuss Enterprise security using HPE Aruba Networking NAC solutions (ClearPass), Introspect, VIA, 360 Security Exchange, Extensions, and Policy Enforcement Firewall (PEF).
Expand all | Collapse all

CPPM guest email validation - negate certain accounts in a domain

This thread has been viewed 1 times
  • 1.  CPPM guest email validation - negate certain accounts in a domain

    Posted Apr 10, 2014 10:09 AM

    I have a client who would like to perform email validation for guest sponsors - this works fine for the entire domain.However, they would like to negate certain accounts from being sponsors, mainly any account that has a "-x" or "adm-" in the username. Is this possible?  I've tried the following array but if the account exists in the alloweddomain.com, then the deny array isn't checked. 

     

     

    array (
      'allow' =>
      array (
        0 => 'alloweddomain.com',
      ),
      'deny' =>
      array (
        0 => '*-x*',
        1 => 'adm-*',
        2 => '*',
      ),
    )



  • 2.  RE: CPPM guest email validation - negate certain accounts in a domain

    Posted Apr 10, 2014 10:38 PM

    I don't know if this will work, but have you tried to change the order of allow and deny within the array so the deny is first?