nginx配置mail代理
mail{auth_http 127.0.0.1:9091;auth_http_header Auth-Channel "free";auth_http_header Auth-SMTP-Host "172.25.16.55";auth_http_header Auth-SMTP-Port "26";ssl_certificate/etc/nginx/ssl/full_chain_rsa.crt;
·
mail
{
auth_http 127.0.0.1:9091;
auth_http_header Auth-Channel "fr";
auth_http_header Auth-SMTP-Host "172.xx.xx.55";
auth_http_header Auth-SMTP-Port "26";
ssl_certificate /etc/nginx/ssl/full_chain_rsa.crt;
ssl_certificate_key /etc/nginx/ssl/private_wildca.key;
ssl_protocols TLSv1 TLSv1.1 TLSv1.2;
#ssl_ciphers HIGH:!aNULL:!MD5;
ssl_ciphers ECDHE-RSA-AES128-GCM-SHA256:ECDHE:ECDH:AES:HIGH:!NULL:!aNULL:!MD5:!ADH:!RC4:!DH:!DHE;
ssl_session_cache shared:SSL:10m;
ssl_session_timeout 10m;
pop3_capabilities "TOP" "USER";
imap_capabilities "IMAP4rev1" "UIDPLUS";
server
{
listen 110;
protocol pop3;
proxy on;
}
server
{
listen 143;
protocol imap;
proxy on;
}
server
{
listen 25;
protocol smtp;
proxy on;
smtp_auth login plain;
xclient on;
}
server
{
listen 995 ssl;
protocol pop3;
proxy on;
#ssl on;
}
server
{
listen 993 ssl;
protocol imap;
proxy on;
#ssl on;
}
server
{
listen 465 ssl;
protocol smtp;
proxy on;
smtp_auth login plain;
xclient on;
#ssl on;
}
}
开放原子开发者工作坊旨在鼓励更多人参与开源活动,与志同道合的开发者们相互交流开发经验、分享开发心得、获取前沿技术趋势。工作坊有多种形式的开发者活动,如meetup、训练营等,主打技术交流,干货满满,真诚地邀请各位开发者共同参与!
更多推荐
已为社区贡献1条内容
所有评论(0)