aboutsummaryrefslogtreecommitdiffstats
path: root/lisp/gnus/auth-source.el
diff options
context:
space:
mode:
authorGnus developers2010-10-10 22:48:40 +0000
committerKatsumi Yamaoka2010-10-10 22:48:40 +0000
commitdab0271f8dfd284e0ecd5022745a67c182410b81 (patch)
treef2691cc40ee0625e33677905602745440f451563 /lisp/gnus/auth-source.el
parent355cdaf37b7eeef16d23c4bf7fce7b69d56423ec (diff)
downloademacs-dab0271f8dfd284e0ecd5022745a67c182410b81.tar.gz
emacs-dab0271f8dfd284e0ecd5022745a67c182410b81.zip
Merge changes made in Gnus trunk.
nnimap.el (nnimap-wait-for-response): If the user hits `C-g', kill the process, too. nnir.el (gnus-summary-nnir-goto-thread): Modify to work with imap. nnimap.el (nnimap-update-info): If the server doesn't return any useful info, just use the previous info. nnimap.el (nnimap-update-info): Prefer old info over start-article. nnimap.el (nnimap-update-qresync-info): Finish implementing QRESYNC. auth-source.el (auth-source-create): Use (user-login-name) for the user name default. nnimap.el (nnimap-open-connection): Use gnutls STARTTLS, if available. nnimap.el (nnimap-update-info): Rely more on the current active than the param active to avoid marking articles as read too much. gnus-sum.el (gnus-summary-set-local-parameters): Ignore the `active' non-variable, too. nnimap.el (nnimap-update-qresync-info): \Flagged messages are read for Gnus. nnimap.el (nnimap-retrieve-group-data-early): utf7-encode the group parameters. nnimap.el (nnimap-update-qresync-info): Mark \Seen articles as read.
Diffstat (limited to 'lisp/gnus/auth-source.el')
-rw-r--r--lisp/gnus/auth-source.el5
1 files changed, 4 insertions, 1 deletions
diff --git a/lisp/gnus/auth-source.el b/lisp/gnus/auth-source.el
index 0b1d8eb57af..20e4af189d9 100644
--- a/lisp/gnus/auth-source.el
+++ b/lisp/gnus/auth-source.el
@@ -336,7 +336,10 @@ Return structure as specified by MODE."
336 passwd)) 336 passwd))
337 ((equal "login" m) 337 ((equal "login" m)
338 (or user 338 (or user
339 (read-string (format "User name for %s on %s: " prot host)))) 339 (read-string
340 (format "User name for %s on %s (default %s): " prot host
341 (user-login-name))
342 nil nil (user-login-name))))
340 (t 343 (t
341 "unknownuser")))) 344 "unknownuser"))))
342 (if (consp mode) mode (list mode)))) 345 (if (consp mode) mode (list mode))))