; Fix smtpmail-stream-type docstring

* lisp/mail/smtpmail.el (smtpmail-stream-type): Remove redundant
docstring verbiage.
This commit is contained in:
Noam Postavsky 2019-05-05 12:27:32 -04:00
parent 7dab3ee7ab
commit 0397b7c797

View file

@ -101,9 +101,9 @@ don't define this value."
(defcustom smtpmail-stream-type nil
"Type of SMTP connections to use.
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), or `ssl' (to use TLS/SSL)."
This may be either nil (upgrade with STARTTLS if possible),
`starttls' (refuse to send if STARTTLS isn't available),
`plain' (never use STARTTLS), or `ssl' (to use TLS/SSL)."
:version "24.1"
:group 'smtpmail
:type '(choice (const :tag "Possibly upgrade to STARTTLS" nil)