我正在尝试从 Exchange 服务器读取特定 g1ant 帐户的邮件。我想使用邮件作为 g1ant 文件的附件提供处理和处理它们的说明。但是当我尝试连接到邮箱时,我收到了这个异常:
该文件夹当前未以读写模式打开。
我正在使用以下语法:
mail.imap host <servername> login <user> password <password> result ♥emails sincedate ♥yesterday
有什么建议可以解决这个问题吗?萨尔瓦多
我正在尝试从 Exchange 服务器读取特定 g1ant 帐户的邮件。我想使用邮件作为 g1ant 文件的附件提供处理和处理它们的说明。但是当我尝试连接到邮箱时,我收到了这个异常:
该文件夹当前未以读写模式打开。
我正在使用以下语法:
mail.imap host <servername> login <user> password <password> result ♥emails sincedate ♥yesterday
有什么建议可以解决这个问题吗?萨尔瓦多
不要担心异常。虽然它被抛出,但电子邮件被正确检索。
为了忽略它,请使用errorcall
参数并创建一个空过程,如下所示。
mail.imap imap.gmail.com login ♥login password ♥password result ♥emails sincedate ♥yesterday ignorecertificateerrors true errorcall IgnoreError
foreach ♥email in ♥emails
dialog ♥email
end
procedure IgnoreError
end procedure