aboutsummaryrefslogtreecommitdiffstats
path: root/etc
diff options
context:
space:
mode:
authorPaul Eggert2011-06-22 09:25:06 -0700
committerPaul Eggert2011-06-22 09:25:06 -0700
commit9f0b1513ad9b24e2f7dec87d3afb32cd6240ccad (patch)
tree55150c011230521ce991f0c4ff36d2be4f6742f8 /etc
parente92b6c884116d70e224e9cb535ed85a2b05665a5 (diff)
parent31fd4b3280acee4030efde84a0e23ae2b006ee31 (diff)
downloademacs-9f0b1513ad9b24e2f7dec87d3afb32cd6240ccad.tar.gz
emacs-9f0b1513ad9b24e2f7dec87d3afb32cd6240ccad.zip
Merge from trunk.
Diffstat (limited to 'etc')
-rw-r--r--etc/NEWS20
1 files changed, 20 insertions, 0 deletions
diff --git a/etc/NEWS b/etc/NEWS
index f934cf75821..243058a46b2 100644
--- a/etc/NEWS
+++ b/etc/NEWS
@@ -109,6 +109,26 @@ and pops down the *Completions* buffer accordingly.
109 109
110** auto-mode-case-fold is now enabled by default. 110** auto-mode-case-fold is now enabled by default.
111 111
112** smtpmail changes
113
114** smtpmail has been largely rewritten to upgrade to STARTTLS if
115possible, and uses the auth-source framework for getting credentials.
116The rewrite should be largely compatible with previous versions of
117smtpmail, but there are two major incompatibilities:
118
119** `smtpmail-auth-credentials' no longer exists. That variable could
120be either ~/.authinfo (in which case you're fine -- you won't see any
121difference), but if it were a direct list of user names and passwords,
122you will be prompted for the user name and the password instead, and
123they will then be saved to ~/.authinfo.
124
125** Similarly, if you had `smtpmail-starttls-credentials' set, then
126then you need to put
127
128machine smtp.whatever.foo port 25 key "~/.my_smtp_tls.key" cert "~/.my_smtp_tls.cert"
129
130in your ~/.authinfo file instead.
131
112** Internationalization changes 132** Internationalization changes
113 133
114+++ 134+++