diff options
| author | Lars Magne Ingebrigtsen | 2011-07-07 16:54:12 +0200 |
|---|---|---|
| committer | Lars Magne Ingebrigtsen | 2011-07-07 16:54:12 +0200 |
| commit | 56ec5115e6fc5b4a93ce088dbd3a38a690008b54 (patch) | |
| tree | 51af1a76a6d5af6a9ab08b035e9190f24b3353a8 | |
| parent | a5b436dff530c418f06e95d6afe61c52c32748a6 (diff) | |
| download | emacs-56ec5115e6fc5b4a93ce088dbd3a38a690008b54.tar.gz emacs-56ec5115e6fc5b4a93ce088dbd3a38a690008b54.zip | |
Update doc string of `smtpmail-stream-type'.
* mail/smtpmail.el (smtpmail-stream-type): Note that `plain' can
be used.
| -rw-r--r-- | lisp/ChangeLog | 5 | ||||
| -rw-r--r-- | lisp/mail/smtpmail.el | 11 |
2 files changed, 11 insertions, 5 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 99db8f7962c..282035af2b9 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,3 +1,8 @@ | |||
| 1 | 2011-07-07 Lars Magne Ingebrigtsen <larsi@gnus.org> | ||
| 2 | |||
| 3 | * mail/smtpmail.el (smtpmail-stream-type): Note that `plain' can | ||
| 4 | be used. | ||
| 5 | |||
| 1 | 2011-07-07 Richard Stallman <rms@gnu.org> | 6 | 2011-07-07 Richard Stallman <rms@gnu.org> |
| 2 | 7 | ||
| 3 | * mail/rmail.el (rmail-next-error-move): Use `compilation-message' | 8 | * mail/rmail.el (rmail-next-error-move): Use `compilation-message' |
diff --git a/lisp/mail/smtpmail.el b/lisp/mail/smtpmail.el index 1b53b47499b..073e2fa4a3c 100644 --- a/lisp/mail/smtpmail.el +++ b/lisp/mail/smtpmail.el | |||
| @@ -98,13 +98,14 @@ don't define this value." | |||
| 98 | 98 | ||
| 99 | (defcustom smtpmail-stream-type nil | 99 | (defcustom smtpmail-stream-type nil |
| 100 | "Connection type SMTP connections. | 100 | "Connection type SMTP connections. |
| 101 | This may be either nil (plain connection) or `starttls' (use the | 101 | This may be either nil (possibly upgraded to STARTTLS if |
| 102 | starttls mechanism to turn on TLS security after opening the | 102 | possible), or `starttls' (refuse to send if STARTTLS isn't |
| 103 | stream)." | 103 | available), or `plain' (never use STARTTLS).." |
| 104 | :version "24.1" | 104 | :version "24.1" |
| 105 | :group 'smtpmail | 105 | :group 'smtpmail |
| 106 | :type '(choice (const :tag "Plain" nil) | 106 | :type '(choice (const :tag "Possibly upgrade to STARTTLS" nil) |
| 107 | (const starttls))) | 107 | (const :tag "Always use STARTTLS" starttls) |
| 108 | (const :tag "Never use STARTTLS" plain))) | ||
| 108 | 109 | ||
| 109 | (defcustom smtpmail-sendto-domain nil | 110 | (defcustom smtpmail-sendto-domain nil |
| 110 | "Local domain name without a host name. | 111 | "Local domain name without a host name. |