I have got those settings in my gnus.el
; news in gnus
(setq gnus-third-select-methods '(nntp "news.eternal-september.org"
(nntp-port-number 119)))
I checked the gnus manual,
and I found this:
nntp-connection-timeout
but I didn´t know where to put it and how.
In my case it refers mainly to several RSS-feeds.
I don´t know if this mentioned settings refer to the rss-feeds.
If yes
how can I add
"nntp-connection-timeout in 30 seconds"
that to the following settings?
; news in gnus
(setq gnus-third-select-methods '(nntp "news.eternal-september.org"
(nntp-port-number 119)))
thanks
Gottfried
Am 14.01.26 um 15:52 schrieb Arash Esbati:
Gfp <[email protected]> writes:
I don´t want to wait and wait for downloading gnus new articles.
How can I set the
nntp-connection-timeout
in gnus to 30 Seconds?
I don´t have in gnus.el the line:
nntp-connection-timeout
I have to add it, I guess.
But what exactly do I have to add?
Did you have a look at the manual, node Select Methods? There are
examples where you can conclude that something like this should do the
job:
(setq gnus-select-method
'(nntp "localhost" ; or whatever you use
(nntp-connection-timeout nil)))
Same applies to `gnus-secondary-select-methods'.
Best, Arash