Emails on my Exchange 2010 server do not have a SCL value or X-MS-Exchange-Organization-SCL: in the email header.

Does anyone know how to enable this so I can filter spam from my users

Thanks

link|improve this question

59% accept rate
Do you have anti-spam enabled in your Exchange Organization? As far as I know there is no specific parameter to enable or disable the anti-spam stamps, they are there as soon as you enable antispam content filters – syneticon-dj Feb 3 at 10:51
feedback

1 Answer

You can use this cmdlet in the Exchange Management Shell.

Set-ContentFilterConfig -SCLQuarantineEnabled $true -SCLRejectEnabled $true -SCLDeleteEnabled $true -SCLQuarantineThreshold 5 -SCLRejectThreshold 6 -SCLDeleteThreshold 8 -QuarantineMailbox SpamQuarantineMailbox@contoso.com -RejectionResponse "Message rejected due to content restrictions" -BypassedRecipients user1@contoso.com,user2@contoso.com
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.