0
I have been trying for some time to discover on my own, from searching on various websites, foruns etc a solution that I think is relatively simple but unsuccessful.
I would like to block mails for a particular Exchange user, but not by the entire address, but by the domain name.
Let’s assume that I have received mails from different users, or from the same user, but that they continuously change their domain.
An hour would be, for example,
then comes as
another time comes as
and another time appears as
and, repeating part of one of the above domains, as
I would like to at least block what arrive as 'mcsv.net', which would already help enough.
That is, the Powershell instruction could be as
Set-MailboxJunkEmailConfiguration -Identity $usuario -BlockedSendersAndDomains @{Add="*.mcsv.net"}
So far, I’ve seen that I can dial, for example,
Set-MailboxJunkEmailConfiguration -Identity $usuario -BlockedSendersAndDomains @{Add="mail22.wdc01.mcdlv.net"}
because, in this case, this would be the full domain name.
But since it changes all the time, it doesn’t do much good.
Could you use wildcard for this problem? The instruction, the lock command itself, does not allow.
Grateful
Mauro