I would recommend FPE customers do this.
By default when our Anti-spam agent finds something as clean we mark it SCL -1
This can cause a lot of issues with Exchange Blocked senders and it also blocks out any chance of IMF catching something.
This is covered in the Important notes section of our documentation.
The workaround is to change our clean scl stamp to 0
This is done in our power shell.
You need to create a new extended option:
PS> New-FseExtendedOption –Name CFAllowBlockedSenders –Value true
PS> Get-FseExtendedOption –Name CFAllowBlockedSenders
should return:
Name Value
------- -------
CFAllowBlockedSenders True
Hi,
is there equivavalent for FPE 2010?
[PS] > Get-FseExtendedOption –Name CFAllowBlockedSenders
Get-FseExtendedOption : The extended option 'CFAllowBlockedSenders' does not exist
by default it is not there you have to create it first
New-FseExtendedOption –Name CFAllowBlockedSenders –Value true
thanks