我们可以使用 Python 创建服务器端过滤器吗?
我每天收到大约 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这可能与您在注销之前关闭连接有关。
It might have something to do with you closing the connection before logging out.