On Jul 25, 6:07 pm, MRAB <[EMAIL PROTECTED]> wrote:
> On Jul 25, 1:18 pm, SteveC <[EMAIL PROTECTED]> wrote:
>
> > Hello,
>
> > I am trying to use POP3_SSL class of thepoplibmodule to read email
> > from my gmail account. I can connect just fine using the exa
Hello,
I am trying to use POP3_SSL class of the poplib module to read email
from my gmail account. I can connect just fine using the example here
http://www.python.org/doc/lib/pop3-example.html
import getpass, poplib
M = poplib.POP3('localhost')
M.user(getpass.getuser())
M.pass_(getpass.getpass