Announcements and discussions for Gnus, the GNU Emacs Usenet newsreader
 help / color / mirror / Atom feed
* Always wide-reply in some newsgroups
@ 2013-05-02 10:57 Tassilo Horn
  2013-05-02 11:55 ` Teemu Likonen
  0 siblings, 1 reply; 5+ messages in thread
From: Tassilo Horn @ 2013-05-02 10:57 UTC (permalink / raw)
  To: info-gnus-english

Hi all,

is there a trick to make Gnus always doing wide replies in some
newsgroups, also if I press `F' / `f'?

The background: I read some bug lists such as

  nntp+Gmane:gmane.emacs.auctex.bugs
  nntp+Gmane:gmane.emacs.bugs

via Gmane.  My muscle memory is wired to `F' for replying to some
article.  However, following-up on an article will make my reply appear
on the bug list, but most probably the reporter of that bug isn't
subscribed to the list and thus won't see my reply.

Bye,
Tassilo

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: Always wide-reply in some newsgroups
  2013-05-02 10:57 Always wide-reply in some newsgroups Tassilo Horn
@ 2013-05-02 11:55 ` Teemu Likonen
  2013-05-02 13:12   ` Tassilo Horn
  0 siblings, 1 reply; 5+ messages in thread
From: Teemu Likonen @ 2013-05-02 11:55 UTC (permalink / raw)
  To: Tassilo Horn; +Cc: info-gnus-english


[-- Attachment #1.1: Type: text/plain, Size: 382 bytes --]

Tassilo Horn [2013-05-02 12:57:39 +02:00] wrote:

> is there a trick to make Gnus always doing wide replies in some
> newsgroups, also if I press `F' / `f'?

Yes. I use the feature in this very mailing list. I read this through
Gmane and have the following setting as part of my gnus-parameters:

    (".*:gmane\\.emacs\\.gnus\\.user$"
     (to-list . "info-gnus-english@gnu.org"))

[-- Attachment #1.2: Type: application/pgp-signature, Size: 835 bytes --]

[-- Attachment #2: Type: text/plain, Size: 162 bytes --]

_______________________________________________
info-gnus-english mailing list
info-gnus-english@gnu.org
https://lists.gnu.org/mailman/listinfo/info-gnus-english

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: Always wide-reply in some newsgroups
  2013-05-02 11:55 ` Teemu Likonen
@ 2013-05-02 13:12   ` Tassilo Horn
  2013-05-02 14:32     ` Leonidas Tsampros
  0 siblings, 1 reply; 5+ messages in thread
From: Tassilo Horn @ 2013-05-02 13:12 UTC (permalink / raw)
  To: info-gnus-english

Teemu Likonen <tlikonen@iki.fi> writes:

Hi Teemu,

>> is there a trick to make Gnus always doing wide replies in some
>> newsgroups, also if I press `F' / `f'?
>
> Yes. I use the feature in this very mailing list. I read this through
> Gmane and have the following setting as part of my gnus-parameters:
>
>     (".*:gmane\\.emacs\\.gnus\\.user$"
>      (to-list . "info-gnus-english@gnu.org"))

Ah, right.  Now I use this:

--8<---------------cut here---------------start------------->8---
(setq gnus-parameters
      `([...]
	;; In Gmane bug list groups, following up should wide reply
	(,(rx (or "gmane.emacs.auctex.bugs"
		  "gmane.emacs.bugs"))
	 (to-list . ""))))
--8<---------------cut here---------------end--------------->8---

Thanks,
Tassilo

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: Always wide-reply in some newsgroups
  2013-05-02 13:12   ` Tassilo Horn
@ 2013-05-02 14:32     ` Leonidas Tsampros
  2013-05-02 14:42       ` Tassilo Horn
  0 siblings, 1 reply; 5+ messages in thread
From: Leonidas Tsampros @ 2013-05-02 14:32 UTC (permalink / raw)
  To: Tassilo Horn; +Cc: info-gnus-english

Tassilo Horn <tsdh@gnu.org> writes:
> Teemu Likonen <tlikonen@iki.fi> writes:
>
> Hi Teemu,
>
>>> is there a trick to make Gnus always doing wide replies in some
>>> newsgroups, also if I press `F' / `f'?
>>
>> Yes. I use the feature in this very mailing list. I read this through
>> Gmane and have the following setting as part of my gnus-parameters:
>>
>>     (".*:gmane\\.emacs\\.gnus\\.user$"
>>      (to-list . "info-gnus-english@gnu.org"))
>
> Ah, right.  Now I use this:
>
> (setq gnus-parameters
>       `([...]
> 	;; In Gmane bug list groups, following up should wide reply
> 	(,(rx (or "gmane.emacs.auctex.bugs"
> 		  "gmane.emacs.bugs"))
> 	 (to-list . ""))))
>
> Thanks,
> Tassilo

I do something similar I think. Whenever I have a group that I know for
sure that mails there are coming from a mailing list, I open a
message and run M-x gnus-mailing-list-insignuate (or press A M).

For example, on cedet-devel, the following group parameter was added:

(to-list . "cedet-devel@lists.sourceforge.net")

Also pressing  a from that group will add the to-list address in the
To: field automatically which I find extremely valuable.

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: Always wide-reply in some newsgroups
  2013-05-02 14:32     ` Leonidas Tsampros
@ 2013-05-02 14:42       ` Tassilo Horn
  0 siblings, 0 replies; 5+ messages in thread
From: Tassilo Horn @ 2013-05-02 14:42 UTC (permalink / raw)
  To: Leonidas Tsampros; +Cc: info-gnus-english

Leonidas Tsampros <ltsampros@upnet.gr> writes:

Hi Leonidas,

>> Ah, right.  Now I use this:
>>
>> (setq gnus-parameters
>>       `([...]
>> 	;; In Gmane bug list groups, following up should wide reply
>> 	(,(rx (or "gmane.emacs.auctex.bugs"
>> 		  "gmane.emacs.bugs"))
>> 	 (to-list . ""))))
>>
>
> I do something similar I think. Whenever I have a group that I know
> for sure that mails there are coming from a mailing list, I open a
> message and run M-x gnus-mailing-list-insignuate (or press A M).

Ah, nice, I didn't know this one.

> For example, on cedet-devel, the following group parameter was added:
>
> (to-list . "cedet-devel@lists.sourceforge.net")

For mailing list groups, I have

  (gnus-add-to-list t)

entries in `gnus-parameters'.  This makes Gnus set a `to-list' parameter
automatically when sending the first mail from that group.

> Also pressing  a from that group will add the to-list address in the
> To: field automatically which I find extremely valuable.

Yes, that's very convenient.  But with the two bug report groups, that's
not important, because you never send messages to the lists directly,
but only thru `M-x report-emacs-bug' or `M-x TeX-submit-bug-report'.
Therefore I use only one single `gnus-parameters' entry above with the
empty string as value for `to-list'.

Bye,
Tassilo

^ permalink raw reply	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2013-05-02 14:42 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2013-05-02 10:57 Always wide-reply in some newsgroups Tassilo Horn
2013-05-02 11:55 ` Teemu Likonen
2013-05-02 13:12   ` Tassilo Horn
2013-05-02 14:32     ` Leonidas Tsampros
2013-05-02 14:42       ` Tassilo Horn

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).