diff options
| author | Lars Magne Ingebrigtsen | 2012-01-03 20:41:14 +0100 |
|---|---|---|
| committer | Lars Magne Ingebrigtsen | 2012-01-03 20:41:14 +0100 |
| commit | a1eacd1e034e922b14178bb6fb81b03a36ba5e02 (patch) | |
| tree | ad311d8fee70f38b9b335fedd898d122a260f331 | |
| parent | e66ba1dfc4cf2e12100191d2c24436c42d097268 (diff) | |
| download | emacs-a1eacd1e034e922b14178bb6fb81b03a36ba5e02.tar.gz emacs-a1eacd1e034e922b14178bb6fb81b03a36ba5e02.zip | |
* mail/smtpmail.el (smtpmail-stream-type): Mention the `ssl' value.
| -rw-r--r-- | lisp/ChangeLog | 4 | ||||
| -rw-r--r-- | lisp/mail/smtpmail.el | 6 |
2 files changed, 8 insertions, 2 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 8679b2c4f59..c852bc00c74 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,3 +1,7 @@ | |||
| 1 | 2012-01-03 Lars Magne Ingebrigtsen <larsi@gnus.org> | ||
| 2 | |||
| 3 | * mail/smtpmail.el (smtpmail-stream-type): Mention the `ssl' value. | ||
| 4 | |||
| 1 | 2012-01-03 Chong Yidong <cyd@gnu.org> | 5 | 2012-01-03 Chong Yidong <cyd@gnu.org> |
| 2 | 6 | ||
| 3 | * shell.el (shell-dynamic-complete-functions): Put | 7 | * shell.el (shell-dynamic-complete-functions): Put |
diff --git a/lisp/mail/smtpmail.el b/lisp/mail/smtpmail.el index bc38b10124e..4946b4e5cd3 100644 --- a/lisp/mail/smtpmail.el +++ b/lisp/mail/smtpmail.el | |||
| @@ -103,12 +103,14 @@ don't define this value." | |||
| 103 | "Connection type SMTP connections. | 103 | "Connection type SMTP connections. |
| 104 | This may be either nil (possibly upgraded to STARTTLS if | 104 | This may be either nil (possibly upgraded to STARTTLS if |
| 105 | possible), or `starttls' (refuse to send if STARTTLS isn't | 105 | possible), or `starttls' (refuse to send if STARTTLS isn't |
| 106 | available), or `plain' (never use STARTTLS).." | 106 | available), or `plain' (never use STARTTLS), or `ssl' (to use |
| 107 | TLS/SSL)." | ||
| 107 | :version "24.1" | 108 | :version "24.1" |
| 108 | :group 'smtpmail | 109 | :group 'smtpmail |
| 109 | :type '(choice (const :tag "Possibly upgrade to STARTTLS" nil) | 110 | :type '(choice (const :tag "Possibly upgrade to STARTTLS" nil) |
| 110 | (const :tag "Always use STARTTLS" starttls) | 111 | (const :tag "Always use STARTTLS" starttls) |
| 111 | (const :tag "Never use STARTTLS" plain))) | 112 | (const :tag "Never use STARTTLS" plain) |
| 113 | (const :tag "Use TLS/SSL" ssl))) | ||
| 112 | 114 | ||
| 113 | (defcustom smtpmail-sendto-domain nil | 115 | (defcustom smtpmail-sendto-domain nil |
| 114 | "Local domain name without a host name. | 116 | "Local domain name without a host name. |