I am connecting to EXO via a proxy server. For this, I use
$sessionOpt = New-PSSessionOption -ProxyAccessType IEConfig
Connect-ExchangeOnline -ShowProgress $true -PSSessionOption $sessionOpt -ShowBanner:$false
Documentation (https://learn.microsoft.com/en-us/powershell/module/exchange/connect-exchangeonline?view=exchange-ps) stated, that "The PSSessionOption parameter specifies the PowerShell session options to use in your connection to Exchange Online. This parameter works only if you also use the UseRPSSession switch in the same command."
We learned that RPS is deprecating - how will I connect in future? Any options to connect via a proxy with connect-exchangeonline, which are not documented?