Does poplib/imaplib have proxy support like urllib?
I was unable to get connected to my mail.
Here is what i tried :

>>> proxies = {'http': 'http://username:passw...@proxy:8080'}
>>> host = 'pop.gmail.com'
>>> me = 'usern...@gmail.com'
>>> pass = '******'
>>> pop = poplib.POP3_SSL(host)

Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
TypeError: __init__() got an unexpected keyword argument 'proxies'
>>> pop = poplib.POP3_SSL(host)
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
  File
"/System/Library/Frameworks/Python.framework/Versions/2.5/lib/python2.5/poplib.py",
line 357, in __init__
    raise socket.error, msg
socket.error: (60, 'Operation timed out')
_______________________________________________
Tutor maillist  -  Tutor@python.org
To unsubscribe or change subscription options:
http://mail.python.org/mailman/listinfo/tutor

Reply via email to