There is not setting that will do this for you in Exchange 2000 or Exchange
2003
If you would like to create that functionality you can do so by authoring a
custom Transport Sink and registering it on your SMTP bridgeheads.
One way to do this is to create a VB dll much like the Disclaimer Sink
described in:
http://support.microsoft.com/default.aspx?scid=kb ;en-us;317327
you will need to customize the behavior to check for the problem senders and
then discard it with the following code
Set Flds = Msg.EnvelopeFields
Flds("
http://schemas.microsoft.com/cdo/smtpenvelope/messagestatus ") =
cdoStatusAbortDelivery
Flds.Update
EventStatus = cdoSkipRemainingSinks
Keep in mind that you need to carefully test this sink before deploying
because you do not want to risk losing legitimate mail. If you prefer a C++
solution you can find information at
http://msdn.microsoft.com look for
Platform SDK: "CDO for Windows 2000" and "Microsoft Exchange SDK"
--
Please do not send email directly to this alias. This alias is for newsgroup
purposes only.
This posting is provided "AS IS" with no warranties, and confers no rights.