Ga naar inhoud

SMTPΒΆ

SMTP is a networking protocol for mail transfer.

TroubleshootingΒΆ

TLSΒΆ

  1. Prepare encoded strings for your mail username and password
echo -ne "[email protected]" | base64
  1. Connect to mail server
openssl s_client -starttls smtp -connect smtp.example.com:587
  1. Send HELO
EHLO
  1. Authenticate
1
2
3
AUTH LOGIN
<your-encoded-username>
<your-encoded-password>

If that's successful the mail server should return 235 2.7.0 Authentication successful.