I'm using phpmailer to establish a TLS connection on port 25. I cannot use a username/password, so it's a anonymous connection.
The server responds with the following:
250-SIZE
250-PIPELINING
250-DSN
250-ENHANCEDSTATUSCODES
250-XXXXXXXA
250-XXXXXXXXXXXXXB
250-AUTH NTLM
250-XXXXXXXXXXXXXXXXXC
250-8BITMIME
250-BINARYMIME
250-XXXXXXXD
250-XXXXXXE
250-XXXXF
250 XXXXXXG
When the STARTTLS-command is sent by phpmailer, the server responds:
CLIENT -> SERVER: STARTTLS
SERVER -> CLIENT: 500 5.3.3 Unrecognized command
SMTP ERROR: STARTTLS command failed: 500 5.3.3 Unrecognized command
So apparently the anonymous TLS isn't offered by the server. Strange thing is, if I connect to the server via telnet, it's working.
Is this a phpmailer-issue? Or just some strange behaviour of the server???