aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTeodor Zlatanov2008-11-10 20:13:41 +0000
committerTeodor Zlatanov2008-11-10 20:13:41 +0000
commit863e372f74be8f7fd44e01a1a5de6d3d9c266164 (patch)
tree2377b70180e63e7268d2401489cac2547edc7137
parent373f031296fcda27a2346f743134c9d71dd22daf (diff)
downloademacs-863e372f74be8f7fd44e01a1a5de6d3d9c266164.tar.gz
emacs-863e372f74be8f7fd44e01a1a5de6d3d9c266164.zip
(smtpmail-open-stream): Use `starttls-any-program-available'. Auto-load starttls.el for it.
-rw-r--r--lisp/ChangeLog2
-rw-r--r--lisp/mail/smtpmail.el1
2 files changed, 2 insertions, 1 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index 4f9326392d7..efaf053f738 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,7 +1,7 @@
12008-11-10 Teodor Zlatanov <tzz@lifelogs.com> 12008-11-10 Teodor Zlatanov <tzz@lifelogs.com>
2 2
3 * mail/smtpmail.el (smtpmail-open-stream): Use 3 * mail/smtpmail.el (smtpmail-open-stream): Use
4 `starttls-any-program-available'. 4 `starttls-any-program-available'. Auto-load starttls.el for it.
5 5
62008-11-08 Chong Yidong <cyd@stupidchicken.com> 62008-11-08 Chong Yidong <cyd@stupidchicken.com>
7 7
diff --git a/lisp/mail/smtpmail.el b/lisp/mail/smtpmail.el
index f597136dd71..fbf4f965baa 100644
--- a/lisp/mail/smtpmail.el
+++ b/lisp/mail/smtpmail.el
@@ -67,6 +67,7 @@
67;;; Code: 67;;; Code:
68 68
69(require 'sendmail) 69(require 'sendmail)
70(autoload 'starttls-any-program-available "starttls")
70(autoload 'starttls-open-stream "starttls") 71(autoload 'starttls-open-stream "starttls")
71(autoload 'starttls-negotiate "starttls") 72(autoload 'starttls-negotiate "starttls")
72(autoload 'mail-strip-quoted-names "mail-utils") 73(autoload 'mail-strip-quoted-names "mail-utils")