Welcome! Log In Create A New Profile

Advanced

POP3 via SSL

Posted by kitzik 
POP3 via SSL
May 10, 2010 11:23AM
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
Sorry, only registered users may post in this forum.

Click here to login

Online Users

Guests: 182
Record Number of Users: 8 on April 13, 2023
Record Number of Guests: 421 on December 02, 2018
Powered by nginx      Powered by FreeBSD      PHP Powered      Powered by MariaDB      ipv6 ready