Hi, I am trying to use mailgun.com (they user mailgun.org for some email), and it seems that smpt-cli detects the server as SMTP only, because it's using always HELO instead of EHLO altough the server seems to be compliant
Trying to detect capabilities with telnet
$ telnet smtp.eu.mailgun.org 587
Trying 34.95.107.114...
Connected to smtp.eu.mailgun.org.
Escape character is '^]'.
220 Mailgun Influx ready
EHLO
250-4e119dd77b0c
250-AUTH PLAIN LOGIN
250-SIZE 52428800
250-8BITMIME
250-SMTPUTF8
250-PIPELINING
250 STARTTLS
./smtp-cli --server=smtp.eu.mailgun.org:587 --user=xx@example.com --pass=xxxx --verbose --from xx@example.com --to zzz@example.net --subject "Simple test with attachments" --body-plain "Log files are attached." --attach /tmp/file.txt
Hi, I am trying to use mailgun.com (they user mailgun.org for some email), and it seems that smpt-cli detects the server as SMTP only, because it's using always HELO instead of EHLO altough the server seems to be compliant
Trying to detect capabilities with telnet
When using perl-cli with the --force-ehlo command, the emails get send without issues,
Related issue (with another domain here)