I have developed an application that sends emails using my Exim server over a SSL connection.
According to my default exim configuration, to send e-mails over SSL connection I need to use port 465, while to send e-mails with no SSL, I have to use port 587.
Well, when I configure the e-mail sender to use SSL and I use port 587, it fails sending, but if I use port 465, it sends the e-mail correctly, which is the expected behaviour.
However, if I telnet to the server using port 587, server returns the SMTP banner and if I issue an EHLO command, this is returned:
250-vps.desytec.com Hello [xxx.xxx.xxx.xxx]
250-SIZE 52428800
250-8BITMIME
250-PIPELINING
250-AUTH PLAIN LOGIN
250-STARTTLS
250 HELP
Notice that on port 587, TLS connection is supported.
But if I telnet the server to port 465, no banner neither EHLO response are shown.
How can I make my Exim server, on port 465, to send the banner, command echoes and command responses?
Regards Jaime