diff options
author | Miles Bader <miles@gnu.org> | 2005-03-03 23:02:21 +0000 |
---|---|---|
committer | Miles Bader <miles@gnu.org> | 2005-03-03 23:02:21 +0000 |
commit | 2fd561a901c00fe6a3e0777dc91c0321d95ce80c (patch) | |
tree | aa9e9fbe3f4b745d55778e002d06778a9c4bd4a0 /lisp | |
parent | c155895220d9d499ee84a9d88a87753b9927d35d (diff) | |
download | emacs-2fd561a901c00fe6a3e0777dc91c0321d95ce80c.tar.gz emacs-2fd561a901c00fe6a3e0777dc91c0321d95ce80c.tar.bz2 emacs-2fd561a901c00fe6a3e0777dc91c0321d95ce80c.zip |
Revision: miles@gnu.org--gnu-2005/emacs--cvs-trunk--0--patch-151
Merge from gnus--rel--5.10
Patches applied:
* miles@gnu.org--gnu-2005/gnus--rel--5.10 (patch 34-35)
- Merge from emacs--cvs-trunk--0
- Update from CVS
2005-03-03 Reiner Steib <Reiner.Steib@gmx.de>
* lisp/gnus/message.el (message-get-reply-headers, message-followup):
Mention related variables `message-use-followup-to' and
`message-use-mail-followup-to', in the information buffer.
* lisp/gnus/nnweb.el (nnweb-type-definition): Use groups.google.de instead
of broken groups(-beta).google.com.
2005-03-03 Reiner Steib <Reiner.Steib@gmx.de>
* man/gnus.texi (Slow/Expensive Connection): Don't abbreviate "very".
Diffstat (limited to 'lisp')
-rw-r--r-- | lisp/gnus/ChangeLog | 9 | ||||
-rw-r--r-- | lisp/gnus/message.el | 15 | ||||
-rw-r--r-- | lisp/gnus/nnweb.el | 4 |
3 files changed, 23 insertions, 5 deletions
diff --git a/lisp/gnus/ChangeLog b/lisp/gnus/ChangeLog index 11b93e2df0c..f191bf4d15f 100644 --- a/lisp/gnus/ChangeLog +++ b/lisp/gnus/ChangeLog @@ -1,3 +1,12 @@ +2005-03-03 Reiner Steib <Reiner.Steib@gmx.de> + + * message.el (message-get-reply-headers, message-followup): + Mention related variables `message-use-followup-to' and + `message-use-mail-followup-to', in the information buffer. + + * nnweb.el (nnweb-type-definition): Use groups.google.de instead + of broken groups(-beta).google.com. + 2005-03-01 Stefan Monnier <monnier@iro.umontreal.ca> * gnus-sum.el (gnus-summary-exit): Undo last change and fix it in diff --git a/lisp/gnus/message.el b/lisp/gnus/message.el index e30e9a6b123..445543e4d9e 100644 --- a/lisp/gnus/message.el +++ b/lisp/gnus/message.el @@ -5675,7 +5675,10 @@ because discussions that are spread over several lists tend to be fragmented and very difficult to follow. Also, some source/announcement lists are not intended for discussion; -responses here are directed to other addresses."))) +responses here are directed to other addresses. + +You may customize the variable `message-use-mail-followup-to', if you +want to get rid of this query permanently."))) (setq recipients (concat ", " mft))) (to-address (setq recipients (concat ", " to-address)) @@ -5871,7 +5874,10 @@ You should normally obey the Followup-To: header. `Followup-To: poster' sends your response via e-mail instead of news. A typical situation where `Followup-To: poster' is used is when the poster -does not read the newsgroup, so he wouldn't see any replies sent to it.")) +does not read the newsgroup, so he wouldn't see any replies sent to it. + +You may customize the variable `message-use-followup-to', if you +want to get rid of this query permanently.")) (progn (setq message-this-is-news nil) (cons 'To (or mrt reply-to from ""))) @@ -5894,7 +5900,10 @@ because discussions that are spread over several newsgroup tend to be fragmented and very difficult to follow. Also, some source/announcement newsgroups are not intended for discussion; -responses here are directed to other newsgroups.")) +responses here are directed to other newsgroups. + +You may customize the variable `message-use-followup-to', if you +want to get rid of this query permanently.")) (cons 'Newsgroups followup-to) (cons 'Newsgroups newsgroups)))))) (posted-to diff --git a/lisp/gnus/nnweb.el b/lisp/gnus/nnweb.el index 063a1c8f376..e5d6568a95c 100644 --- a/lisp/gnus/nnweb.el +++ b/lisp/gnus/nnweb.el @@ -54,11 +54,11 @@ Valid types include `google', `dejanews', and `gmane'.") (defvar nnweb-type-definition '((google (article . ignore) - (id . "http://groups.google.com/groups?selm=%s&output=gplain") + (id . "http://groups.google.de/groups?selm=%s&output=gplain") (reference . identity) (map . nnweb-google-create-mapping) (search . nnweb-google-search) - (address . "http://groups.google.com/groups") + (address . "http://groups.google.de/groups?hl=en") (identifier . nnweb-google-identity)) (dejanews ;; alias of google (article . ignore) |