SMTP
Troubleshooting
TLS
- Prepare encoded strings for your mail username and password
echo -ne "mail@example.net" | base64
- Connect to mail server
openssl s_client -starttls smtp -connect smtp.example.com:587
- Send HELO
EHLO
- Authenticate
AUTH LOGIN
<your-encoded-username>
<your-encoded-password>
If that's successful the mail server should return 235 2.7.0 Authentication successful
.