1

We are replicating an on-premises setup on Office 365.

As per https://docs.microsoft.com/en-us/powershell/module/exchange/mail-flow/set-transportconfig?view=exchange-ps the command Set-TransportConfig the switches:

-TLSSendDomainSecureList and -TLSReceiveDomainSecureList

are only available on-premise.

Any idea of the equivalent Office 365 PowerShell command please?

SamErde
  • 3,324
  • 3
  • 23
  • 42
morleyc
  • 1,120
  • 13
  • 45
  • 86

1 Answers1

1

I believe that you can achieve the same configuration by using a combination of the Set-ReceiveConnector and Set-OutboundConnector cmdlets.

For receive, use a combination of the -RecipientDomains, -TlsDomain, and -TlsSettings parameters.

Similarly for send, use the -DomainSecureEnabled, -RecipientDomains, -RequireTls, -TlsDomain, and -TlsSettings parameters.

SamErde
  • 3,324
  • 3
  • 23
  • 42