2019年2月4日 星期一

[研究] 簡單郵件傳輸協定 SMTP (Simple Mail Transfer Protocol) 指令

[研究] 簡單郵件傳輸協定 SMTP (Simple Mail Transfer Protocol) 指令

2019-02-04

簡單郵件傳輸協定- 維基百科,自由的百科全書 - Wikipedia
https://zh.wikipedia.org/wiki/%E7%AE%80%E5%8D%95%E9%82%AE%E4%BB%B6%E4%BC%A0%E8%BE%93%E5%8D%8F%E8%AE%AE
Simple Mail Transfer Protocol

telnet  www.example.com 25


它開啟一個從傳送的機器到主機www.example.com的SMTP連接。

S: 220 www.example.com ESMTP Postfix
C: HELO mydomain.com
S: 250 Hello mydomain.com
C: MAIL FROM: <sender@mydomain.com>
S: 250 Ok
C: RCPT TO: <friend@example.com>
S: 250 Ok
C: DATA
S: 354 End data with <CR><LF>.<CR><LF>
C: Subject: test message
C: From:""< sender@mydomain.com>
C: To:""< friend@example.com>
C:
C: Hello,
C: This is a test.
C: Goodbye.
C: .
S: 250 Ok: queued as 12345
C: quit
S: 221 Bye


RFC 5321 - 簡單郵件傳輸協定,在最近(2008.8)代替了 RFC 2821
https://tools.ietf.org/html/rfc5321
RFC 2821 - 簡單郵件傳輸協定,在最近(2001)代替了 RFC 821,RFC 1869,RFC 974
https://tools.ietf.org/html/rfc2821
RFC 2822 - Internet(比如 e-mail)訊息格式,代替了 RFC 822
https://tools.ietf.org/html/rfc2822
RFC 3461 - SMTP的傳送狀態通知(DSN)擴充,代替了 RFC 1891
https://tools.ietf.org/html/rfc3461

(待續)

沒有留言:

張貼留言