aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLars Magne Ingebrigtsen2012-01-03 20:41:14 +0100
committerLars Magne Ingebrigtsen2012-01-03 20:41:14 +0100
commita1eacd1e034e922b14178bb6fb81b03a36ba5e02 (patch)
treead311d8fee70f38b9b335fedd898d122a260f331
parente66ba1dfc4cf2e12100191d2c24436c42d097268 (diff)
downloademacs-a1eacd1e034e922b14178bb6fb81b03a36ba5e02.tar.gz
emacs-a1eacd1e034e922b14178bb6fb81b03a36ba5e02.zip
* mail/smtpmail.el (smtpmail-stream-type): Mention the `ssl' value.
-rw-r--r--lisp/ChangeLog4
-rw-r--r--lisp/mail/smtpmail.el6
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 @@
12012-01-03 Lars Magne Ingebrigtsen <larsi@gnus.org>
2
3 * mail/smtpmail.el (smtpmail-stream-type): Mention the `ssl' value.
4
12012-01-03 Chong Yidong <cyd@gnu.org> 52012-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.
104This may be either nil (possibly upgraded to STARTTLS if 104This may be either nil (possibly upgraded to STARTTLS if
105possible), or `starttls' (refuse to send if STARTTLS isn't 105possible), or `starttls' (refuse to send if STARTTLS isn't
106available), or `plain' (never use STARTTLS).." 106available), or `plain' (never use STARTTLS), or `ssl' (to use
107TLS/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.