How to access IMAP server through a proxy server

2.2k Views Asked by At

i am trying to get all inbox emails from an emails in yahoo, cause of many emails in a day ,yahoo refuse my connections for a while , i want to connect via proxy when yahoo refuses my actual ip and gives that erro :

Cannot connect to : Can not authenticate to IMAP server: [CLOSED] IMAP connection broken (authenticate).

is there a way to connect to yahoo IMAP over proxy ? i tried this way but no luck :

import socks
import socket
socks.setdefaultproxy(socks.PROXY_TYPE_SOCKS4,proxy_ip,port,True)
socket.socket = socks.socksocket
M = imaplib.IMAP4_SSL("imap.mail.yahoo.com")
a = M.login(user, passwd)
0

There are 0 best solutions below