]> code.delx.au - gnu-emacs/commitdiff
Update doc string of `smtpmail-stream-type'.
authorLars Magne Ingebrigtsen <larsi@gnus.org>
Thu, 7 Jul 2011 14:54:12 +0000 (16:54 +0200)
committerLars Magne Ingebrigtsen <larsi@gnus.org>
Thu, 7 Jul 2011 14:54:12 +0000 (16:54 +0200)
* mail/smtpmail.el (smtpmail-stream-type): Note that `plain' can
be used.

lisp/ChangeLog
lisp/mail/smtpmail.el

index 99db8f7962c71c1c6996acba52fcd8dc696f5bbc..282035af2b9f9c1edc96155a7252de3cf8e86d91 100644 (file)
@@ -1,3 +1,8 @@
+2011-07-07  Lars Magne Ingebrigtsen  <larsi@gnus.org>
+
+       * mail/smtpmail.el (smtpmail-stream-type): Note that `plain' can
+       be used.
+
 2011-07-07  Richard Stallman  <rms@gnu.org>
 
        * mail/rmail.el (rmail-next-error-move): Use `compilation-message'
index 1b53b47499bf58d2e2c0966813c952d885757bea..073e2fa4a3cdae21e69ac3415f4e2f12577707c1 100644 (file)
@@ -98,13 +98,14 @@ don't define this value."
 
 (defcustom smtpmail-stream-type nil
   "Connection type SMTP connections.
-This may be either nil (plain connection) or `starttls' (use the
-starttls mechanism to turn on TLS security after opening the
-stream)."
+This may be either nil (possibly upgraded to STARTTLS if
+possible), or `starttls' (refuse to send if STARTTLS isn't
+available), or `plain' (never use STARTTLS).."
   :version "24.1"
   :group 'smtpmail
-  :type '(choice (const :tag "Plain" nil)
-                (const starttls)))
+  :type '(choice (const :tag "Possibly upgrade to STARTTLS" nil)
+                (const :tag "Always use STARTTLS" starttls)
+                (const :tag "Never use STARTTLS" plain)))
 
 (defcustom smtpmail-sendto-domain nil
   "Local domain name without a host name.