Hello,
I'm trying to connect my nginx proxy with a remote pop3 server(pop.gmail.com) via SSL without success.
Sniffing the traffic I can see that the nginx proxy sends pop3 packets but doesn't send the a "Client Hello" packet.
I compiled the nginx with the mail and mail-ssl modules.
Here is my nginx.conf file:
mail {
auth_http 192.168.98.80:9000/auth;
ssl on;
ssl_certificate /etc/nginx/conf.d/navajo.crt;
ssl_certificate_key /etc/nginx/conf.d/navajo.key;
ssl_session_timeout 5m;
ssl_protocols SSLv2 SSLv3 TLSv1;
ssl_ciphers ALL:!ADH:!EXPORT56:RC4+RSA:+HIGH:+MEDIUM:+LOW:+SSLv2:+EXP;
ssl_prefer_server_ciphers on;
pop3_capabilities "TOP" "USER";
imap_capabilities "IMAP4rev1" "UIDPLUS";
server {
listen 995;
protocol pop3;
proxy on;
ssl on;
ssl_certificate /etc/nginx/conf.d/navajo.crt;
ssl_certificate_key /etc/nginx/conf.d/navajo.key;
}
}
Any help will be appreciated.
Thanks,
Itzik