all messages for Emacs-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
* [gnus] Fetch only new news from last visit
@ 2015-07-02 16:45 Diep Pham
  2015-07-02 17:00 ` Vaidheeswaran C
                   ` (2 more replies)
  0 siblings, 3 replies; 4+ messages in thread
From: Diep Pham @ 2015-07-02 16:45 UTC (permalink / raw)
  To: help-gnu-emacs


I'm trying to use gnus to read news from gmane.org. But it is quite
confusing to use.

I subscribed to a group, when I try to access the group, gnus ask me:
"How many articles do you want to ...". I don't think fetch all news is
good idea so I choose 100. I read all news and close gnus. When I open
gnus and try to access the newsgroup again, gnus still ask me "How many
articles do you want to ...". I enter 100 again and endup fetching older
news than the last time I visit the group. So my question:

* is there a way that can prevent fetching older than last visit?
* is there a way to disable the prompt "How many ariticles ..." and just
  fetch all new news like a normal news reader?





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

* Re: [gnus] Fetch only new news from last visit
  2015-07-02 16:45 [gnus] Fetch only new news from last visit Diep Pham
@ 2015-07-02 17:00 ` Vaidheeswaran C
  2015-07-02 17:06 ` Jorge A. Alfaro-Murillo
  2015-07-03  0:38 ` Emanuel Berg
  2 siblings, 0 replies; 4+ messages in thread
From: Vaidheeswaran C @ 2015-07-02 17:00 UTC (permalink / raw)
  To: help-gnu-emacs


On Thursday 02 July 2015 10:15 PM, Diep Pham wrote:
> 
> I'm trying to use gnus to read news from gmane.org. But it is quite
> confusing to use.
> 
> I subscribed to a group, when I try to access the group, gnus ask me:
> "How many articles do you want to ...". I don't think fetch all news is
> good idea so I choose 100. I read all news and close gnus. When I open
> gnus and try to access the newsgroup again, gnus still ask me "How many
> articles do you want to ...". I enter 100 again and endup fetching older
> news than the last time I visit the group. So my question:
> 
> * is there a way that can prevent fetching older than last visit?
> * is there a way to disable the prompt "How many ariticles ..." and just
>   fetch all new news like a normal news reader?
> 
> 
> 
> 


C runs the command gnus-group-catchup-current-all (found in
gnus-group-mode-map), which is an interactive compiled Lisp function
in 'gnus-group.el'.

It is bound to C, <menu-bar> <Group> <Catch up all articles>.

(gnus-group-catchup-current-all &optional N)

Mark all articles in current newsgroup as read.
Cross references (Xref: header) of articles are ignored.

[back]





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

* Re: [gnus] Fetch only new news from last visit
  2015-07-02 16:45 [gnus] Fetch only new news from last visit Diep Pham
  2015-07-02 17:00 ` Vaidheeswaran C
@ 2015-07-02 17:06 ` Jorge A. Alfaro-Murillo
  2015-07-03  0:38 ` Emanuel Berg
  2 siblings, 0 replies; 4+ messages in thread
From: Jorge A. Alfaro-Murillo @ 2015-07-02 17:06 UTC (permalink / raw)
  To: help-gnu-emacs

Diep Pham writes:

> I'm trying to use gnus to read news from gmane.org. But it is 
> quite confusing to use. 
> 
> I subscribed to a group, when I try to access the group, gnus 
> ask me: "How many articles do you want to ...". I don't think 
> fetch all news is good idea so I choose 100. I read all news and 
> close gnus. When I open gnus and try to access the newsgroup 
> again, gnus still ask me "How many articles do you want to ...". 
> I enter 100 again and endup fetching older news than the last 
> time I visit the group. So my question: 
> 
> * is there a way that can prevent fetching older than last 
> visit?

You can catch up in that group, that is, mark all articles as 
read. Hit C on the group in the group buffer. 
 
> * is there a way to disable the prompt "How many ariticles ..." 
> and just fetch all new news like a normal news reader?

(setq gnus-large-newsgroup nil)

You should be careful with that variable, if you just subscribed 
to a group with a lot of articles, it will take a while to get 
them all. If you encounter that hit C-g, and then C-u followed by 
number of articles that you want and then <enter>. Then you can 
catch up in that group.

Best,
-- 
Jorge.




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

* Re: [gnus] Fetch only new news from last visit
  2015-07-02 16:45 [gnus] Fetch only new news from last visit Diep Pham
  2015-07-02 17:00 ` Vaidheeswaran C
  2015-07-02 17:06 ` Jorge A. Alfaro-Murillo
@ 2015-07-03  0:38 ` Emanuel Berg
  2 siblings, 0 replies; 4+ messages in thread
From: Emanuel Berg @ 2015-07-03  0:38 UTC (permalink / raw)
  To: help-gnu-emacs

Diep Pham <favadi@fastmail.fm> writes:

> I'm trying to use gnus to read news from gmane.org.
> But it is quite confusing to use.
>
> I subscribed to a group, when I try to access the
> group, gnus ask me: "How many articles do you want
> to ...". I don't think fetch all news is good idea
> so I choose 100. I read all news and close gnus.
> When I open gnus and try to access the newsgroup
> again, gnus still ask me "How many articles do you
> want to ...". I enter 100 again and endup fetching
> older news than the last time I visit the group.
> So my question:
>
> * is there a way that can prevent fetching older
> than last visit? * is there a way to disable the
> prompt "How many ariticles ..." and just fetch all
> new news like a normal news reader?

There is a "dribble" file which will record everything
you do in a session. When you exit Gnus, Gnus will
write those changes to a newsrc file, so next time you
start Gnus you won't get the articles you already read
(the file is used to record other things as well).

You can follow this process by seeing how articles are
marked as read ("r") in the summary buffer when you
select them for reading.

When you add a new newsgroup, you can hit `c' for
`gnus-group-catchup-current' if you feel like 
starting with new posts only. What happens is the
exact same thing: "Mark all unread articles in the
current newsgroup as read.", as the help puts it.

Note that Gnus might not quit properly, i.e.
the newsrc file might not be updated, if you just shut
down Emacs, so be sure to exit Gnus the proper way
before you do. If you think this should be
automatized, there are many ways to do that; just ask
if need be.

As for disabling the question how many articles to
fetch, you can increase the value of, or set to nil,
the variable `gnus-large-newsgroup'. However, if you
get on with proper usage with read articles not
reappearing, typically this won't be a factor since
most (all?) newsgroups won't have 200 or more new
articles anyway (200 is the default value for
gnus-large-newsgroup). If you still want it, see the
help for that variable.

Good luck!

-- 
underground experts united
http://user.it.uu.se/~embe8573




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

end of thread, other threads:[~2015-07-03  0:38 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-07-02 16:45 [gnus] Fetch only new news from last visit Diep Pham
2015-07-02 17:00 ` Vaidheeswaran C
2015-07-02 17:06 ` Jorge A. Alfaro-Murillo
2015-07-03  0:38 ` Emanuel Berg

Code repositories for project(s) associated with this external index

	https://git.savannah.gnu.org/cgit/emacs.git
	https://git.savannah.gnu.org/cgit/emacs/org-mode.git

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.