0

我正在尝试设置与我们的 office365 服务器的 cfexchangeconnection 以检索日历设置,但无法正确设置连接。

如果我做:

<cfexchangeconnection
    action = "open"
    connection = "exCon"
    server = "outlook.office365.com"
    username = "email@address"
    password = "**********"
    port="995">

我得到 500:无法登录到 Exchange 服务器。验证服务器名称、用户名和密码。

我不知道这是否意味着它是一个身份验证问题,或者我是否只是服务器名称错误

如果我关闭端口设置,我会得到同样的错误。

服务器名称是为使用 imap 或 pop 设置邮件而提供的名称。用户名只是电子邮件,密码很明显......

将协议切换到 https 我收到以下错误:

Cannot access Exchange server as a web application at outlook.office365.com.
Ensure that the Exchange web application is configured in IIS and Web Service Extension for the Exchange server is allowed. HTTP response code : 404
4

1 回答 1

0

以下配置对我有用。您必须使用 keytool.exe 安装证书。确保添加服务器版本,并选择 2010。另外,确保指定 https 协议。默认值为 2007。

<cfexchangeconnection action="open"
     username="#username#"
     password="#password#"
     mailboxname="#mailboxname#"
     server="outlook.office365.com"
     protocol="https"
     serverversion="2010"
     connection="testconn1"
     formBasedAuthentication="true"
     formBasedAuthenticationURL="https://outlook.office365.com/owa/auth/owaauth.dll">
于 2014-09-23T18:30:06.717 回答