我们可以使用 Python 创建服务器端过滤器吗?

发布于 2024-12-18 02:58:18 字数 626 浏览 0 评论 0原文

我每天收到大约 10 万封邮件,由于 Outlook 和 Thunderbird 崩溃,客户端过滤器无法工作。我在 Python 中编写了以下代码来删除所有消息:

import imaplib
box = imaplib.IMAP4_SSL('imap.mail.microsoftonline.com', 993)
box.login("[email protected]","password")
box.select('Inbox')
typ, data = box.search(None, 'ALL')
for num in data[0].split():
 box.store(num, '+FLAGS', '\\Deleted')
box.expunge()
box.close()
box.logout()

但随后我收到套接字错误。如果我可以使用 python 在服务器端创建过滤器,那么我处理这些电子邮件就会非常容易。

请帮忙!!

I get around 100k mails everyday and client side filters are not working due to crash of Outlook and Thunderbird. I wrote following code in Python to delete all messages:

import imaplib
box = imaplib.IMAP4_SSL('imap.mail.microsoftonline.com', 993)
box.login("[email protected]","password")
box.select('Inbox')
typ, data = box.search(None, 'ALL')
for num in data[0].split():
 box.store(num, '+FLAGS', '\\Deleted')
box.expunge()
box.close()
box.logout()

But then I am getting socket error. If somehow I can create filters on Server Side using python, then it would be really easy for me to handle these emails.

Please help!!

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

鸢与 2024-12-25 02:58:18

这可能与您在注销之前关闭连接有关。

It might have something to do with you closing the connection before logging out.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文