aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLars Magne Ingebrigtsen2011-07-07 13:18:17 +0200
committerLars Magne Ingebrigtsen2011-07-07 13:18:17 +0200
commite2430e3119fa516d75b026863a4b67238c388888 (patch)
treea47d05f55e7f29f2ef0aabb2a69b86eff0f8e938
parentc2f9aec8b46cfa648c9768a0e6574d43d604eb2c (diff)
downloademacs-e2430e3119fa516d75b026863a4b67238c388888.tar.gz
emacs-e2430e3119fa516d75b026863a4b67238c388888.zip
* NEWS: Clarify `smtpmail-auth-credentials' non-existence.
-rw-r--r--etc/ChangeLog4
-rw-r--r--etc/NEWS26
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 @@
12011-07-07 Lars Magne Ingebrigtsen <larsi@gnus.org>
2
3 * NEWS: Clarify `smtpmail-auth-credentials' non-existence.
4
12011-07-07 Chong Yidong <cyd@stupidchicken.com> 52011-07-07 Chong Yidong <cyd@stupidchicken.com>
2 6
3 * themes/dichromacy-theme.el: 7 * themes/dichromacy-theme.el:
diff --git a/etc/NEWS b/etc/NEWS
index 66b173751bf..46e7f4d60a5 100644
--- a/etc/NEWS
+++ b/etc/NEWS
@@ -124,16 +124,30 @@ possible, and uses the auth-source framework for getting credentials.
124The rewrite should be largely compatible with previous versions of 124The rewrite should be largely compatible with previous versions of
125smtpmail, but there are two major incompatibilities: 125smtpmail, 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
128be either ~/.authinfo (in which case you're fine -- you won't see any 128to be be either ~/.authinfo (in which case you won't see any
129difference), but if it were a direct list of user names and passwords, 129difference), but if it were a direct list of user names and passwords,
130you will be prompted for the user name and the password instead, and 130it will be ignored, and you will be prompted for the user name and the
131they will then be saved to ~/.authinfo. 131password instead. They will then be saved to ~/.authinfo.
132
133If you wish to copy over all the credentials from
134`smtpmail-auth-credentials' to your ~/.authinfo file manually, instead
135of letting smtpmail prompt you for these values, that's also possible.
136
137If you had, for instance,
138
139(setq smtpmail-auth-credentials
140 '(("mail.example.org" 25 "jim" "s!cret")))
141
142then the equivalent line in ~/.authinfo would be
143
144machine 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
134you had thet set, then then you need to put 147you had that set, then then you need to put
135 148
136machine smtp.whatever.foo port 25 key "~/.my_smtp_tls.key" cert "~/.my_smtp_tls.cert" 149machine smtp.whatever.foo port 25 key "~/.my_smtp_tls.key" cert
150"~/.my_smtp_tls.cert"
137 151
138in your ~/.authinfo file instead. 152in your ~/.authinfo file instead.
139 153