web-dev-qa-db-ja.com

PowerShellを使用したExchangeOnline用のTLSSendDomainSecureListの構成

Office365でオンプレミスのセットアップを複製しています。

https://docs.Microsoft.com/en-us/powershell/module/exchange/mail-flow/set-transportconfig?view=exchange-ps コマンドSet-TransportConfigスイッチ:

-TLSSendDomainSecureListおよび-TLSReceiveDomainSecureList

オンプレミスでのみ使用できます。

同等のOffice365 PowerShellコマンドについて何か考えはありますか?

1
g18c

Set-ReceiveConnectorSet-OutboundConnector コマンドレットを組み合わせて使用​​することで、同じ構成を実現できると思います。

receiveの場合は、-RecipientDomains-TlsDomain、および-TlsSettingsパラメーターの組み合わせを使用します。

同様に、sendの場合は、-DomainSecureEnabled-RecipientDomains-RequireTls-TlsDomain、および-TlsSettingsパラメーターを使用します。

1
SturdyErde