def CheckServer(domain,port):
#Check the sever connection
try:
if port==995:
pop_chk=poplib.POP3_SSL(domain,port)
else:
pop_chk=poplib.POP3(domain,port)
pop_chk.quit()
return True
except Exception,e:
return False
文章目录