Skip to content Skip to sidebar Skip to footer

Error When Using Poplib To Get Email

I am using poplib to get email from the POP3 server. But this error occurred: Traceback (most recent call last): File '', line 1, in File 'C:\Python

Solution 1:

Your proxy is for http, it doesn't effect the pop3 traffic.

A cursory glance suggests that it's probably not able to resolve the hostname to an IP address.

Can you try one of these:

pop3.126.idns.yeah.net
220.181.15.128

Or paste the output of:

nslookup pop3.126.com

Post a Comment for "Error When Using Poplib To Get Email"