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>&gt;&gt;&gt; proxies = {&#39;http&#39;: &#39;http://username:password@proxy:8080&#39;}<br>&gt;&gt;&gt; host = &#39;<a href="http://pop.gmail.com">pop.gmail.com</a>&#39;<br>
&gt;&gt;&gt; me = &#39;<a href="mailto:username@gmail.com">username@gmail.com</a>&#39;<br>&gt;&gt;&gt; pass = &#39;******&#39;<br>&gt;&gt;&gt; pop = poplib.POP3_SSL(host)<br><br><font class="fixed_width" face="Courier, Monospaced">Traceback (most recent call last):<br>
  File &quot;&lt;stdin&gt;&quot;, line 1, in &lt;module&gt;<br>TypeError: __init__() got an unexpected keyword argument &#39;proxies&#39;<br>&gt;&gt;&gt; pop = poplib.POP3_SSL(host)<br>Traceback (most recent call last):<br>
  File &quot;&lt;stdin&gt;&quot;, line 1, in &lt;module&gt;<br>  File &quot;/System/Library/Frameworks/Python.framework/Versions/2.5/lib/python2.5/poplib.py&quot;, line 357, in __init__<br>    raise socket.error, msg<br>socket.error: (60, &#39;Operation timed out&#39;)<br>
<br><br></font><br>