0

I've been able to update the Exchange safelist based on the user mailbox safelist with:

get-mailbox | where {$_.RecipientType -eq [Microsoft.Exchange.Data.Directory.Recipient.RecipientType]::UserMailbox } | update-safelist

But is there a way to actually view the safelist?

user78150
  • 79
  • 5

1 Answers1

0

As per this article this should not be possible. The aggregated addresses are one-way hashed and then converted to binary for security purposes.

You can only hash given email with SHA-256 and then compare it to the values in the user's objects attribute msExchSafeSenderHash to see if it is the same, but that's about it.

Stoinov
  • 618
  • 2
  • 10
  • 15