mirror of
https://git.savannah.gnu.org/git/emacs.git
synced 2025-01-13 16:38:14 +00:00
Update doc string of `smtpmail-stream-type'.
* mail/smtpmail.el (smtpmail-stream-type): Note that `plain' can be used.
This commit is contained in:
parent
a5b436dff5
commit
56ec5115e6
@ -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>
|
2011-07-07 Richard Stallman <rms@gnu.org>
|
||||||
|
|
||||||
* mail/rmail.el (rmail-next-error-move): Use `compilation-message'
|
* mail/rmail.el (rmail-next-error-move): Use `compilation-message'
|
||||||
|
@ -98,13 +98,14 @@ don't define this value."
|
|||||||
|
|
||||||
(defcustom smtpmail-stream-type nil
|
(defcustom smtpmail-stream-type nil
|
||||||
"Connection type SMTP connections.
|
"Connection type SMTP connections.
|
||||||
This may be either nil (plain connection) or `starttls' (use the
|
This may be either nil (possibly upgraded to STARTTLS if
|
||||||
starttls mechanism to turn on TLS security after opening the
|
possible), or `starttls' (refuse to send if STARTTLS isn't
|
||||||
stream)."
|
available), or `plain' (never use STARTTLS).."
|
||||||
:version "24.1"
|
:version "24.1"
|
||||||
:group 'smtpmail
|
:group 'smtpmail
|
||||||
:type '(choice (const :tag "Plain" nil)
|
:type '(choice (const :tag "Possibly upgrade to STARTTLS" nil)
|
||||||
(const starttls)))
|
(const :tag "Always use STARTTLS" starttls)
|
||||||
|
(const :tag "Never use STARTTLS" plain)))
|
||||||
|
|
||||||
(defcustom smtpmail-sendto-domain nil
|
(defcustom smtpmail-sendto-domain nil
|
||||||
"Local domain name without a host name.
|
"Local domain name without a host name.
|
||||||
|
Loading…
Reference in New Issue
Block a user