I am trying to connect to pop.gmail.com
using the following python script, running as root:
import poplib
pop_conn = poplib.POP3_SSL('pop.gmail.com', 995)
and after minutes of waiting I finally see:
socket.error: [Errno 101] Network is unreachable
Is there really a problem? Am I doing something wrong? Are the problems related to firewall etc on my side -> How to find out in this case? How can I connect to pop
my emails?