Does poplib/imaplib have proxy support like urllib?<br>I was unable to get connected to my mail.<br>Here is what i tried :<br><br>>>> proxies = {'http': 'http://username:password@proxy:8080'}<br>>>> host = '<a href="http://pop.gmail.com">pop.gmail.com</a>'<br>
>>> me = '<a href="mailto:username@gmail.com">username@gmail.com</a>'<br>>>> pass = '******'<br>>>> pop = poplib.POP3_SSL(host)<br><br><font class="fixed_width" face="Courier, Monospaced">Traceback (most recent call last):<br>
File "<stdin>", line 1, in <module><br>TypeError: __init__() got an unexpected keyword argument 'proxies'<br>>>> pop = poplib.POP3_SSL(host)<br>Traceback (most recent call last):<br>
File "<stdin>", line 1, in <module><br> File "/System/Library/Frameworks/Python.framework/Versions/2.5/lib/python2.5/poplib.py", line 357, in __init__<br> raise socket.error, msg<br>socket.error: (60, 'Operation timed out')<br>
<br><br></font><br>