
選択した IP アドレスからの受信メールがスパム フィルターをバイパスできるようにする Office 365 トランスポート ルールを作成したいと考えています。
誰か助けてくれませんか?
私が思いついた最も近いものは次のとおりです。
Set-TransportRule -Name "ホワイトリスト" -ExceptIfSenderIpRanges {1.1.1.1,2.2.2.2,3.3.3.3,4.4.4.4} -SetSCL -1
ご協力いただきありがとうございます!
答え1
答え2
$UserCredential = Get-Credential
Set-ExecutionPolicy RemoteSigned
$Session = New-PSSession -ConfigurationName Microsoft.Exchange -ConnectionUri https://outlook.office365.com/powershell-liveid/ -Credential $UserCredential -Authentication Basic -AllowRedirection
Import-PSSession $Session
Get-Mailbox
Get-Mailbox | Set-MailboxJunkEmailConfiguration –Enabled $False
答え3
私たちはそれを実現できるコンテンツフィルター設定または輸送ルール。 ご参考に:Exchange 2013、2016、または Office 365 で IP アドレスによるホワイトリストを作成する方法