我的PC上安装了Windows 7(32位),ColdFusion 9
我的电子邮件帐户在Outlook 2007中配置,它运行正常。但是当我尝试使用cfExchangeConnection
连接到Exchange服务器时,它没有连接。它给了我一个错误说:
Error connecting to the server mail.domain.com. Error message from the server : Connection timed out: connect.
我的cfexchangeConnection代码是:
<cfexchangeConnection
action="open"
username="name@domain.com"
protocol="https"
password="email_password"
server="mail.domain.com"
connection="conn1">
我尝试了cfmail
并且它正在运作。如何让cfExchangeConnection
在ColdFusion9中工作?