diff options
| author | Lars Magne Ingebrigtsen | 2011-07-07 13:18:17 +0200 |
|---|---|---|
| committer | Lars Magne Ingebrigtsen | 2011-07-07 13:18:17 +0200 |
| commit | e2430e3119fa516d75b026863a4b67238c388888 (patch) | |
| tree | a47d05f55e7f29f2ef0aabb2a69b86eff0f8e938 | |
| parent | c2f9aec8b46cfa648c9768a0e6574d43d604eb2c (diff) | |
| download | emacs-e2430e3119fa516d75b026863a4b67238c388888.tar.gz emacs-e2430e3119fa516d75b026863a4b67238c388888.zip | |
* NEWS: Clarify `smtpmail-auth-credentials' non-existence.
| -rw-r--r-- | etc/ChangeLog | 4 | ||||
| -rw-r--r-- | etc/NEWS | 26 |
2 files changed, 24 insertions, 6 deletions
diff --git a/etc/ChangeLog b/etc/ChangeLog index f2098dc210d..cd035a4d7c9 100644 --- a/etc/ChangeLog +++ b/etc/ChangeLog | |||
| @@ -1,3 +1,7 @@ | |||
| 1 | 2011-07-07 Lars Magne Ingebrigtsen <larsi@gnus.org> | ||
| 2 | |||
| 3 | * NEWS: Clarify `smtpmail-auth-credentials' non-existence. | ||
| 4 | |||
| 1 | 2011-07-07 Chong Yidong <cyd@stupidchicken.com> | 5 | 2011-07-07 Chong Yidong <cyd@stupidchicken.com> |
| 2 | 6 | ||
| 3 | * themes/dichromacy-theme.el: | 7 | * themes/dichromacy-theme.el: |
| @@ -124,16 +124,30 @@ possible, and uses the auth-source framework for getting credentials. | |||
| 124 | The rewrite should be largely compatible with previous versions of | 124 | The rewrite should be largely compatible with previous versions of |
| 125 | smtpmail, but there are two major incompatibilities: | 125 | smtpmail, but there are two major incompatibilities: |
| 126 | 126 | ||
| 127 | ** `smtpmail-auth-credentials' no longer exists. That variable could | 127 | ** `smtpmail-auth-credentials' no longer exists. That variable used |
| 128 | be either ~/.authinfo (in which case you're fine -- you won't see any | 128 | to be be either ~/.authinfo (in which case you won't see any |
| 129 | difference), but if it were a direct list of user names and passwords, | 129 | difference), but if it were a direct list of user names and passwords, |
| 130 | you will be prompted for the user name and the password instead, and | 130 | it will be ignored, and you will be prompted for the user name and the |
| 131 | they will then be saved to ~/.authinfo. | 131 | password instead. They will then be saved to ~/.authinfo. |
| 132 | |||
| 133 | If you wish to copy over all the credentials from | ||
| 134 | `smtpmail-auth-credentials' to your ~/.authinfo file manually, instead | ||
| 135 | of letting smtpmail prompt you for these values, that's also possible. | ||
| 136 | |||
| 137 | If you had, for instance, | ||
| 138 | |||
| 139 | (setq smtpmail-auth-credentials | ||
| 140 | '(("mail.example.org" 25 "jim" "s!cret"))) | ||
| 141 | |||
| 142 | then the equivalent line in ~/.authinfo would be | ||
| 143 | |||
| 144 | machine mail.example.org port 25 login jim password s!cret | ||
| 132 | 145 | ||
| 133 | ** Similarly, `smtpmail-starttls-credentials' no longer exists. If | 146 | ** Similarly, `smtpmail-starttls-credentials' no longer exists. If |
| 134 | you had thet set, then then you need to put | 147 | you had that set, then then you need to put |
| 135 | 148 | ||
| 136 | machine smtp.whatever.foo port 25 key "~/.my_smtp_tls.key" cert "~/.my_smtp_tls.cert" | 149 | machine smtp.whatever.foo port 25 key "~/.my_smtp_tls.key" cert |
| 150 | "~/.my_smtp_tls.cert" | ||
| 137 | 151 | ||
| 138 | in your ~/.authinfo file instead. | 152 | in your ~/.authinfo file instead. |
| 139 | 153 | ||