使用IMAP将一个Office 365电子邮件帐户连接到另一个使用连接帐户

时间:2016-12-13 20:21:31

标签: email outlook office365 imap

我的客户正在尝试使用"连接帐户"将一个Office 365电子邮件帐户连接到另一个帐户。在Outlook中使用IMAP进行Web。执行此操作时,它会失败并显示无法连接到帐户的错误。该帐户无法通过"不安全"方法,当您手动键入IMAP设置时也不起作用。 Office 365电子邮件帐户位于单独的Office 365帐户上,但我怀疑当它们位于同一Office 365帐户时也会发生这种情况。

我将此问题作为一个问题发布,然后回答我自己的问题,以帮助遇到同样问题的其他人。

1 个答案:

答案 0 :(得分:0)

这似乎是Microsoft Outlook for the Web中的一个错误。您可以通过手动创建"已连接的帐户来解决此问题。使用Powershell。

右键单击Powershell,以管理员身份运行Powershell。

您可以使用以下命令逐个将Powershell连接到Exchange Online:

set-ExecutionPolicy remotesigned

$LiveCred = Get-Credential

$Session = New-PSSession -ConfigurationName Microsoft.Exchange -ConnectionUri https://ps.outlook.com/powershell -Credential $LiveCred -Authentication Basic -AllowRedirection

Import-PSSession $Session

然后执行以下命令:

New-ImapSubscription -Name "Connected account" -Mailbox "Email address of the target mailbox" -EmailAddress "Email address of the source mailbox" -IncomingUserName "Email address of the source mailbox" -IncomingPassword (ConvertTo-SecureString -String 'Password of the source mailbox' -AsPlainText -Force) -IncomingServer Outlook.office365.com -IncomingSecurity Ssl -IncomingPort 993

以下是您需要用值替换的字符串: 目标邮箱的电子邮件地址 源邮箱的电子邮件地址 源邮箱的密码