RSS

Ticket Center

Paul Norg May 11 Tech Talk

http://tech.slashdot.org/story/10/05/10/1652245/Businesses-Struggle...

"Businesses in highly regulated industries are trying to strike a balance between workers who use social networking sites such as Twitter, Facebook, and LinkedIn to communicate, and trying to satisfy federal requirements to monitor, capture, and audit all forms of electronic communications. As with instant messaging a decade ago, corporations are first blocking all access to the applications, and then considering what tools may be available to control them in the future. A cottage industry is being built around software that can not only control access to social networking websites but also ensure conversations over those websites can be stored for electronic discovery purposes."

Paul Norg Apr 19 Microsoft Exchange / Exchange 2007

Run the following in PowerShell

Domains

Substitute "somedomain.com" with the domain you wish to add.

Substitute "*.somedomain.com" to unfilter all subdomains too.

$foo=Get-ContentFilterConfig
$foo.BypassedSenderDomains +="somedomain.com"
$foo | Set-ContentFilterConfig

Restart the Exchange Transport service after this.

 

Individual Emails

To do individual email addys do this:

$foo=Get-ContentFilterConfig
$foo.BypassedSenders +="some@domain.com"
$foo | Set-ContentFilterConfig

Restart the Exchange Transport service after this.