def connect(self):
"""Connects to and authenticates with a POP3 mail server"""
import poplib
M = None
try:
if (self.keyfile and self.certfile) or self.ssl:
M = poplib.POP3_SSL(self.host, self.port, self.keyfile, self.certfile)
else:
M = poplib.POP3(self.host, self.port)
M.user(self.username)
M.pass_(self.password)
except socket.error, err:
raise
else:
return M
check_for_articles_from_email.py 文件源码
python
阅读 23
收藏 0
点赞 0
评论 0
评论列表
文章目录