需要注意的是,一般只有最新的FOXmail 客户端版本可以进行O365邮箱配置。

如果报错不支持ssl:

365租户做如下操作:

目前测试确认,通过PowerShell命令将SmtpClientAuthenticationDisabled设置为false后,问题得到了解决。

Set-ExecutionPolicy RemoteSigned

$UserCredential = Get-Credential

$Session = New-PSSession -ConfigurationName Microsoft.Exchange -ConnectionUri https://partner.outlook.cn/PowerShell-LiveID/ -Credential $UserCredential -Authentication Basic -AllowRedirection

Import-PSSession $Session

a. 针对整个Tenant

Set-TransportConfig -SmtpClientAuthenticationDisabled $false

b. 针对某个邮箱 Set-CASMailbox -Identity sean@contoso.com -SmtpClientAuthenticationDisabled $false

Set-CASMailbox -Identity fuyu@saam.com.cn -SmtpClientAuthenticationDisabled $false

Logo

腾讯云面向开发者汇聚海量精品云计算使用和开发经验,营造开放的云计算技术生态圈。

更多推荐