2

I have a python script that uses a twisted imap4.IMAP4Client to check for new emails in a gmail account. It does so every ~30 seconds. It has been running fine for months.

Starting June 11, I began to see this message after the search("(UNSEEN)") call:

Unhandled unsolicited response: ['OK', ['HIGHESTMODSEQ', '1234567']]

This message appears at every check for new messages now.

What does this message mean? Is it anything to worry about?

4

2 回答 2

2

HIGHESTMODSEQ 是您可以忽略的协议扩展。它记录在 RFC4551 中。

于 2013-06-13T20:46:37.700 回答
0

这只是愚蠢的日志噪音。IMAP4 客户端解析器告诉您服务器向它发送了一些它没有预料到并且不知道如何处理的东西。所以它通过记录该消息来处理它。

在我的脑海中,我不知道 HIGHESTMODSEQ 的用途,但如果你也不关心这些信息,那么你可以忽略它。如果您确实关心它,您可以向 Twisted 贡献一个补丁来增加对这种不请自来的响应的支持。:)

于 2013-06-13T20:17:26.870 回答