Gnus development mailing list
 help / color / mirror / Atom feed
* Using In-Reply-To field
@ 2001-12-31 23:59 Vincent Bernat
  2002-01-01  0:08 ` Lars Magne Ingebrigtsen
  0 siblings, 1 reply; 8+ messages in thread
From: Vincent Bernat @ 2001-12-31 23:59 UTC (permalink / raw)


Hi (and good year) !

Some news gateway and some mail clients don't use References field. Is
it possible then to use the In-Reply-To field when References is not
available ?



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

* Re: Using In-Reply-To field
  2001-12-31 23:59 Using In-Reply-To field Vincent Bernat
@ 2002-01-01  0:08 ` Lars Magne Ingebrigtsen
  2002-01-01 18:39   ` Vincent Bernat
  0 siblings, 1 reply; 8+ messages in thread
From: Lars Magne Ingebrigtsen @ 2002-01-01  0:08 UTC (permalink / raw)


Vincent Bernat <bernat@scientist.com> writes:

> Some news gateway and some mail clients don't use References field. Is
> it possible then to use the In-Reply-To field when References is not
> available ?

Yes.  Gnus will do this by default.  However, news servers don't
include the In-Reply-To header in the NOV files, so Gnus won't know
about these headers when reading news groups.  Unless you set
`nntp-nov-is-evil'.

-- 
(domestic pets only, the antidote for overdose, milk.)
   larsi@gnus.org * Lars Magne Ingebrigtsen



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

* Re: Using In-Reply-To field
  2002-01-01  0:08 ` Lars Magne Ingebrigtsen
@ 2002-01-01 18:39   ` Vincent Bernat
  2002-01-01 23:46     ` Lars Magne Ingebrigtsen
  0 siblings, 1 reply; 8+ messages in thread
From: Vincent Bernat @ 2002-01-01 18:39 UTC (permalink / raw)


OoO En cette nuit nuageuse du mardi 01 janvier 2002, vers 01:08, Lars
Magne Ingebrigtsen <larsi@gnus.org> disait:

> Yes.  Gnus will do this by default.  However, news servers don't
> include the In-Reply-To header in the NOV files, so Gnus won't know
> about these headers when reading news groups.  Unless you set
> `nntp-nov-is-evil'.

Is it possible to set this just for one groupe (since there is a
drawback in performance) ?
-- 
/*
 * Hash table gook..
 */
	2.4.0-test2 /usr/src/linux/fs/buffer.c



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

* Re: Using In-Reply-To field
  2002-01-01 18:39   ` Vincent Bernat
@ 2002-01-01 23:46     ` Lars Magne Ingebrigtsen
  2002-01-02  0:19       ` Paul Jarc
  0 siblings, 1 reply; 8+ messages in thread
From: Lars Magne Ingebrigtsen @ 2002-01-01 23:46 UTC (permalink / raw)


Vincent Bernat <bernat@scientist.com> writes:

> Is it possible to set this just for one groupe (since there is a
> drawback in performance) ?

I think you should be able to so from `gnus-summary-mode-hook'.

-- 
(domestic pets only, the antidote for overdose, milk.)
   larsi@gnus.org * Lars Magne Ingebrigtsen



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

* Re: Using In-Reply-To field
  2002-01-01 23:46     ` Lars Magne Ingebrigtsen
@ 2002-01-02  0:19       ` Paul Jarc
  2002-01-02  0:27         ` Lars Magne Ingebrigtsen
  0 siblings, 1 reply; 8+ messages in thread
From: Paul Jarc @ 2002-01-02  0:19 UTC (permalink / raw)


Lars Magne Ingebrigtsen <larsi@gnus.org> wrote:
> Vincent Bernat <bernat@scientist.com> writes:
>> Is it possible to set [nnmail-extra-headers] just for one groupe
>> (since there is a drawback in performance) ?
>
> I think you should be able to so from `gnus-summary-mode-hook'.

Maybe a group-local variable would be more appropriate?


paul



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

* Re: Using In-Reply-To field
  2002-01-02  0:19       ` Paul Jarc
@ 2002-01-02  0:27         ` Lars Magne Ingebrigtsen
  2002-01-02 12:37           ` Kai Großjohann
  0 siblings, 1 reply; 8+ messages in thread
From: Lars Magne Ingebrigtsen @ 2002-01-02  0:27 UTC (permalink / raw)


prj@po.cwru.edu (Paul Jarc) writes:

>> I think you should be able to so from `gnus-summary-mode-hook'.
>
> Maybe a group-local variable would be more appropriate?

The problem is that nntp.el looks at `nntp-nov-is-evil' not from the
summary buffer, but from the nntp buffer.  So the global value of the
variable has to be set.

That should be no problem, though.  You can just say

(setq nntp-nov-is-evil
      (string= gnus-newsgroup-name "group.where.nov.is.evil"))

in `gnus-summary-mode-hook'.

-- 
(domestic pets only, the antidote for overdose, milk.)
   larsi@gnus.org * Lars Magne Ingebrigtsen



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

* Re: Using In-Reply-To field
  2002-01-02  0:27         ` Lars Magne Ingebrigtsen
@ 2002-01-02 12:37           ` Kai Großjohann
  2002-01-02 12:47             ` Lars Magne Ingebrigtsen
  0 siblings, 1 reply; 8+ messages in thread
From: Kai Großjohann @ 2002-01-02 12:37 UTC (permalink / raw)


Lars Magne Ingebrigtsen <larsi@gnus.org> writes:

> prj@po.cwru.edu (Paul Jarc) writes:
>
>>> I think you should be able to so from `gnus-summary-mode-hook'.
>>
>> Maybe a group-local variable would be more appropriate?
>
> The problem is that nntp.el looks at `nntp-nov-is-evil' not from the
> summary buffer, but from the nntp buffer.  So the global value of the
> variable has to be set.

Does it work to add nntp-nov-is-evil to gnus-newsgroup-variables?

kai
-- 
Simplification good!  Oversimplification bad!  (Larry Wall)



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

* Re: Using In-Reply-To field
  2002-01-02 12:37           ` Kai Großjohann
@ 2002-01-02 12:47             ` Lars Magne Ingebrigtsen
  0 siblings, 0 replies; 8+ messages in thread
From: Lars Magne Ingebrigtsen @ 2002-01-02 12:47 UTC (permalink / raw)


Kai.Grossjohann@CS.Uni-Dortmund.DE (Kai Großjohann) writes:

> Does it work to add nntp-nov-is-evil to gnus-newsgroup-variables?

Oh, I didn't know about that one.  Yes, it looks like that would do
the trick.

-- 
(domestic pets only, the antidote for overdose, milk.)
   larsi@gnus.org * Lars Magne Ingebrigtsen



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

end of thread, other threads:[~2002-01-02 12:47 UTC | newest]

Thread overview: 8+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2001-12-31 23:59 Using In-Reply-To field Vincent Bernat
2002-01-01  0:08 ` Lars Magne Ingebrigtsen
2002-01-01 18:39   ` Vincent Bernat
2002-01-01 23:46     ` Lars Magne Ingebrigtsen
2002-01-02  0:19       ` Paul Jarc
2002-01-02  0:27         ` Lars Magne Ingebrigtsen
2002-01-02 12:37           ` Kai Großjohann
2002-01-02 12:47             ` Lars Magne Ingebrigtsen

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).