1
我有檢查現有的Gmail帳戶的問題。爲了連接到smtp服務器,我使用openssl for Windows。運行之後,我寫下一行連接到服務器:Smtp服務器不返回錯誤
s_client -starttls smtp -crlf -connect smtp.gmail.com:587
連接後,我在服務器上使用身份驗證登錄登錄。 在此之後我開始創建新的郵件:
C:mail from:<[email protected]>
S:250 2.1.0 OK w7sm27345781wiz.0
C:rcpt to:<[email protected]> //input incorrect email
S:250 2.1.0 OK w7sm27345781wiz.0
但輸入不正確的郵件服務器後,必須返回錯誤:
550-5.1.1 The email account that you tried to reach does not exist...
爲什麼不服務器返回的錯誤?