Welcome! Log In Create A New Profile

Advanced

Re: SMTP proxy with "STARTTLS only" accepts unencrypted mail

June 05, 2019 04:37PM
You might be better of with nginx stream to offload (ssl/tls), all of it is then encrypted.

stream {
upstream backendsmtp {
server 192.168.3.32:25;
}
server {
listen 1234 ssl;
ssl_certificate /nginx/crts/global1.cert;
ssl_certificate_key /nginx/crts/global1.key;
include /nginx/conf/sslciphers.conf;
proxy_pass backendsmtp;
....................

---
nginx for Windows http://nginx-win.ecsds.eu/
Subject Author Posted

SMTP proxy with "STARTTLS only" accepts unencrypted mail

Marcus June 03, 2019 04:18PM

Re: SMTP proxy with "STARTTLS only" accepts unencrypted mail

Maxim Dounin June 04, 2019 09:50AM

Re: SMTP proxy with "STARTTLS only" accepts unencrypted mail

Marcus June 05, 2019 03:08PM

Re: SMTP proxy with "STARTTLS only" accepts unencrypted mail

itpp2012 June 05, 2019 04:37PM



Sorry, only registered users may post in this forum.

Click here to login

Online Users

Guests: 305
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