Greetings I have an older relay system accept ssl on port 25, it seems to be working, but when i test it, STARTTLS shows up but then the session stalls like it's waiting for me to do something. -probably i do.
smtp2:/etc/postfix root# telnet 127.0.0.1 25 Trying 127.0.0.1... Connected to localhost. Escape character is '^]'. 220 smtp2.beth.k12.pa.us ESMTP Postfix EHLO beth.k12.pa.us 250-smtp2.beth.k12.pa.us 250-PIPELINING 250-SIZE 26214400 250-VRFY 250-ETRN 250-STARTTLS 250 8BITMIME what comes next ? i would expect AUTH types. Do I have to initiate an auth sequence ? postconf smtpd_enforce_tls = yes smtpd_pw_server_security_options = login,cram-md5,plain,gssapi smtpd_recipient_restrictions = permit_sasl_authenticated,permit_mynetworks,reject_unauth_destination,permit smtpd_sasl_auth_enable = yes smtpd_tls_cert_file = /etc/certificates/Default.crt smtpd_tls_key_file = /etc/certificates/Default.key smtpd_use_pw_server = yes smtpd_use_tls = yes -j