Difference between revisions of "Disabling Addresses in CanIt"
From Roaring Penguin
(Created page with "Under Development At times it is necessary on CanIt to block recipient email addresses in your system. There are a number of scenarios where this is required. ==Verification...") |
|||
Line 1: | Line 1: | ||
− | Under Development | + | =Under Development= |
At times it is necessary on CanIt to block recipient email addresses in your system. There are a number of scenarios where this is required. | At times it is necessary on CanIt to block recipient email addresses in your system. There are a number of scenarios where this is required. | ||
Line 7: | Line 7: | ||
==Active Directory Recipient Validation== | ==Active Directory Recipient Validation== | ||
+ | Modify your LDAP search query to exclude deactivated accounts. The | ||
+ | magical LDAP query to do this is not at all intuitive: | ||
+ | |||
+ | http://forums.devshed.com/ldap-programming-76/ldapsearch-for-ad-disabled-accounts-466619.html | ||
+ | |||
+ | So you take your existing query for streaming: (existing_query) | ||
+ | |||
+ | and wrap it with: | ||
+ | |||
+ | (&(existing_query)(!userAccountControl:1.2.840.113556.1.4.803:=2)) | ||
+ | |||
+ | == Block Recipients== | ||
<div style="float:right; clear:both; margin-right:0.5em">[[Support Wiki | [Home]]]</div> | <div style="float:right; clear:both; margin-right:0.5em">[[Support Wiki | [Home]]]</div> | ||
[[category:All]][[category:Configuration]][[category:Management]] | [[category:All]][[category:Configuration]][[category:Management]] |
Revision as of 10:24, 4 January 2017
Contents
Under Development
At times it is necessary on CanIt to block recipient email addresses in your system. There are a number of scenarios where this is required.
Verification Server Recipient Validation
Active Directory Recipient Validation
Modify your LDAP search query to exclude deactivated accounts. The magical LDAP query to do this is not at all intuitive:
http://forums.devshed.com/ldap-programming-76/ldapsearch-for-ad-disabled-accounts-466619.html
So you take your existing query for streaming: (existing_query)
and wrap it with:
(&(existing_query)(!userAccountControl:1.2.840.113556.1.4.803:=2))