diff options
| -rw-r--r-- | lisp/ChangeLog | 4 | ||||
| -rw-r--r-- | lisp/mail/smtpmail.el | 5 |
2 files changed, 5 insertions, 4 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 9603acec917..f57bd437af6 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,5 +1,9 @@ | |||
| 1 | 2011-08-17 Lars Magne Ingebrigtsen <larsi@gnus.org> | 1 | 2011-08-17 Lars Magne Ingebrigtsen <larsi@gnus.org> |
| 2 | 2 | ||
| 3 | * mail/smtpmail.el (auth-source): Require to avoid problems with | ||
| 4 | binding variables (bug#9298). Also clean up some unused | ||
| 5 | autoloads. | ||
| 6 | |||
| 3 | * net/network-stream.el (network-stream-open-starttls): Support | 7 | * net/network-stream.el (network-stream-open-starttls): Support |
| 4 | using starttls.el without using gnutls-cli. | 8 | using starttls.el without using gnutls-cli. |
| 5 | 9 | ||
diff --git a/lisp/mail/smtpmail.el b/lisp/mail/smtpmail.el index 3b406fa9331..637d10135fa 100644 --- a/lisp/mail/smtpmail.el +++ b/lisp/mail/smtpmail.el | |||
| @@ -55,15 +55,12 @@ | |||
| 55 | ;;; Code: | 55 | ;;; Code: |
| 56 | 56 | ||
| 57 | (require 'sendmail) | 57 | (require 'sendmail) |
| 58 | (require 'auth-source) | ||
| 58 | (autoload 'mail-strip-quoted-names "mail-utils") | 59 | (autoload 'mail-strip-quoted-names "mail-utils") |
| 59 | (autoload 'message-make-date "message") | 60 | (autoload 'message-make-date "message") |
| 60 | (autoload 'message-make-message-id "message") | 61 | (autoload 'message-make-message-id "message") |
| 61 | (autoload 'rfc2104-hash "rfc2104") | 62 | (autoload 'rfc2104-hash "rfc2104") |
| 62 | (autoload 'netrc-parse "netrc") | ||
| 63 | (autoload 'netrc-machine "netrc") | ||
| 64 | (autoload 'netrc-get "netrc") | ||
| 65 | (autoload 'password-read "password-cache") | 63 | (autoload 'password-read "password-cache") |
| 66 | (autoload 'auth-source-search "auth-source") | ||
| 67 | 64 | ||
| 68 | ;;; | 65 | ;;; |
| 69 | (defgroup smtpmail nil | 66 | (defgroup smtpmail nil |