From b43cc430fbe83b5958dfd336476cb57c6c272ad6 Mon Sep 17 00:00:00 2001 From: J.R. Garcia Date: Sun, 22 May 2011 18:49:27 -0500 Subject: [PATCH] Updated list of standards. RFC2821 has been obsoleted by RFC5321 and RFC2822 has been obsoleted by RFC5322. --- lib/net/smtp.rb | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/net/smtp.rb b/lib/net/smtp.rb index dca1e24..79b8c46 100644 --- a/lib/net/smtp.rb +++ b/lib/net/smtp.rb @@ -72,7 +72,7 @@ module Net # # This library provides functionality to send internet # mail via SMTP, the Simple Mail Transfer Protocol. For details of - # SMTP itself, see [RFC2821] (http://www.ietf.org/rfc/rfc2821.txt). + # SMTP itself, see [RFC5321] (http://www.ietf.org/rfc/rfc5321.txt). # # == What is This Library NOT? # @@ -81,7 +81,7 @@ module Net # try RubyMail or TMail. You can get both libraries from RAA. # (http://www.ruby-lang.org/en/raa.html) # - # FYI: the official documentation on internet mail is: [RFC2822] (http://www.ietf.org/rfc/rfc2822.txt). + # FYI: the official documentation on internet mail is: [RFC5322] (http://www.ietf.org/rfc/rfc5322.txt). # # == Examples # -- 1.7.3.4