aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBrad Fitzpatrick <bradfitz@golang.org>2016-07-19 20:27:55 -0700
committerBrad Fitzpatrick <bradfitz@golang.org>2016-07-20 05:08:37 +0000
commit883e128f4571a59842e1156b5ebe25d8420162d9 (patch)
tree33708b8f1fa4a9023e2af7818f69bce9d06a8864
parent1d2ca9e30c22bc9e8cd0b21dff58367443696c91 (diff)
downloadgo-883e128f4571a59842e1156b5ebe25d8420162d9.tar.gz
go-883e128f4571a59842e1156b5ebe25d8420162d9.zip
net/smtp: document that the smtp package is frozen
This copies the frozen wording from the log/syslog package. Fixes #16436 Change-Id: If5d478023328925299399f228d8aaf7fb117c1b4 Reviewed-on: https://go-review.googlesource.com/25080 Reviewed-by: Ian Lance Taylor <iant@golang.org> Run-TryBot: Ian Lance Taylor <iant@golang.org> TryBot-Result: Gobot Gobot <gobot@golang.org> Reviewed-by: Andrew Gerrand <adg@golang.org>
-rw-r--r--src/net/smtp/smtp.go5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/net/smtp/smtp.go b/src/net/smtp/smtp.go
index b4e4867a9e..9e04dd7c82 100644
--- a/src/net/smtp/smtp.go
+++ b/src/net/smtp/smtp.go
@@ -8,6 +8,11 @@
// AUTH RFC 2554
// STARTTLS RFC 3207
// Additional extensions may be handled by clients.
+//
+// The smtp package is frozen and not accepting new features.
+// Some external packages provide more functionality. See:
+//
+// https://godoc.org/?q=smtp
package smtp
import (