1

How can I connect to IMAP (for example imap.gmail.com) in Outlook from behind a HTTP proxy (no authentication needed) ?

Naseer
  • 121
  • 2
  • 8

3 Answers3

2

IMAP is a different protocol and uses different ports than HTTP. The standard ports for IMAP are 143 and 993 for secure IMAP.

If you have problems connecting, I suspect that your firewall/router is blocking the IMAP port(s).

splattne
  • 28,348
  • 19
  • 97
  • 147
1

The HTTP-Proxy can support the CONNECT method to allow ssl. Using it you can connect to port 443 anywhere. The question is whether your proxy allows other ports. 25 is usually blocked because of spammers.

Try it:

I think telnet proxy port CONNECT imap.gmail.com:993

If it is rejected, bad luck.

Otherwise download socat and point your client to 127.0.0.1:993 and let socat forward that local port towards gmail using the PROXY function. socat can do what you need. I can give a command line if you need it.

Christian
  • 1,033
  • 5
  • 16
  • 24
0

several utilities can be used to trick a https proxy to forward arbitary data, for example:

  • connect-proxy - Establish TCP connection using SOCKS4/5 or HTTP tunnel
  • corkscrew - tunnel TCP connections through HTTP proxies
  • desproxy - tunnel TCP traffic through a HTTP proxy
  • proxychains - redirect connections through proxy servers
  • asdmin
    • 2,020
    • 16
    • 28