aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSimon Josefsson2006-09-06 09:08:55 +0000
committerSimon Josefsson2006-09-06 09:08:55 +0000
commit8bf5f8c5d22e372ecda7e158136b3f9f0fad6442 (patch)
tree1dfa9ffa4ac8a7f92062f909069d8a73d184c56b
parent04e28558df772845d83d5e870300b755b2528b57 (diff)
downloademacs-8bf5f8c5d22e372ecda7e158136b3f9f0fad6442.tar.gz
emacs-8bf5f8c5d22e372ecda7e158136b3f9f0fad6442.zip
2006-09-06 Simon Josefsson <jas@extundo.com>
* mail/smtpmail.el (smtpmail-starttls-credentials): Doc fix.
-rw-r--r--lisp/ChangeLog4
-rw-r--r--lisp/mail/smtpmail.el7
2 files changed, 10 insertions, 1 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index a0fb52b352c..4a2dfbb0b0f 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,3 +1,7 @@
12006-09-06 Simon Josefsson <jas@extundo.com>
2
3 * mail/smtpmail.el (smtpmail-starttls-credentials): Doc fix.
4
12006-09-06 Nick Roberts <nickrob@snap.net.nz> 52006-09-06 Nick Roberts <nickrob@snap.net.nz>
2 6
3 * progmodes/gdb-ui.el (gdb-var-list-children-regexp) 7 * progmodes/gdb-ui.el (gdb-var-list-children-regexp)
diff --git a/lisp/mail/smtpmail.el b/lisp/mail/smtpmail.el
index ff38cd25ff8..3fc0477a0a0 100644
--- a/lisp/mail/smtpmail.el
+++ b/lisp/mail/smtpmail.el
@@ -176,7 +176,12 @@ looks like `user@realm'."
176(defcustom smtpmail-starttls-credentials '(("" 25 "" "")) 176(defcustom smtpmail-starttls-credentials '(("" 25 "" ""))
177 "Specify STARTTLS keys and certificates for servers. 177 "Specify STARTTLS keys and certificates for servers.
178This is a list of four-element list with `servername' (a string), 178This is a list of four-element list with `servername' (a string),
179`port' (an integer), `key' (a filename) and `certificate' (a filename)." 179`port' (an integer), `key' (a filename) and `certificate' (a
180filename).
181If you do not have a certificate/key pair, leave the `key' and
182`certificate' fields as `nil'. A key/certificate pair is only
183needed if you want to use X.509 client authenticated
184connections."
180 :type '(repeat (list (string :tag "Server") 185 :type '(repeat (list (string :tag "Server")
181 (integer :tag "Port") 186 (integer :tag "Port")
182 (file :tag "Key") 187 (file :tag "Key")