我正在尝试下载所有新邮件的主题。邮件存储在office365邮件帐户中。到目前为止,我有以下内容:
<cfimap
action ="OPEN"
connection = "Test"
password = "xxxx"
port = "993"
secure = "yes"
server = "outlook.office365.com"
stoponerror = "true"
timeout = "10"
username = "xxxx">
<cfimap
action="getHeaderOnly"
folder="Inbox"
connection="Test"
name="getHeaders"
>
<Cfdump var=#getHeaders#>
<cfimap action="close" connection = "Test">
这非常缓慢(几分钟)。在我的情况下,我只需要下载所有新邮件的主题行。我不需要任何其他东西。关于如何加速事情的任何想法。
更新 想出了另一种解决方案。有关cfimap标记的替代方法,请参阅Convert java code to coldfusion code。