SMTP: Difference between revisions

From DWIKI
 
(3 intermediate revisions by the same user not shown)
Line 1: Line 1:
=Documentation=
*http://www.networksorcery.com/enp/rfc/rfc2821.txt


==SMTP reply codes==
= Documentation =
*http://www.greenend.org.uk/rjk/2000/05/21/smtp-replies.html
*http://www.networksorcery.com/enp/protocol/smtp.htm
*[http://www.ietf.org/rfc/rfc3463.txt RFC 3464]
*[http://www.fots.nl/index.php/ndr-and-smtp-reply-and-error-codes/]


*5.5.0 unavailable (bob knows why)
*[http://www.networksorcery.com/enp/rfc/rfc2821.txt http://www.networksorcery.com/enp/rfc/rfc2821.txt]
*5.1.1 something wrong on exchange sewer, probably user unknown
 
*5.2.2 over quota
== SMTP reply codes ==
 
*[http://www.greenend.org.uk/rjk/2000/05/21/smtp-replies.html http://www.greenend.org.uk/rjk/2000/05/21/smtp-replies.html]
*[http://www.networksorcery.com/enp/protocol/smtp.htm http://www.networksorcery.com/enp/protocol/smtp.htm]
*[http://www.ietf.org/rfc/rfc3463.txt RFC 3464]
*[http://www.fots.nl/index.php/ndr-and-smtp-reply-and-error-codes/ [1]]
 
*5.5.0 unavailable (bob knows why)  
*5.1.1 something wrong on exchange sewer, probably user unknown  
*5.2.2 over quota  
  [[Category:Networking]] [[Category:Mail]]     
 
 
== test smtp auth ==
echo -n "\0username\0password"| base64
openssl s_client -connect smtp.example.com:587 -starttls
HELO somehostname
AUTH PLAIN MzIwOTQyODUyMjYyNg==

Latest revision as of 10:45, 7 August 2023

Documentation

SMTP reply codes

  • 5.5.0 unavailable (bob knows why)
  • 5.1.1 something wrong on exchange sewer, probably user unknown
  • 5.2.2 over quota


test smtp auth

echo -n "\0username\0password"| base64
openssl s_client -connect smtp.example.com:587 -starttls
HELO somehostname
AUTH PLAIN MzIwOTQyODUyMjYyNg==